Searched refs:stol (Results 1 – 8 of 8) sorted by relevance
/external/libcxx/test/std/strings/string.conversions/ |
D | stol.pass.cpp | 25 assert(std::stol("0") == 0); in main() 26 assert(std::stol(L"0") == 0); in main() 27 assert(std::stol("-0") == 0); in main() 28 assert(std::stol(L"-0") == 0); in main() 29 assert(std::stol("-10") == -10); in main() 30 assert(std::stol(L"-10") == -10); in main() 31 assert(std::stol(" 10") == 10); in main() 32 assert(std::stol(L" 10") == 10); in main() 34 assert(std::stol("10g", &idx, 16) == 16); in main() 37 assert(std::stol(L"10g", &idx, 16) == 16); in main() [all …]
|
/external/skia/src/sksl/ |
D | SkSLUtil.cpp | 74 long stol(SkString s) { in stol() function
|
D | SkSLUtil.h | 135 long stol(SkString s);
|
D | SkSLParser.cpp | 1658 *dest = SkSL::stol(t.fText); in intLiteral()
|
/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 | 1595 dnam{"stol."} 1596 few{"{0} stol."} 1597 one{"{0} stol."} 1598 other{"{0} stol."} 1599 two{"{0} stol."}
|
D | cs.txt | 2215 dnam{"stol."} 2216 few{"{0} stol."} 2217 many{"{0} stol."} 2218 one{"{0} stol."} 2219 other{"{0} stol."}
|
/external/libcxx/include/ |
D | string | 416 long stol (const string& str, size_t* idx = 0, int base = 10); 436 long stol (const wstring& str, size_t* idx = 0, int base = 10); 3871 _LIBCPP_FUNC_VIS long stol (const string& __str, size_t* __idx = 0, int __base = 10); 3891 _LIBCPP_FUNC_VIS long stol (const wstring& __str, size_t* __idx = 0, int __base = 10…
|