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

  /external/libcxx/test/std/strings/string.conversions/
stod.pass.cpp 12 // double stod(const string& str, size_t *idx = 0);
13 // double stod(const wstring& str, size_t *idx = 0);
23 assert(std::stod("0") == 0);
24 assert(std::stod(L"0") == 0);
25 assert(std::stod("-0") == 0);
26 assert(std::stod(L"-0") == 0);
27 assert(std::stod("-10") == -10);
28 assert(std::stod(L"-10.5") == -10.5);
29 assert(std::stod(" 10") == 10);
30 assert(std::stod(L" 10") == 10)
    [all...]
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/strings/string.conversions/
stod.pass.cpp 12 // double stod(const string& str, size_t *idx = 0);
13 // double stod(const wstring& str, size_t *idx = 0);
21 assert(std::stod("0") == 0);
22 assert(std::stod(L"0") == 0);
23 assert(std::stod("-0") == 0);
24 assert(std::stod(L"-0") == 0);
25 assert(std::stod("-10") == -10);
26 assert(std::stod(L"-10.5") == -10.5);
27 assert(std::stod(" 10") == 10);
28 assert(std::stod(L" 10") == 10)
    [all...]
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/strings/string.conversions/
stod.pass.cpp 13 // double stod(const string& str, size_t *idx = 0);
14 // double stod(const wstring& str, size_t *idx = 0);
22 assert(std::stod("0") == 0);
23 assert(std::stod(L"0") == 0);
24 assert(std::stod("-0") == 0);
25 assert(std::stod(L"-0") == 0);
26 assert(std::stod("-10") == -10);
27 assert(std::stod(L"-10.5") == -10.5);
28 assert(std::stod(" 10") == 10);
29 assert(std::stod(L" 10") == 10)
    [all...]
  /external/skia/src/sksl/
SkSLString.h 80 double stod(String s);
SkSLString.cpp 158 double stod(String s) {
SkSLParser.cpp     [all...]
  /external/libcxx/src/
string.cpp 328 stod(const string& str, size_t* idx) function
330 return as_float<double>( "stod", str, idx );
334 stod(const wstring& str, size_t* idx) function
336 return as_float<double>( "stod", str, idx );
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/src/
string.cpp 327 stod(const string& str, size_t* idx) function
329 return as_float<double>( "stod", str, idx );
333 stod(const wstring& str, size_t* idx) function
335 return as_float<double>( "stod", str, idx );
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/src/
string.cpp 328 stod(const string& str, size_t* idx) function
330 return as_float<double>( "stod", str, idx );
334 stod(const wstring& str, size_t* idx) function
336 return as_float<double>( "stod", str, idx );
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/bits/
basic_string.h 2853 stod(const string& __str, size_t* __idx = 0) function
2956 stod(const wstring& __str, size_t* __idx = 0) function
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/
vstring.h 2614 stod(const __vstring& __str, std::size_t* __idx = 0) function
2716 stod(const __wvstring& __str, std::size_t* __idx = 0) 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 2853 stod(const string& __str, size_t* __idx = 0) function
2956 stod(const wstring& __str, size_t* __idx = 0) function
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/
vstring.h 2614 stod(const __vstring& __str, std::size_t* __idx = 0) function
2716 stod(const __wvstring& __str, std::size_t* __idx = 0) 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 2853 stod(const string& __str, size_t* __idx = 0) function
2956 stod(const wstring& __str, size_t* __idx = 0) 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 2614 stod(const __vstring& __str, std::size_t* __idx = 0) function
2716 stod(const __wvstring& __str, std::size_t* __idx = 0) function
    [all...]
  /prebuilts/ndk/r10/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/
basic_string.h 2888 stod(const string& __str, size_t* __idx = 0) function
2991 stod(const wstring& __str, size_t* __idx = 0) function
    [all...]
  /prebuilts/ndk/r10/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/
vstring.h 2754 stod(const __vstring& __str, std::size_t* __idx = 0) function
2856 stod(const __wvstring& __str, std::size_t* __idx = 0) function
    [all...]
  /prebuilts/ndk/r11/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/
basic_string.h 2888 stod(const string& __str, size_t* __idx = 0) function
2991 stod(const wstring& __str, size_t* __idx = 0) function
    [all...]
  /prebuilts/ndk/r11/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/
vstring.h 2754 stod(const __vstring& __str, std::size_t* __idx = 0) function
2856 stod(const __wvstring& __str, std::size_t* __idx = 0) function
    [all...]
  /prebuilts/ndk/r13/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/
basic_string.h 2888 stod(const string& __str, size_t* __idx = 0) function
2991 stod(const wstring& __str, size_t* __idx = 0) function
    [all...]
  /prebuilts/ndk/r13/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/
vstring.h 2754 stod(const __vstring& __str, std::size_t* __idx = 0) function
2856 stod(const __wvstring& __str, std::size_t* __idx = 0) function
    [all...]

Completed in 145 milliseconds