Home
last modified time | relevance | path

Searched refs:descriptor_ (Results 1 – 11 of 11) sorted by relevance

/art/runtime/verifier/
Dreg_type.cc543 DCHECK(descriptor_[1] == 'L' || descriptor_[1] == '['); in IsObjectArrayTypes()
544 return descriptor_[0] == '['; in IsObjectArrayTypes()
562 return descriptor_[0] == '['; in IsArrayTypes()
824 CHECK(descriptor_.empty()) << *this; in CheckInvariants()
828 CHECK(!descriptor_.empty()) << *this; in CheckInvariants()
830 CHECK_EQ(descriptor_, klass_.Read()->GetDescriptor(&temp)) << *this; in CheckInvariants()
844 CHECK(!descriptor_.empty()) << *this; in CheckInvariants()
849 CHECK(!descriptor_.empty()) << *this; in CheckInvariants()
867 CHECK(descriptor_.empty()) << *this; in CheckInvariants()
911 CHECK(!descriptor_.empty()) << *this; in CheckInvariants()
[all …]
Dreg_type.h192 return descriptor_; in GetDescriptor()
324 : descriptor_(descriptor), in RegType()
339 const StringPiece descriptor_; variable
Dreg_type_cache.cc140 if (descriptor != entry->descriptor_) { in MatchDescriptor()
/art/libdexfile/dex/
Ddex_file-inl.h247 local_in_reg[arg_reg].descriptor_ = descriptor; in DecodeDebugLocalInfo()
272 local_in_reg[arg_reg].descriptor_ = descriptor; in DecodeDebugLocalInfo()
330 local_in_reg[reg].descriptor_ = type_index_to_string_data(descriptor_idx);; in DecodeDebugLocalInfo()
Ddex_file.h776 const char* descriptor_ = nullptr; // E.g., Ljava/util/LinkedList; member
/art/openjdkjvmti/
Dti_method.cc224 JvmtiUniquePtr<char[]> sig_str = CopyString(env_, entry.descriptor_, &err_); in GetLocalVariableTable()
631 : found_(false), jslot_(slot), pc_(pc), descriptor_(out_descriptor), type_(out_type) { in GetSlotType()
632 *descriptor_ = ""; in GetSlotType()
647 *type_ = art::Primitive::GetType(entry.descriptor_[0]); in GetSlotType()
648 *descriptor_ = entry.descriptor_; in GetSlotType()
656 std::string* descriptor_; in GetSlotType() member
/art/compiler/debug/
Delf_debug_info_writer.h271 WriteLazyType(var.descriptor_); in Write()
272 bool is64bitValue = var.descriptor_[0] == 'D' || var.descriptor_[0] == 'J'; in Write()
/art/dexdump/
Ddexdump.cc778 entry.name_, entry.descriptor_, signature); in dumpLocalsCb()
/art/dexlayout/
Ddexlayout.cc1080 entry.name_, entry.descriptor_, signature); in DumpLocalsCb()
/art/runtime/
Ddebugger.cc1732 entry.name_, entry.descriptor_, entry.signature_, slot, in OutputVariableTable()
1739 expandBufAddUtf8String(pContext->pReply, entry.descriptor_); in OutputVariableTable()
Dclass_linker.cc3935 : descriptor_(descriptor), in LookupClassesVisitor()
3942 ObjPtr<mirror::Class> klass = class_table->Lookup(descriptor_, hash_); in Visit()
3950 const char* const descriptor_; member in art::LookupClassesVisitor