Searched refs:to_string (Results 1 - 25 of 74) sorted by relevance

123

/hardware/interfaces/tests/foo/1.0/default/lib/include/hidl-test/
H A DFooHelper.h9 using std::to_string;
20 std::string to_string(const IFoo::StringMatrix5x3 &M);
21 std::string to_string(const IFoo::StringMatrix3x5 &M);
23 std::string to_string(const hidl_string &s);
26 std::string to_string(const T *elems, size_t n) { function in namespace:android
33 out += to_string(elems[i]);
41 std::string to_string(const hidl_array<T, SIZE> &array) { function in namespace:android
42 return to_string(&array[0], SIZE);
46 std::string to_string(const hidl_array<T, SIZE1, SIZE2> &array) { function in namespace:android
60 out += to_string(arra
70 std::string to_string(const hidl_vec<T> &vec) { function in namespace:android
[all...]
/hardware/qcom/neuralnetworks/hvxservice/1.0/
H A DHexagonUtils.cpp209 return std::to_string(val);
213 return std::to_string(val);
217 return std::to_string(static_cast<int32_t>(id));
246 return "hexagon_nn_input{.src_id: " + std::to_string(input.src_id) +
247 ", .output_idx: " + std::to_string(input.output_idx) + "}";
251 return "hexagon_nn_output{.rank: " + std::to_string(output.rank) + ", .max_sizes: [" +
252 std::to_string(output.max_sizes[0]) + ", " + std::to_string(output.max_sizes[1]) + ", " +
253 std::to_string(output.max_sizes[2]) + ", " + std::to_string(outpu
[all...]
/hardware/interfaces/gnss/1.0/default/
H A DGnssConfiguration.cpp39 std::string config = "SUPL_ES=" + std::to_string(enabled ? 1 : 0) + "\n";
50 std::string config = "SUPL_VER=" + std::to_string(version) + "\n";
62 std::string config = "SUPL_MODE=" + std::to_string(mode) + "\n";
73 std::string config = "LPP_PROFILE=" + std::to_string(lppProfile) + "\n";
85 std::to_string(protocol) + "\n";
96 std::string config = "GPS_LOCK=" + std::to_string(lock) + "\n";
107 std::string config = "USE_EMERGENCY_PDN_FOR_EMERGENCY_SUPL=" + std::to_string(enabled ? 1 : 0)
/hardware/interfaces/tests/foo/1.0/default/lib/
H A DFooHelper.cpp5 std::string to_string(const IFoo::StringMatrix5x3 &M) { function in namespace:android
6 return to_string(M.s);
9 std::string to_string(const IFoo::StringMatrix3x5 &M) { function in namespace:android
10 return to_string(M.s);
13 std::string to_string(const hidl_string &s) { function in namespace:android
/hardware/interfaces/radio/1.0/vts/functional/
H A DVtsHalRadioV1_0TargetTest.cpp26 std::cout << "seed setup for random function (radio):" + std::to_string(seedSrand) << std::endl;
H A DVtsHalSapV1_0TargetTest.cpp26 std::cout << "seed setup for random function (sap):" + std::to_string(seedSrand) << std::endl;
/hardware/interfaces/neuralnetworks/1.1/vts/functional/
H A DValidateModel.cpp143 std::to_string(operand) + " set to value " +
144 std::to_string(invalidOperandType);
172 const std::string message = "mutateOperandRankTest: operand " + std::to_string(operand) +
173 " has rank of " + std::to_string(invalidRank);
201 const std::string message = "mutateOperandScaleTest: operand " + std::to_string(operand) +
202 " has scale of " + std::to_string(invalidScale);
232 std::to_string(operand) + " has zero point of " +
233 std::to_string(invalidZeroPoint);
310 std::to_string(operand) + " set to type " +
332 std::to_string(operatio
[all...]
H A DValidateRequest.cpp137 const std::string message = "removeInput: removed input " + std::to_string(input);
147 const std::string message = "removeOutput: removed Output " + std::to_string(output);
/hardware/interfaces/neuralnetworks/1.0/vts/functional/
H A DValidateModel.cpp127 std::to_string(operand) + " set to value " +
128 std::to_string(invalidOperandType);
156 const std::string message = "mutateOperandRankTest: operand " + std::to_string(operand) +
157 " has rank of " + std::to_string(invalidRank);
185 const std::string message = "mutateOperandScaleTest: operand " + std::to_string(operand) +
186 " has scale of " + std::to_string(invalidScale);
216 std::to_string(operand) + " has zero point of " +
217 std::to_string(invalidZeroPoint);
294 std::to_string(operand) + " set to type " +
316 std::to_string(operatio
[all...]
H A DValidateRequest.cpp136 const std::string message = "removeInput: removed input " + std::to_string(input);
146 const std::string message = "removeOutput: removed Output " + std::to_string(output);
/hardware/interfaces/health/2.0/vts/functional/
H A DVtsHalHealthV2_0TargetTest.cpp232 EXPECT_VALID_OR_UNSUPPORTED_PROP(result, std::to_string(value), value > 0);
235 EXPECT_VALID_OR_UNSUPPORTED_PROP(result, std::to_string(value), value != INT32_MIN);
238 EXPECT_VALID_OR_UNSUPPORTED_PROP(result, std::to_string(value), value != INT32_MIN);
241 EXPECT_VALID_OR_UNSUPPORTED_PROP(result, std::to_string(value), 0 <= value && value <= 100);
244 EXPECT_VALID_OR_UNSUPPORTED_PROP(result, std::to_string(value), value != INT64_MIN);
/hardware/qcom/data/ipacfg-mgr/msm8998/hal/src/
H A DPrefixParser.cpp167 mLastErr = "Failed to populate IPv4 Mask(" + std::to_string(mask)
171 mLastErr = "Failed to populate IPv6 Mask(" + std::to_string(mask)
369 mLastErr = "Failed parse subnet mask(" + std::to_string(mask) + ")";
372 mLastErr = "Subnet mask cannot be 0(" + std::to_string(mask) + ")";
376 + std::to_string(mask) + ")";
380 + std::to_string(mask) + ")";
/hardware/interfaces/light/utils/
H A Dmain.cpp53 std::to_string(static_cast<int>(type)));
/hardware/interfaces/tests/foo/1.0/default/
H A DFoo.cpp249 LOG(INFO) << "SERVER(Foo) transposeMe(" << to_string(in).c_str() << ")";
258 LOG(INFO) << "SERVER(Foo) transposeMe returning " << to_string(out).c_str();
283 LOG(INFO) << "SERVER(Foo) transpose " << to_string(in);
299 LOG(INFO) << "SERVER(Foo) transpose2 " << to_string(in);
/hardware/interfaces/graphics/composer/2.1/utils/hwc2on1adapter/
H A DHWC2On1Adapter.cpp309 to_string(descriptor).c_str());
377 output << " " << to_string(capability) << '\n';
424 ALOGV("registerCallback(%s, %p, %p)", to_string(descriptor).c_str(),
432 ALOGI("unregisterCallback(%s)", to_string(descriptor).c_str());
601 to_string(Error::BadConfig).c_str());
621 to_string(attribute).c_str(), *outValue);
648 to_string(element.second).c_str());
794 to_string(error).c_str());
939 ALOGV("[%" PRIu64 "] setPowerMode(%s)", mId, to_string(mode).c_str());
989 to_string(reques
1430 static std::string to_string(const hwc_layer_1_t& hwcLayer, function in namespace:android
1490 static std::string to_string(const hwc_display_contents_1_t& hwcContents, function in namespace:android
[all...]
/hardware/qcom/display/msm8994/libhwcomposer/
H A DHWC2On1Adapter.cpp342 to_string(descriptor).c_str());
422 output << " " << to_string(capability) << '\n';
471 ALOGV("registerCallback(%s, %p, %p)", to_string(descriptor).c_str(),
639 to_string(Error::BadConfig).c_str());
660 to_string(attribute).c_str(), *outValue);
688 to_string(element.second).c_str());
840 to_string(error).c_str());
993 ALOGV("[%" PRIu64 "] setPowerMode(%s)", mId, to_string(mode).c_str());
1045 to_string(request.second).c_str());
1448 return std::string("Unknown (") + std::to_string(typ
1530 static std::string to_string(const hwc_layer_1_t& hwcLayer, function in namespace:android
1591 static std::string to_string(const hwc_display_contents_1_t& hwcContents, function in namespace:android
[all...]
/hardware/interfaces/broadcastradio/1.1/default/
H A DVirtualProgram.cpp69 {"com.google.dummy.VirtualProgram", std::to_string(reinterpret_cast<uintptr_t>(this))},
/hardware/interfaces/broadcastradio/2.0/default/
H A DVirtualProgram.cpp92 {"com.google.dummy.VirtualProgram", std::to_string(reinterpret_cast<uintptr_t>(this))},
/hardware/interfaces/tests/pointer/1.0/default/
H A DGraph.cpp9 #define PUSH_ERROR_IF(__cond__) if(__cond__) { errors.push_back(std::to_string(__LINE__) + ": " + #__cond__); }
/hardware/google/easel/amber/camera/libhdrplusclient/
H A DHdrPlusClientUtils.cpp99 outfile << " " << std::to_string(width) << " " << std::to_string(height) << " 255 ";
/hardware/qcom/display/msm8909/sdm/libs/core/drm/
H A Dhw_info_drm.cpp82 using std::to_string;
421 string path = "/dev/video" + to_string(v4l2_index);
448 string path = v4l2_path + to_string(i) + "/name";
456 hw_resource->hw_rot_info.device_path = string("/dev/video" + to_string(i));
462 string caps_path = v4l2_path + to_string(i) + "/device/caps";
/hardware/qcom/display/msm8909w_3100/sdm/libs/core/drm/
H A Dhw_info_drm.cpp82 using std::to_string;
410 string path = "/dev/video" + to_string(v4l2_index);
437 string path = v4l2_path + to_string(i) + "/name";
445 hw_resource->hw_rot_info.device_path = string("/dev/video" + to_string(i));
451 string caps_path = v4l2_path + to_string(i) + "/device/caps";
/hardware/qcom/display/msm8998/sdm/libs/core/drm/
H A Dhw_info_drm.cpp72 using std::to_string;
410 string path = "/dev/video" + to_string(v4l2_index);
437 string path = v4l2_path + to_string(i) + "/name";
445 hw_resource->hw_rot_info.device_path = string("/dev/video" + to_string(i));
451 string caps_path = v4l2_path + to_string(i) + "/device/caps";
/hardware/qcom/display/msm8996/sdm/libs/core/fb/
H A Dhw_info.cpp53 using std::to_string;
154 + to_string(kHWCapabilitiesNode) + "/mdp/caps";
396 string path = "/sys/class/video4linux/video" + to_string(i) + "/name";
405 hw_resource->hw_rot_info.device_path = string("/dev/video" + to_string(i));
/hardware/qcom/display/msm8998/libgralloc1/
H A Dgr_ion_alloc.cpp89 tag_name = "ION_IOC_ALLOC size: " + std::to_string(data->size);

Completed in 1283 milliseconds

123