OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:stof
(Results
1 - 9
of
9
) 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);
28
assert(std::
stof
("0") == 0);
29
assert(std::
stof
(L"0") == 0);
30
assert(std::
stof
("-0") == 0);
31
assert(std::
stof
(L"-0") == 0);
32
assert(std::
stof
("-10") == -10);
33
assert(std::
stof
(L"-10.5") == -10.5);
34
assert(std::
stof
(" 10") == 10);
35
assert(std::
stof
(L" 10") == 10)
[
all
...]
/external/autotest/client/site_tests/camera_V4L2/src/
camera_characteristics.cc
64
info->lens_info_minimum_focus_distance =
stof
(value);
66
info->lens_info_optimal_focus_distance =
stof
(value);
74
info->horizontal_view_angle_16_9 =
stof
(value);
76
info->horizontal_view_angle_4_3 =
stof
(value);
78
info->vertical_view_angle_16_9 =
stof
(value);
80
info->vertical_view_angle_4_3 =
stof
(value);
/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 );
/external/dynamic_depth/internal/xmpmeta/xml/
deserializer_impl.cc
253
*value = std::
stof
(string_value);
/external/tensorflow/tensorflow/lite/testing/nnapi_tflite_zip_tests/
parse_testdata.cc
124
tensor.flat_data.push_back(std::
stof
(csv[current_line][i]));
/external/tensorflow/tensorflow/lite/testing/
parse_testdata.cc
121
tensor.flat_data.push_back(std::
stof
(csv[current_line][i]));
/external/libkmsxx/utils/
kmstest.cpp
156
float refresh = sm[6].matched ?
stof
(sm[6]) : 0;
/frameworks/av/services/audiopolicy/engine/config/src/
EngineConfig.cpp
630
config->version = std::
stof
(version);
Completed in 1496 milliseconds