HomeSort by relevance Sort by last modified time
    Searched defs:string_id (Results 1 - 6 of 6) sorted by null

  /art/compiler/dex/quick/
dex_file_method_inliner.cc 740 const DexFile::StringId* string_id = dex_file->FindStringId(kNameCacheNames[index]); local
    [all...]
  /art/runtime/
intern_table.cc 223 const DexFile::StringId* string_id = dex_file->FindStringId(utf8.c_str()); local
224 if (string_id != nullptr) {
225 uint32_t string_idx = dex_file->GetIndexForStringId(*string_id);
dex_file_verifier_test.cc 315 const DexFile::StringId& string_id = dex_file->GetStringId(name_index); local
316 const char* str = dex_file->GetStringData(string_id);
924 const DexFile::StringId& string_id = dex_file->GetStringId(name_index); local
    [all...]
dex_file_verifier.cc 2429 const DexFile::StringId* string_id = local
    [all...]
dex_file.h 512 uint32_t GetIndexForStringId(const StringId& string_id) const {
513 CHECK_GE(&string_id, string_ids_) << GetLocation();
514 CHECK_LT(&string_id, string_ids_ + header_->string_ids_size_) << GetLocation();
515 return &string_id - string_ids_;
518 int32_t GetStringLength(const StringId& string_id) const;
520 // Returns a pointer to the UTF-8 string data referred to by the given string_id as well as the
523 const char* GetStringDataAndUtf16Length(const StringId& string_id, uint32_t* utf16_length) const;
525 const char* GetStringData(const StringId& string_id) const {
527 return GetStringDataAndUtf16Length(string_id, &ignored);
536 const StringId& string_id = GetStringId(idx) local
    [all...]
  /art/runtime/jdwp/
jdwp_handler.cc 272 ObjectId string_id; local
273 JdwpError status = Dbg::CreateString(str, &string_id);
277 expandBufAddObjectId(pReply, string_id);
    [all...]

Completed in 164 milliseconds