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

  /external/libcxx/test/std/strings/string.conversions/
stof.pass.cpp 16 // float stof(const string& str, size_t *idx = 0);
17 // float stof(const wstring& str, size_t *idx = 0);
27 assert(std::stof("0") == 0);
28 assert(std::stof(L"0") == 0);
29 assert(std::stof("-0") == 0);
30 assert(std::stof(L"-0") == 0);
31 assert(std::stof("-10") == -10);
32 assert(std::stof(L"-10.5") == -10.5);
33 assert(std::stof(" 10") == 10);
34 assert(std::stof(L" 10") == 10)
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/strings/string.conversions/
stof.pass.cpp 16 // float stof(const string& str, size_t *idx = 0);
17 // float stof(const wstring& str, size_t *idx = 0);
27 assert(std::stof("0") == 0);
28 assert(std::stof(L"0") == 0);
29 assert(std::stof("-0") == 0);
30 assert(std::stof(L"-0") == 0);
31 assert(std::stof("-10") == -10);
32 assert(std::stof(L"-10.5") == -10.5);
33 assert(std::stof(" 10") == 10);
34 assert(std::stof(L" 10") == 10)
    [all...]
  /test/vts/drivers/hal/common/utils/
InterfaceSpecUtil.cpp 125 assert(std::stof(minor_version) < 10.0);
126 return std::stof(major_version) + 0.1 * (std::stof(minor_version));
  /test/vts/utils/native/libprofiling/
VtsProfilingInterface.cpp 118 record.set_version(stof(version));
  /device/google/contexthub/util/nanotool/
nanotool.cpp 231 spec.rate_hz = std::stof(param);
253 spec.cal_ref = std::stof(param);
  /external/libcxx/src/
string.cpp 310 stof(const string& str, size_t* idx) function
312 return as_float<float>( "stof", str, idx );
316 stof(const wstring& str, size_t* idx) function
318 return as_float<float>( "stof", str, idx );
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/src/
string.cpp 313 stof(const string& str, size_t* idx) function
315 return as_float<float>( "stof", str, idx );
319 stof(const wstring& str, size_t* idx) function
321 return as_float<float>( "stof", str, idx );
  /external/tensorflow/tensorflow/contrib/lite/testing/
parse_testdata.cc 121 tensor.flat_data.push_back(std::stof(csv[current_line][i]));
  /test/vts/drivers/hal/common/driver_manager/
VtsHalDriverManager.cpp 386 stof(call_msg.component_type_version()));
  /hardware/qcom/display/msm8909/sdm/libs/core/drm/
hw_info_drm.cpp 475 std::stof(string(caps, min_downscale.length()));
  /hardware/qcom/display/msm8909w_3100/sdm/libs/core/drm/
hw_info_drm.cpp 464 std::stof(string(caps, min_downscale.length()));
  /hardware/qcom/display/msm8998/sdm/libs/core/drm/
hw_info_drm.cpp 464 std::stof(string(caps, min_downscale.length()));
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/bits/
basic_string.h 2849 stof(const string& __str, size_t* __idx = 0) function
2952 stof(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 2610 stof(const __vstring& __str, std::size_t* __idx = 0) function
2712 stof(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 2849 stof(const string& __str, size_t* __idx = 0) function
2952 stof(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 2610 stof(const __vstring& __str, std::size_t* __idx = 0) function
2712 stof(const __wvstring& __str, std::size_t* __idx = 0) function
    [all...]

Completed in 741 milliseconds