Searched refs:stol (Results 1 – 6 of 6) sorted by relevance
/external/libcxx/test/std/strings/string.conversions/ |
D | stol.pass.cpp | 23 assert(std::stol("0") == 0); in main() 24 assert(std::stol(L"0") == 0); in main() 25 assert(std::stol("-0") == 0); in main() 26 assert(std::stol(L"-0") == 0); in main() 27 assert(std::stol("-10") == -10); in main() 28 assert(std::stol(L"-10") == -10); in main() 29 assert(std::stol(" 10") == 10); in main() 30 assert(std::stol(L" 10") == 10); in main() 32 assert(std::stol("10g", &idx, 16) == 16); in main() 35 assert(std::stol(L"10g", &idx, 16) == 16); in main() [all …]
|
/external/libcxx/src/ |
D | string.cpp | 268 stol(const string& str, size_t* idx, int base) in stol() function 274 stol(const wstring& str, size_t* idx, int base) in stol() function
|
/external/icu/icu4c/source/data/unit/ |
D | sl.txt | 1524 dnam{"stol."} 1525 few{"{0} stol."} 1526 one{"{0} stol."} 1527 other{"{0} stol."} 1528 two{"{0} stol."}
|
D | cs.txt | 2144 dnam{"stol."} 2145 few{"{0} stol."} 2146 many{"{0} stol."} 2147 one{"{0} stol."} 2148 other{"{0} stol."}
|
/external/llvm/lib/Fuzzer/ |
D | FuzzerDriver.cpp | 111 int Val = std::stol(Str); in ParseOneFlag()
|
/external/libcxx/include/ |
D | string | 381 long stol (const string& str, size_t* idx = 0, int base = 10); 401 long stol (const wstring& str, size_t* idx = 0, int base = 10); 4090 _LIBCPP_FUNC_VIS long stol (const string& __str, size_t* __idx = 0, int __base = 10); 4110 _LIBCPP_FUNC_VIS long stol (const wstring& __str, size_t* __idx = 0, int __base = 10…
|