/external/libcxx/test/std/strings/string.conversions/ |
stoul.pass.cpp | 15 // unsigned long stoul(const string& str, size_t *idx = 0, int base = 10); 16 // unsigned long stoul(const wstring& str, size_t *idx = 0, int base = 10); 23 assert(std::stoul("0") == 0); 24 assert(std::stoul(L"0") == 0); 25 assert(std::stoul("-0") == 0); 26 assert(std::stoul(L"-0") == 0); 27 assert(std::stoul(" 10") == 10); 28 assert(std::stoul(L" 10") == 10); 30 assert(std::stoul("10g", &idx, 16) == 16); 33 assert(std::stoul(L"10g", &idx, 16) == 16) [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/string.conversions/ |
stoul.pass.cpp | 15 // unsigned long stoul(const string& str, size_t *idx = 0, int base = 10); 16 // unsigned long stoul(const wstring& str, size_t *idx = 0, int base = 10); 23 assert(std::stoul("0") == 0); 24 assert(std::stoul(L"0") == 0); 25 assert(std::stoul("-0") == 0); 26 assert(std::stoul(L"-0") == 0); 27 assert(std::stoul(" 10") == 10); 28 assert(std::stoul(L" 10") == 10); 30 assert(std::stoul("10g", &idx, 16) == 16); 33 assert(std::stoul(L"10g", &idx, 16) == 16) [all...] |
/external/libcxx/src/ |
string.cpp | 280 stoul(const string& str, size_t* idx, int base) function 282 return as_integer<unsigned long>( "stoul", str, idx, base ); 286 stoul(const wstring& str, size_t* idx, int base) function 288 return as_integer<unsigned long>( "stoul", str, idx, base );
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/ |
string.cpp | 279 stoul(const string& str, size_t* idx, int base) function 281 return as_integer<unsigned long>( "stoul", str, idx, base ); 285 stoul(const wstring& str, size_t* idx, int base) function 287 return as_integer<unsigned long>( "stoul", str, idx, base );
|
/packages/services/Car/vehicle_network_service/ |
VehiclePropertyAccessControl.cpp | 169 property_value = std::stoul(tmp_str, nullptr, 16); 171 property_value = std::stoul(tmp_str, nullptr, 10); 206 uid_value = std::stoul(tmp_str, nullptr, 16); 208 uid_value = std::stoul(tmp_str, nullptr, 10);
|
/system/keymaster/ |
keymaster_configuration.cpp | 59 return std::stoul(s);
|
/external/llvm/lib/Fuzzer/ |
FuzzerDriver.cpp | 117 unsigned int Val = std::stoul(Str);
|
/system/core/init/ |
service.cpp | 198 ioprio_pri_ = std::stoul(args[2], 0, 8); 254 int perm = std::stoul(args[3], 0, 8);
|
builtins.cpp | 306 mode = std::stoul(args[2], 0, 8);
|
/art/runtime/ |
oat_file_manager.cc | 403 dex_checksum != std::stoul(shared_libraries_split[index + 1])) {
|
/external/libbrillo/brillo/http/ |
http_utils_unittest.cc | 307 std::stoul(request.GetHeader(request_header::kContentLength)));
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-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-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/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/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/ |
vstring.h | 2734 stoul(const __vstring& __str, std::size_t* __idx = 0, int __base = 10) function 2836 stoul(const __wvstring& __str, std::size_t* __idx = 0, int __base = 10) function [all...] |
/external/libcxx/include/ |
string | 382 unsigned long stoul (const string& str, size_t* idx = 0, int base = 10); 402 unsigned long stoul (const wstring& str, size_t* idx = 0, int base = 10); [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ |
string | 382 unsigned long stoul (const string& str, size_t* idx = 0, int base = 10); 402 unsigned long stoul (const wstring& str, size_t* idx = 0, int base = 10); [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-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/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/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/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/ |
basic_string.h | 2868 stoul(const string& __str, size_t* __idx = 0, int __base = 10) function 2971 stoul(const wstring& __str, size_t* __idx = 0, int __base = 10) function [all...] |
/prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/libcxx/include/ |
string | 382 unsigned long stoul (const string& str, size_t* idx = 0, int base = 10); 402 unsigned long stoul (const wstring& str, size_t* idx = 0, int base = 10); [all...] |
/prebuilts/sdk/tools/linux/lib/ |
libc++.so | |
/prebuilts/clang/host/linux-x86/3.8/lib/ |
libc++.so | |
/prebuilts/clang/linux-x86/host/3.6/lib/ |
libc++.so | |