HomeSort by relevance Sort by last modified time
    Searched refs:stoul (Results 1 - 19 of 19) sorted by null

  /external/libcxx/test/std/strings/string.conversions/
stoul.pass.cpp 16 // unsigned long stoul(const string& str, size_t *idx = 0, int base = 10);
17 // unsigned long stoul(const wstring& str, size_t *idx = 0, int base = 10);
26 assert(std::stoul("0") == 0);
27 assert(std::stoul(L"0") == 0);
28 assert(std::stoul("-0") == 0);
29 assert(std::stoul(L"-0") == 0);
30 assert(std::stoul(" 10") == 10);
31 assert(std::stoul(L" 10") == 10);
33 assert(std::stoul("10g", &idx, 16) == 16);
36 assert(std::stoul(L"10g", &idx, 16) == 16)
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/strings/string.conversions/
stoul.pass.cpp 16 // unsigned long stoul(const string& str, size_t *idx = 0, int base = 10);
17 // unsigned long stoul(const wstring& str, size_t *idx = 0, int base = 10);
26 assert(std::stoul("0") == 0);
27 assert(std::stoul(L"0") == 0);
28 assert(std::stoul("-0") == 0);
29 assert(std::stoul(L"-0") == 0);
30 assert(std::stoul(" 10") == 10);
31 assert(std::stoul(L" 10") == 10);
33 assert(std::stoul("10g", &idx, 16) == 16);
36 assert(std::stoul(L"10g", &idx, 16) == 16)
    [all...]
  /external/swiftshader/third_party/subzero/src/
IceRangeSpec.cpp 44 /// Behavior is undefined if "X" or "Y" is not a proper number (since std::stoul
53 *First = std::stoul(Tokens[0]);
56 *First = Tokens[0].empty() ? 0 : std::stoul(Tokens[0]);
57 *Last = Tokens[1].empty() ? RangeSpec::RangeMax : std::stoul(Tokens[1]);
  /system/keymaster/android_keymaster/
keymaster_configuration.cpp 59 return std::stoul(s);
  /hardware/google/easel/amber/camera/libhdrplusclient/
HdrPlusClientUtils.cpp 144 uint32_t width = std::stoul(s);
147 uint32_t height = std::stoul(s);
  /test/vts-testcase/fuzz/iface_fuzzer/
ProtoFuzzerRunner.cpp 55 std::stoul(hal_version.substr(0, hal_version.find(".")));
57 std::stoul(hal_version.substr(hal_version.find(".") + 1));
ProtoFuzzerUtils.cpp 137 params.exec_size_ = std::stoul(optarg);
  /external/libcxx/src/
string.cpp 274 stoul(const string& str, size_t* idx, int base) function
276 return as_integer<unsigned long>( "stoul", str, idx, base );
280 stoul(const wstring& str, size_t* idx, int base) function
282 return as_integer<unsigned long>( "stoul", str, idx, base );
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/src/
string.cpp 277 stoul(const string& str, size_t* idx, int base) function
279 return as_integer<unsigned long>( "stoul", str, idx, base );
283 stoul(const wstring& str, size_t* idx, int base) function
285 return as_integer<unsigned long>( "stoul", str, idx, base );
  /external/google-benchmark/src/
sysinfo.cc 201 CPUMask Mask(std::stoul(Part, nullptr, 16));
  /external/libcxx/utils/google-benchmark/src/
sysinfo.cc 201 CPUMask Mask(std::stoul(Part, nullptr, 16));
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/tests/
loader_validation_tests.cpp 487 uint32_t count = std::stoul(arguments[2]);
584 uint32_t count = std::stoul(arguments[2]);
  /external/llvm/lib/Fuzzer/
FuzzerDriver.cpp 150 unsigned int Val = std::stoul(Str);
  /external/vulkan-validation-layers/tests/
loader_validation_tests.cpp 800 uint32_t count = std::stoul(arguments[2]);
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/bits/
basic_string.h 2833 stoul(const string& __str, size_t* __idx = 0, int __base = 10) function
2936 stoul(const wstring& __str, size_t* __idx = 0, int __base = 10) function
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/
vstring.h 2594 stoul(const __vstring& __str, std::size_t* __idx = 0, int __base = 10) function
2696 stoul(const __wvstring& __str, std::size_t* __idx = 0, int __base = 10) function
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/
basic_string.h 2833 stoul(const string& __str, size_t* __idx = 0, int __base = 10) function
2936 stoul(const wstring& __str, size_t* __idx = 0, int __base = 10) function
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/
vstring.h 2594 stoul(const __vstring& __str, std::size_t* __idx = 0, int __base = 10) function
2696 stoul(const __wvstring& __str, std::size_t* __idx = 0, int __base = 10) function
    [all...]
  /external/libbrillo/brillo/http/
http_utils_unittest.cc 308 std::stoul(request.GetHeader(request_header::kContentLength)));

Completed in 1717 milliseconds