Searched refs:stol (Results 1 – 11 of 11) sorted by relevance
/external/libcxx/test/std/strings/string.conversions/ |
D | stol.pass.cpp | 26 assert(std::stol("0") == 0); in main() 27 assert(std::stol(L"0") == 0); in main() 28 assert(std::stol("-0") == 0); in main() 29 assert(std::stol(L"-0") == 0); in main() 30 assert(std::stol("-10") == -10); in main() 31 assert(std::stol(L"-10") == -10); in main() 32 assert(std::stol(" 10") == 10); in main() 33 assert(std::stol(L" 10") == 10); in main() 35 assert(std::stol("10g", &idx, 16) == 16); in main() 38 assert(std::stol(L"10g", &idx, 16) == 16); in main() [all …]
|
/external/skqp/src/sksl/ |
D | SkSLString.h | 127 long stol(const String& s);
|
D | SkSLString.cpp | 242 long stol(const String& s) { in stol() function
|
D | SkSLParser.cpp | 1871 *dest = SkSL::stol(this->text(t)); in intLiteral()
|
/external/skia/src/sksl/ |
D | SkSLString.h | 127 long stol(const String& s);
|
D | SkSLString.cpp | 243 long stol(const String& s) { in stol() function
|
D | SkSLParser.cpp | 1870 *dest = SkSL::stol(this->text(t)); in intLiteral()
|
/external/libcxx/src/ |
D | string.cpp | 262 stol(const string& str, size_t* idx, int base) in stol() function 268 stol(const wstring& str, size_t* idx, int base) in stol() function
|
/external/icu/icu4c/source/data/unit/ |
D | cs.txt | 1291 dnam{"stol."} 1292 few{"{0} stol."} 1293 many{"{0} stol."} 1294 one{"{0} stol."} 1295 other{"{0} stol."} 2304 dnam{"stol."} 2305 few{"{0} stol."} 2306 many{"{0} stol."} 2307 one{"{0} stol."} 2308 other{"{0} stol."}
|
D | sl.txt | 1836 dnam{"stol."} 1837 few{"{0} stol."} 1838 one{"{0} stol."} 1839 other{"{0} stol."} 1840 two{"{0} stol."}
|
/external/libcxx/include/ |
D | string | 423 long stol (const string& str, size_t* idx = 0, int base = 10); 443 long stol (const wstring& str, size_t* idx = 0, int base = 10); 3908 _LIBCPP_FUNC_VIS long stol (const string& __str, size_t* __idx = 0, int __base = 10); 3928 _LIBCPP_FUNC_VIS long stol (const wstring& __str, size_t* __idx = 0, int __base = 10…
|