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

  /external/libcxx/test/std/strings/string.conversions/
stoll.pass.cpp 15 // long long stoll(const string& str, size_t *idx = 0, int base = 10);
16 // long long stoll(const wstring& str, size_t *idx = 0, int base = 10);
23 assert(std::stoll("0") == 0);
24 assert(std::stoll(L"0") == 0);
25 assert(std::stoll("-0") == 0);
26 assert(std::stoll(L"-0") == 0);
27 assert(std::stoll("-10") == -10);
28 assert(std::stoll(L"-10") == -10);
29 assert(std::stoll(" 10") == 10);
30 assert(std::stoll(L" 10") == 10)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/string.conversions/
stoll.pass.cpp 15 // long long stoll(const string& str, size_t *idx = 0, int base = 10);
16 // long long stoll(const wstring& str, size_t *idx = 0, int base = 10);
23 assert(std::stoll("0") == 0);
24 assert(std::stoll(L"0") == 0);
25 assert(std::stoll("-0") == 0);
26 assert(std::stoll(L"-0") == 0);
27 assert(std::stoll("-10") == -10);
28 assert(std::stoll(L"-10") == -10);
29 assert(std::stoll(" 10") == 10);
30 assert(std::stoll(L" 10") == 10)
    [all...]
  /system/extras/tests/kernel.config/
aslr_test.cpp 119 uint64_t addr = min_addr = max_addr = std::stoll(scrape_addr(exec_name, lib_match), 0, 16);
125 addr = std::stoll(addr_str, 0, 16);
  /external/libcxx/src/
string.cpp 292 stoll(const string& str, size_t* idx, int base) function
294 return as_integer<long long>( "stoll", str, idx, base );
298 stoll(const wstring& str, size_t* idx, int base) function
300 return as_integer<long long>( "stoll", str, idx, base );
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/src/
string.cpp 291 stoll(const string& str, size_t* idx, int base) function
293 return as_integer<long long>( "stoll", str, idx, base );
297 stoll(const wstring& str, size_t* idx, int base) function
299 return as_integer<long long>( "stoll", str, idx, base );
  /device/google/contexthub/util/nanotool/
nanotool.cpp 269 long long latency_ms = std::stoll(param);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/bits/
basic_string.h 2838 stoll(const string& __str, size_t* __idx = 0, int __base = 10) function
2941 stoll(const wstring& __str, size_t* __idx = 0, int __base = 10) function
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/
vstring.h 2599 stoll(const __vstring& __str, std::size_t* __idx = 0, int __base = 10) function
2701 stoll(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/bits/
basic_string.h 2838 stoll(const string& __str, size_t* __idx = 0, int __base = 10) function
2941 stoll(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/ext/
vstring.h 2599 stoll(const __vstring& __str, std::size_t* __idx = 0, int __base = 10) function
2701 stoll(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/bits/
basic_string.h 2838 stoll(const string& __str, size_t* __idx = 0, int __base = 10) function
2941 stoll(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/ext/
vstring.h 2599 stoll(const __vstring& __str, std::size_t* __idx = 0, int __base = 10) function
2701 stoll(const __wvstring& __str, std::size_t* __idx = 0, int __base = 10) function
    [all...]
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/
basic_string.h 2873 stoll(const string& __str, size_t* __idx = 0, int __base = 10) function
2976 stoll(const wstring& __str, size_t* __idx = 0, int __base = 10) function
    [all...]
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/
vstring.h 2739 stoll(const __vstring& __str, std::size_t* __idx = 0, int __base = 10) function
2841 stoll(const __wvstring& __str, std::size_t* __idx = 0, int __base = 10) function
    [all...]
  /ndk/tests/device/test-libc++-shared-full/jni/
Android.mk     [all...]
  /ndk/tests/device/test-libc++-static-full/jni/
Android.mk     [all...]

Completed in 283 milliseconds