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

  /external/libcxx/test/std/strings/string.conversions/
stoll.pass.cpp 16 // long long stoll(const string& str, size_t *idx = 0, int base = 10);
17 // long long stoll(const wstring& str, size_t *idx = 0, int base = 10);
27 assert(std::stoll("0") == 0);
28 assert(std::stoll(L"0") == 0);
29 assert(std::stoll("-0") == 0);
30 assert(std::stoll(L"-0") == 0);
31 assert(std::stoll("-10") == -10);
32 assert(std::stoll(L"-10") == -10);
33 assert(std::stoll(" 10") == 10);
34 assert(std::stoll(L" 10") == 10)
    [all...]
  /external/libcxx/src/
string.cpp 286 stoll(const string& str, size_t* idx, int base) function
288 return as_integer<long long>( "stoll", str, idx, base );
292 stoll(const wstring& str, size_t* idx, int base) function
294 return as_integer<long long>( "stoll", str, idx, base );
  /device/google/contexthub/util/nanotool/
nanotool.cpp 280 long long latency_ms = std::stoll(param);

Completed in 157 milliseconds