Home
last modified time | relevance | path

Searched refs:to_string (Results 1 – 20 of 20) sorted by relevance

/art/runtime/native/
Ddalvik_system_VMDebug.cc406 std::string output = std::to_string(heap->GetGcCount()); in VMDebug_getRuntimeStatInternal()
410 std::string output = std::to_string(NsToMs(heap->GetGcTime())); in VMDebug_getRuntimeStatInternal()
414 std::string output = std::to_string(heap->GetBytesAllocatedEver()); in VMDebug_getRuntimeStatInternal()
418 std::string output = std::to_string(heap->GetBytesFreedEver()); in VMDebug_getRuntimeStatInternal()
422 std::string output = std::to_string(heap->GetBlockingGcCount()); in VMDebug_getRuntimeStatInternal()
426 std::string output = std::to_string(NsToMs(heap->GetBlockingGcTime())); in VMDebug_getRuntimeStatInternal()
466 std::to_string(heap->GetGcCount()))) { in VMDebug_getRuntimeStatsInternal()
470 std::to_string(NsToMs(heap->GetGcTime())))) { in VMDebug_getRuntimeStatsInternal()
474 std::to_string(heap->GetBytesAllocatedEver()))) { in VMDebug_getRuntimeStatsInternal()
478 std::to_string(heap->GetBytesFreedEver()))) { in VMDebug_getRuntimeStatsInternal()
[all …]
/art/cmdline/
Dmemory_representation.h52 str = "Memory<" + std::to_string(kDivisor) + '>'; in Name()
Dcmdline_parser.h573 + std::to_string(size_t(i + min_tokens) - arguments_list.Size()) + in Parse()
581 "matched " + std::to_string(best_match_size) in Parse()
582 + " but wanted " + std::to_string(num_tokens.first)); in Parse()
Dcmdline_types.h194 + std::to_string(Divisor));
/art/profman/
Dprofile_assistant.cc97 *error += " (index=" + std::to_string(i) + ")"; in Init()
109 *error += " (index=" + std::to_string(i) + ")"; in Init()
Dprofile_assistant_test.cc147 argv_str.push_back("--profile-file-fd=" + std::to_string(profiles_fd[k])); in ProcessProfiles()
149 argv_str.push_back("--reference-profile-file-fd=" + std::to_string(reference_profile_fd)); in ProcessProfiles()
205 argv_str.push_back("--dump-output-to-fd=" + std::to_string(GetFd(class_names_file))); in DumpClassesAndMethods()
/art/compiler/jit/
Djit_logger.cc44 std::string pid_str = std::to_string(getpid()); in OpenPerfMapLog()
254 std::string pid_str = std::to_string(getpid()); in OpenJitDumpLog()
/art/runtime/
Dstack_map.cc147 " " + std::to_string(i)); in Dump()
186 "\t[entry " + std::to_string(static_cast<int>(location_catalog_entry_index)) + "]"); in Dump()
Doat_file_assistant.cc689 args.push_back("--output-vdex-fd=" + std::to_string(vdex_file->Fd())); in GenerateOatFileNoChecks()
690 args.push_back("--oat-fd=" + std::to_string(oat_file->Fd())); in GenerateOatFileNoChecks()
Druntime_common.cc264 std::string reg_name = "x" + std::to_string(i); in Dump()
/art/cmdline/detail/
Dcmdline_parse_argument_detail.h351 + " at token " + std::to_string(idx)); in ParseArgument()
364 + " at token " + std::to_string(idx)); in ParseArgument()
/art/compiler/optimizing/
Dnodes_vector.h46 return "ALIGN(" + std::to_string(base_) + "," + std::to_string(offset_) + ")"; in ToString()
Dinduction_var_analysis.cc1171 return std::to_string(fetch->AsIntConstant()->GetValue()); in FetchToString()
1173 return std::to_string(fetch->AsLongConstant()->GetValue()); in FetchToString()
1175 return std::to_string(fetch->GetId()) + ":" + fetch->DebugName(); in FetchToString()
Dscheduler.cc216 id.append(std::to_string(instruction->GetId())); in InstructionTypeId()
/art/dex2oat/
Ddex2oat_test.cc66 args.push_back("--oat-fd=" + std::to_string(oat_file->Fd()));
643 copy.push_back("--app-image-fd=" + std::to_string(app_image_file->Fd()));
/art/dexlayout/
Ddex_visualize.cc41 return prefix + ((dex_file_index > 0) ? std::to_string(dex_file_index + 1) : "") + suffix; in MultidexName()
/art/runtime/jit/
Dprofile_compilation_info.cc616 *error += std::to_string(dex_profile_index) + " " + std::to_string(number_of_dex_files); in ReadInlineCache()
784 std::to_string(static_cast<uint32_t>(dex_location_size)); in ReadProfileLineHeader()
Dprofile_compilation_info_test.cc751 std::string dex_location = std::to_string(i); in TEST_F()
/art/test/004-JniTest/
Djni_test.cc712 jmethodID to_string = env_->GetMethodID( in TestCalls() local
714 jstring exception_string = (jstring) env_->CallObjectMethod(thrown, to_string); in TestCalls()
/art/runtime/base/
Dhash_set_test.cc347 hash_set.Insert(std::to_string(hash_set.Size())); in TEST_F()