Searched refs:ParseInt (Results 1 – 6 of 6) sorted by relevance
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/stubs/ |
D | time.cc | 147 const char* ParseInt(const char* data, int width, int min_value, in ParseInt() function 196 if ((data = ParseInt(data, 2, 0, 23, &hour)) == NULL) { in ParseTimezoneOffset() 203 if ((data = ParseInt(data, 2, 0, 59, &minute)) == NULL) { in ParseTimezoneOffset() 293 if ((data = ParseInt(data, 4, 1, 9999, &time.year)) == NULL) { in ParseTime() 299 if ((data = ParseInt(data, 2, 1, 12, &time.month)) == NULL) { in ParseTime() 305 if ((data = ParseInt(data, 2, 1, 31, &time.day)) == NULL) { in ParseTime() 311 if ((data = ParseInt(data, 2, 0, 23, &time.hour)) == NULL) { in ParseTime() 317 if ((data = ParseInt(data, 2, 0, 59, &time.minute)) == NULL) { in ParseTime() 323 if ((data = ParseInt(data, 2, 0, 59, &time.second)) == NULL) { in ParseTime()
|
/frameworks/base/tools/aapt2/ |
D | ResourceUtils.h | 96 Maybe<uint32_t> ParseInt(const android::StringPiece& str);
|
D | ResourceUtils.cpp | 502 Maybe<uint32_t> ParseInt(const StringPiece& str) { in ParseInt() function
|
/frameworks/base/tools/aapt2/cmd/ |
D | Link.cpp | 924 Maybe<uint32_t> maybe_code = ResourceUtils::ParseInt(version_code_attr->value); in ExtractAppInfoFromManifest() 935 Maybe<uint32_t> maybe_code = ResourceUtils::ParseInt(version_code_major_attr->value); in ExtractAppInfoFromManifest() 947 Maybe<uint32_t> maybe_code = ResourceUtils::ParseInt(revision_code_attr->value); in ExtractAppInfoFromManifest() 2126 const Maybe<uint32_t> maybe_package_id_int = ResourceUtils::ParseInt(package_id_.value()); in Action()
|
D | Util.cpp | 286 Maybe<uint32_t> integer = ResourceUtils::ParseInt(attr.value); in ExtractCompiledInt()
|
/frameworks/native/cmds/lshal/ |
D | ListCommand.cpp | 254 if (!::android::base::ParseInt(pidStr, &pid)) { in getPidInfo()
|