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)
41 // ParseUint is like ParseInt but for unsigned numbers.
140 // ParseInt interprets a string s in the given base (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"
200 // Atoi returns the result of ParseInt(s, 10, 0) converted to type int.
203 i64, err := ParseInt(s, 10, 0)
  /prebuilts/go/linux-x86/src/strconv/
atoi.go 17 Func string // the failing function (ParseBool, ParseInt, ParseUint, ParseFloat)
41 // ParseUint is like ParseInt but for unsigned numbers.
140 // ParseInt interprets a string s in the given base (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"
200 // Atoi returns the result of ParseInt(s, 10, 0) converted to type int.
203 i64, err := ParseInt(s, 10, 0)
  /art/runtime/
utils.h 54 bool ParseInt(const char* in, T* out) {
233 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 459 Maybe<uint32_t> ParseInt(const StringPiece& str) {
  /system/update_engine/
omaha_request_action.cc 698 off_t ParseInt(const string& str) {
    [all...]
  /external/v8/src/debug/
debug.js 23 var ParseInt = global.parseInt;
    [all...]

Completed in 183 milliseconds