Searched refs:str (Results 51 - 75 of 75) sorted by relevance

123

/art/runtime/
H A Ddebugger.h293 static JDWP::ObjectId CreateString(const std::string& str)
405 static JDWP::JdwpError StringToUtf8(JDWP::ObjectId string_id, std::string* str)
H A Dmonitor.cc308 << self->GetException(NULL)->Dump() << "\n" << ss.str();
320 return oss.str();
H A Dprofiler.cc102 std::string data(os.str());
299 std::string data(os.str());
H A Dthread.cc627 LOG(FATAL) << ss.str();
1763 std::string str(ss.str());
1765 std::cerr << str; local
1768 LOG(INFO) << str;
H A Ddebugger.cc1390 JDWP::ObjectId Dbg::CreateString(const std::string& str) { argument
1391 return gRegistry->Add(mirror::String::AllocFromModifiedUtf8(Thread::Current(), str.c_str()));
1921 JDWP::JdwpError Dbg::StringToUtf8(JDWP::ObjectId string_id, std::string* str) { argument
1934 *str = obj->AsString()->ToModifiedUtf8();
4536 void Add(const std::string& str) { argument
4537 table_.insert(str);
4540 void Add(const char* str) { argument
4541 table_.insert(str);
4557 for (const std::string& str : table_) {
4558 const char* s = str
[all...]
H A Ddex_file_verifier.cc1479 const char* str = dex_file_->GetStringData(*item); local
1480 if (UNLIKELY(CompareModifiedUtf8ToModifiedUtf8AsUtf16CodePointValues(prev_str, str) >= 0)) {
1481 ErrorStringPrintf("Out-of-order string_ids: '%s' then '%s'", prev_str, str);
H A Dtrace.cc536 std::string header(os.str());
H A Dinstrumentation.cc1153 return os.str();
H A Dutils.cc215 LOG(INFO) << "Note: end time exceeds epoch: " << ss.str();
H A Delf_file.cc1054 *error_msg = oss.str();
H A Dclass_linker.cc397 CHECK_EQ(java_lang_String.Get(), String_class) << os1.str() << "\n\n" << os2.str();
/art/test/107-int-math2/src/
H A DMain.java116 String str = "Hello World!";
117 return x + str.length();
/art/compiler/dex/quick/
H A Dmir_to_lir.h628 char* ArenaStrdup(const char* str) { argument
629 size_t len = strlen(str) + 1;
632 strncpy(res, str, len);
/art/runtime/verifier/
H A Dmethod_verifier.cc274 std::cout << "\n" << verifier.info_messages_.str();
302 os << verifier->info_messages_.str();
525 prepend += last_fail_message->str();
1117 os << failure_messages_[i]->str() << "\n";
1350 std::cout << info_messages_.str();
1411 // LOG(INFO) << info_messages_.str();
/art/compiler/utils/arm/
H A Dassembler_arm32.cc216 void Arm32Assembler::str(Register rd, const Address& ad, Condition cond) { function in class:art::arm::Arm32Assembler
1180 str(rd, Address(SP, -kRegisterSize, Address::PreIndex), cond);
1423 str(reg, Address(base, offset), cond);
H A Dassembler_arm32.h101 void str(Register rd, const Address& ad, Condition cond = AL) OVERRIDE;
H A Dassembler_thumb2.cc260 void Thumb2Assembler::str(Register rd, const Address& ad, Condition cond) { function in class:art::arm::Thumb2Assembler
357 str(static_cast<Register>(reg), Address(base, -kRegisterSize, strmode), cond);
2050 str(rd, Address(SP, -kRegisterSize, Address::PreIndex), cond);
2473 str(reg, Address(base, offset), cond);
H A Dassembler_thumb2.h123 void str(Register rd, const Address& ad, Condition cond = AL) OVERRIDE;
H A Dassembler_arm.h318 RdMask = 15 << 12, // in str instruction
421 virtual void str(Register rd, const Address& ad, Condition cond = AL) = 0;
/art/compiler/dex/
H A Dmir_graph.h969 void ReplaceSpecialChars(std::string& str);
/art/runtime/gc/collector/
H A Dsemi_space.cc175 runtime->SetFaultMessage(oss.str());
/art/runtime/gc/allocator/
H A Drosalloc.cc850 return stream.str();
1437 return stream.str();
/art/runtime/gc/
H A Dheap.cc935 self->ThrowOutOfMemoryError(oss.str().c_str());
1149 return oss.str();
2195 << PrettySize(total_memory) << ", " << "paused " << pause_string.str()
/art/compiler/dex/portable/
H A Dmir_to_gbc.cc1659 LOG(INFO) << "label " << llvm_bb->getName().str().c_str();
/art/compiler/llvm/
H A Dgbc_expander.cc428 VLOG(compiler) << "GBC expansion on " << func.getName().str();

Completed in 577 milliseconds

123