CBMC
|
Statement List Language Conversion. More...
#include <util/std_expr.h>
Go to the source code of this file.
Functions | |
constant_exprt | convert_int_dec_literal (const std::string &src) |
Converts a string into the corresponding 'Int' or 'DInt' expression. More... | |
constant_exprt | convert_int_dec_literal_value (const std::string &src) |
Converts a string into the corresponding 'Int' expression. More... | |
constant_exprt | convert_int_hex_literal (const std::string &src) |
Converts a string into the corresponding 'Int' or 'DInt' expression. More... | |
constant_exprt | convert_int_hex_literal_value (const std::string &src) |
Converts a string into the corresponding 'Int' expression. More... | |
constant_exprt | convert_int_bit_literal (const std::string &src) |
Converts a string into the corresponding 'Int' or 'DInt' expression. More... | |
constant_exprt | convert_int_bit_literal_value (const std::string &src) |
Converts a string into the corresponding 'Int' expression. More... | |
Statement List Language Conversion.
Definition in file convert_int_literal.h.
constant_exprt convert_int_bit_literal | ( | const std::string & | src | ) |
Converts a string into the corresponding 'Int' or 'DInt' expression.
src | String returned by the parser (base 2). |
Definition at line 115 of file convert_int_literal.cpp.
constant_exprt convert_int_bit_literal_value | ( | const std::string & | src | ) |
Converts a string into the corresponding 'Int' expression.
src | String returned by the parser (base 2). |
Definition at line 132 of file convert_int_literal.cpp.
constant_exprt convert_int_dec_literal | ( | const std::string & | src | ) |
Converts a string into the corresponding 'Int' or 'DInt' expression.
src | String returned by the parser (base 10). |
Definition at line 47 of file convert_int_literal.cpp.
constant_exprt convert_int_dec_literal_value | ( | const std::string & | src | ) |
Converts a string into the corresponding 'Int' expression.
src | String returned by the parser (base 10). |
Definition at line 64 of file convert_int_literal.cpp.
constant_exprt convert_int_hex_literal | ( | const std::string & | src | ) |
Converts a string into the corresponding 'Int' or 'DInt' expression.
src | String returned by the parser (base 16). |
Definition at line 81 of file convert_int_literal.cpp.
constant_exprt convert_int_hex_literal_value | ( | const std::string & | src | ) |
Converts a string into the corresponding 'Int' expression.
src | String returned by the parser (base 16). |
Definition at line 98 of file convert_int_literal.cpp.