HomeSort by relevance Sort by last modified time
    Searched refs:stoul (Results 1 - 25 of 33) sorted by null

1 2

  /external/libcxx/test/strings/string.conversions/
stoul.pass.cpp 15 // unsigned long stoul(const string& str, size_t *idx = 0, int base = 10);
16 // unsigned long stoul(const wstring& str, size_t *idx = 0, int base = 10);
23 assert(std::stoul("0") == 0);
24 assert(std::stoul(L"0") == 0);
25 assert(std::stoul("-0") == 0);
26 assert(std::stoul(L"-0") == 0);
27 assert(std::stoul(" 10") == 10);
28 assert(std::stoul(L" 10") == 10);
30 assert(std::stoul("10g", &idx, 16) == 16);
33 assert(std::stoul(L"10g", &idx, 16) == 16)
    [all...]
Android.mk 31 test_name := strings/string.conversions/stoul
32 test_src := stoul.pass.cpp
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/string.conversions/
stoul.pass.cpp 15 // unsigned long stoul(const string& str, size_t *idx = 0, int base = 10);
16 // unsigned long stoul(const wstring& str, size_t *idx = 0, int base = 10);
23 assert(std::stoul("0") == 0);
24 assert(std::stoul(L"0") == 0);
25 assert(std::stoul("-0") == 0);
26 assert(std::stoul(L"-0") == 0);
27 assert(std::stoul(" 10") == 10);
28 assert(std::stoul(L" 10") == 10);
30 assert(std::stoul("10g", &idx, 16) == 16);
33 assert(std::stoul(L"10g", &idx, 16) == 16)
    [all...]
  /external/libcxx/src/
string.cpp 279 stoul(const string& str, size_t* idx, int base) function
281 return as_integer<unsigned long>( "stoul", str, idx, base );
285 stoul(const wstring& str, size_t* idx, int base) function
287 return as_integer<unsigned long>( "stoul", str, idx, base );
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/src/
string.cpp 279 stoul(const string& str, size_t* idx, int base) function
281 return as_integer<unsigned long>( "stoul", str, idx, base );
285 stoul(const wstring& str, size_t* idx, int base) function
287 return as_integer<unsigned long>( "stoul", str, idx, base );
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/x86_64-linux/include/c++/4.6/bits/
basic_string.h 2774 stoul(const string& __str, size_t* __idx = 0, int __base = 10) function
2877 stoul(const wstring& __str, size_t* __idx = 0, int __base = 10) function
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/x86_64-linux/include/c++/4.6/ext/
vstring.h 2551 stoul(const __vstring& __str, std::size_t* __idx = 0, int __base = 10) function
2653 stoul(const __wvstring& __str, std::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/bits/
basic_string.h 2833 stoul(const string& __str, size_t* __idx = 0, int __base = 10) function
2936 stoul(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 2594 stoul(const __vstring& __str, std::size_t* __idx = 0, int __base = 10) function
2696 stoul(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 2833 stoul(const string& __str, size_t* __idx = 0, int __base = 10) function
2936 stoul(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 2594 stoul(const __vstring& __str, std::size_t* __idx = 0, int __base = 10) function
2696 stoul(const __wvstring& __str, std::size_t* __idx = 0, int __base = 10) function
    [all...]
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/bits/
basic_string.h 2578 stoul(const string& __str, size_t* __idx = 0, int __base = 10) function
2639 stoul(const wstring& __str, size_t* __idx = 0, int __base = 10) function
    [all...]
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/ext/
vstring.h 2474 stoul(const __vstring& __str, std::size_t* __idx = 0, int __base = 10) function
2534 stoul(const __wvstring& __str, std::size_t* __idx = 0, int __base = 10) function
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/bits/
basic_string.h 2578 stoul(const string& __str, size_t* __idx = 0, int __base = 10) function
2639 stoul(const wstring& __str, size_t* __idx = 0, int __base = 10) function
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/ext/
vstring.h 2474 stoul(const __vstring& __str, std::size_t* __idx = 0, int __base = 10) function
2534 stoul(const __wvstring& __str, std::size_t* __idx = 0, int __base = 10) function
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/bits/
basic_string.h 2578 stoul(const string& __str, size_t* __idx = 0, int __base = 10) function
2639 stoul(const wstring& __str, size_t* __idx = 0, int __base = 10) function
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/ext/
vstring.h 2474 stoul(const __vstring& __str, std::size_t* __idx = 0, int __base = 10) function
2534 stoul(const __wvstring& __str, std::size_t* __idx = 0, int __base = 10) function
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/bits/
basic_string.h 2578 stoul(const string& __str, size_t* __idx = 0, int __base = 10) function
2639 stoul(const wstring& __str, size_t* __idx = 0, int __base = 10) function
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/ext/
vstring.h 2470 stoul(const __vstring& __str, std::size_t* __idx = 0, int __base = 10) function
2530 stoul(const __wvstring& __str, std::size_t* __idx = 0, int __base = 10) function
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
basic_string.h 2774 stoul(const string& __str, size_t* __idx = 0, int __base = 10) function
2877 stoul(const wstring& __str, size_t* __idx = 0, int __base = 10) function
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/
vstring.h 2551 stoul(const __vstring& __str, std::size_t* __idx = 0, int __base = 10) function
2653 stoul(const __wvstring& __str, std::size_t* __idx = 0, int __base = 10) function
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/
basic_string.h 2832 stoul(const string& __str, size_t* __idx = 0, int __base = 10) function
2935 stoul(const wstring& __str, size_t* __idx = 0, int __base = 10) function
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/
vstring.h 2560 stoul(const __vstring& __str, std::size_t* __idx = 0, int __base = 10) function
2662 stoul(const __wvstring& __str, std::size_t* __idx = 0, int __base = 10) function
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
basic_string.h 2774 stoul(const string& __str, size_t* __idx = 0, int __base = 10) function
2877 stoul(const wstring& __str, size_t* __idx = 0, int __base = 10) function
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/
vstring.h 2551 stoul(const __vstring& __str, std::size_t* __idx = 0, int __base = 10) function
2653 stoul(const __wvstring& __str, std::size_t* __idx = 0, int __base = 10) function
    [all...]

Completed in 3327 milliseconds

1 2