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

  /system/core/base/include/android-base/
parseint.h 34 bool ParseUint(const char* s, T* out,
52 bool ParseUint(const std::string& s, T* out,
54 return ParseUint(s.c_str(), out, 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.
50 func ParseUint(s string, base int, bitSize int) (uint64, error) {
51 const fnParseUint = "ParseUint"
176 un, err = ParseUint(s, base, bitSize)
  /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.
50 func ParseUint(s string, base int, bitSize int) (uint64, error) {
51 const fnParseUint = "ParseUint"
176 un, err = ParseUint(s, base, bitSize)
  /art/libartbase/base/
utils.h 37 bool ParseUint(const char *in, T* out) {

Completed in 117 milliseconds