HomeSort by relevance Sort by last modified time
    Searched full:to_string (Results 251 - 275 of 899) sorted by null

<<11121314151617181920>>

  /frameworks/native/cmds/lshal/
TableEntry.cpp 73 return serverPid == NO_PID ? "N/A" : std::to_string(serverPid);
154 std::string TableEntry::to_string() const { function in class:android::lshal::TableEntry
test.cpp 269 return "a.h.foo" + std::to_string(serverId) + "@" + std::to_string(serverId) + ".0::IFoo";
272 return std::to_string(serverId);
282 return "command_line_" + std::to_string(serverId);
334 table.setDescription("[fake description " + std::to_string(i++) + "]");
412 EXPECT_EQ(expected, entry) << expected.to_string() << " vs. " << entry.to_string();
  /system/extras/simpleperf/
UnixSocket_test.cpp 103 std::string path = "unix_socket_test_" + std::to_string(getpid());
172 std::string path = "unix_socket_test_" + std::to_string(getpid());
  /system/libhwbinder/vts/performance/
PerfTest.cpp 48 using std::to_string;
141 cout << (first ? "" : ",") << to_string(nano);
  /external/perfetto/src/tracing/core/
service_impl_unittest.cc 256 ASSERT_EQ(i, connect_producer_and_get_id(std::to_string(i)));
302 payload.append(std::to_string(i));
331 ASSERT_EQ(kPayload + std::to_string(num_testing_packet++),
362 auto name = "mock_producer_" + std::to_string(i);
374 producer_config->set_producer_name("mock_producer_" + std::to_string(i));
  /prebuilts/go/darwin-x86/src/runtime/
runtime-gdb.py 71 def to_string(self): member in class:StringTypePrinter
87 def to_string(self): member in class:SliceTypePrinter
113 def to_string(self): member in class:MapTypePrinter
164 def to_string(self): member in class:ChanTypePrinter
284 def to_string(self): member in class:IfacePrinter
  /prebuilts/go/linux-x86/src/runtime/
runtime-gdb.py 71 def to_string(self): member in class:StringTypePrinter
87 def to_string(self): member in class:SliceTypePrinter
113 def to_string(self): member in class:MapTypePrinter
164 def to_string(self): member in class:ChanTypePrinter
284 def to_string(self): member in class:IfacePrinter
  /test/vts/drivers/hal/common/driver_manager/
VtsHalDriverManager.cpp 55 std::to_string(version), package_name,
61 std::to_string(version), package_name,
80 std::to_string(version), package_name,
86 std::to_string(version), package_name,
452 return "component_type: " + std::to_string(component_type) +
  /external/llvm/tools/llvm-readobj/
ELFDumper.cpp     [all...]
  /bootable/recovery/
install.cpp 293 std::to_string(kRecoveryApiVersion),
294 std::to_string(status_fd),
678 "time_total: " + std::to_string(time_total),
679 "retry: " + std::to_string(retry_count),
685 log_buffer.push_back("temperature_start: " + std::to_string(start_temperature));
688 log_buffer.push_back("temperature_end: " + std::to_string(end_temperature));
691 log_buffer.push_back("temperature_max: " + std::to_string(max_temperature));
  /external/perfetto/src/protozero/protoc_plugin/
protozero_generator.cc 322 std::to_string(value->number()));
331 setter["id"] = std::to_string(field->number());
457 "id", std::to_string(field->number()), "name", field->name(), "action",
473 std::to_string(field->number()));
501 std::to_string(field->number()), "is_repeated",
502 std::to_string(field->is_repeated()));
522 GetFieldNumberConstant(message->field(i)), "id", std::to_string(i));
  /external/libbrillo/brillo/http/
http_connection_curl_unittest.cc 231 {request_header::kContentLength, std::to_string(request_data.size())},
293 {response_header::kContentLength, std::to_string(response_data.size())},
313 EXPECT_EQ(std::to_string(response_data.size()),
  /external/nos/host/generic/libnos/generator/
main.cpp 123 vars["method_id"] = std::to_string(i);
228 vars["max_request_size"] = std::to_string(max_request_size);
229 vars["max_response_size"] = std::to_string(max_response_size);
  /external/parameter-framework/asio-1.10.6/include/asio/ip/impl/
address_v6.ipp 89 std::string address_v6::to_string() const
92 std::string addr = to_string(ec);
97 std::string address_v6::to_string(asio::error_code& ec) const
  /external/parameter-framework/upstream/parameter/
ElementHandle.cpp 379 using std::to_string;
381 to_string(getArrayLength()) + ", got: " + to_string(arrayLength);
  /external/tensorflow/tensorflow/python/framework/
device.py 194 def to_string(self): member in class:DeviceSpec
251 return device.to_string()
254 return device.to_string()
  /frameworks/base/tools/aapt2/cmd/
Dump.cpp 65 printer->Println(file.name.to_string());
68 printer->Println(file.config.to_string());
71 printer->Println(file.source.to_string());
  /frameworks/base/tools/aapt2/link/
TableMerger.cpp 287 std::string mangled_entry = NameMangler::MangleEntry(package, entry.to_string());
288 std::string newPath = prefix.to_string() + mangled_entry + suffix.to_string();
  /frameworks/base/tools/aapt2/util/
Files.cpp 210 if (!ReadFileToString(path.to_string(), &contents, true /*follow_symlinks*/)) {
220 out_arglist->push_back(line.to_string());
293 const std::string root_dir = path.to_string();
Util.cpp 47 parts.emplace_back(str.substr(start, current).to_string());
184 return classname.to_string();
191 std::string result = package.to_string();
  /system/core/libunwindstack/
Elf.cpp 344 (*cache_)[info->name + ':' + std::to_string(info->offset)] =
363 (*cache_)[info->name + ':' + std::to_string(info->offset)] = std::make_pair(info->elf, true);
370 name += ':' + std::to_string(info->offset);