HomeSort by relevance Sort by last modified time
    Searched defs:ParseInt (Results 1 - 8 of 8) sorted by null

  /system/core/base/include/android-base/
parseint.h 62 bool ParseInt(const char* s, T* out,
81 bool ParseInt(const std::string& s, T* out,
84 return ParseInt(s.c_str(), out, min, max);
  /prebuilts/go/darwin-x86/src/strconv/
atoi.go 17 Func string // the failing function (ParseBool, ParseInt, ParseUint, ParseFloat)
49 // ParseUint is like ParseInt but for unsigned numbers.
137 // ParseInt interprets a string s in the given base (0, 2 to 36) and
149 // The errors that ParseInt returns have concrete type *NumError
156 func ParseInt(s string, base int, bitSize int) (i int64, err error) {
157 const fnParseInt = "ParseInt"
201 // Atoi returns the result of ParseInt(s, 10, 0) converted to type int.
232 i64, err := ParseInt(s, 10, 0)
  /prebuilts/go/linux-x86/src/strconv/
atoi.go 17 Func string // the failing function (ParseBool, ParseInt, ParseUint, ParseFloat)
49 // ParseUint is like ParseInt but for unsigned numbers.
137 // ParseInt interprets a string s in the given base (0, 2 to 36) and
149 // The errors that ParseInt returns have concrete type *NumError
156 func ParseInt(s string, base int, bitSize int) (i int64, err error) {
157 const fnParseInt = "ParseInt"
201 // Atoi returns the result of ParseInt(s, 10, 0) converted to type int.
232 i64, err := ParseInt(s, 10, 0)
  /art/libartbase/base/
utils.h 51 bool ParseInt(const char* in, T* out) {
133 if (!ParseInt(value_string, &parsed_integer_value)) {
  /external/protobuf/src/google/protobuf/stubs/
time.cc 147 const char* ParseInt(const char* data, int width, int min_value,
196 if ((data = ParseInt(data, 2, 0, 23, &hour)) == NULL) {
203 if ((data = ParseInt(data, 2, 0, 59, &minute)) == NULL) {
293 if ((data = ParseInt(data, 4, 1, 9999, &time.year)) == NULL) {
299 if ((data = ParseInt(data, 2, 1, 12, &time.month)) == NULL) {
305 if ((data = ParseInt(data, 2, 1, 31, &time.day)) == NULL) {
311 if ((data = ParseInt(data, 2, 0, 23, &time.hour)) == NULL) {
317 if ((data = ParseInt(data, 2, 0, 59, &time.minute)) == NULL) {
323 if ((data = ParseInt(data, 2, 0, 59, &time.second)) == NULL) {
  /frameworks/base/tools/aapt2/
ResourceUtils.cpp 464 Maybe<uint32_t> ParseInt(const StringPiece& str) {
  /external/brotli/c/tools/
brotli.c 119 static BROTLI_BOOL ParseInt(const char* s, int low, int high, int* result) {
277 quality_set = ParseInt(argv[i], BROTLI_MIN_QUALITY,
282 lgwin_set = ParseInt(argv[i], 0,
344 lgwin_set = ParseInt(value, 0,
355 quality_set = ParseInt(value, BROTLI_MIN_QUALITY,
  /system/update_engine/
omaha_request_action.cc 799 off_t ParseInt(const string& str) {
    [all...]

Completed in 1980 milliseconds