HomeSort by relevance Sort by last modified time
    Searched full:string_index (Results 1 - 25 of 39) sorted by null

1 2

  /art/compiler/utils/
string_reference.h 31 StringReference(const DexFile* file, uint32_t index) : dex_file(file), string_index(index) { }
34 uint32_t string_index; member in struct:art::StringReference
48 sr1.string_index < sr2.string_index,
50 sr1.dex_file->GetStringData(sr1.dex_file->GetStringId(sr1.string_index)),
51 sr1.dex_file->GetStringData(sr2.dex_file->GetStringId(sr2.string_index))) < 0);
52 return sr1.string_index < sr2.string_index;
56 sr1.dex_file->GetStringData(sr1.dex_file->GetStringId(sr1.string_index)),
57 sr1.dex_file->GetStringData(sr2.dex_file->GetStringId(sr2.string_index))) < 0
    [all...]
  /art/runtime/native/
java_lang_DexCache.cc 59 static jobject DexCache_getResolvedString(JNIEnv* env, jobject javaDexCache, jint string_index) {
62 CHECK_LT(static_cast<size_t>(string_index), dex_cache->NumStrings());
63 return soa.AddLocalReference<jobject>(dex_cache->GetResolvedString(string_index));
74 static void DexCache_setResolvedString(JNIEnv* env, jobject javaDexCache, jint string_index,
78 CHECK_LT(static_cast<size_t>(string_index), dex_cache->NumStrings());
79 dex_cache->SetResolvedString(string_index, soa.Decode<mirror::String*>(string));
  /external/ceres-solver/internal/ceres/
stringprintf.h 57 #define CERES_PRINTF_ATTRIBUTE(string_index, first_to_check) \
58 __attribute__((__format__ (__printf__, string_index, first_to_check)))
59 #define CERES_SCANF_ATTRIBUTE(string_index, first_to_check) \
60 __attribute__((__format__ (__scanf__, string_index, first_to_check)))
62 #define CERES_PRINTF_ATTRIBUTE(string_index, first_to_check)
  /device/google/contexthub/firmware/inc/
toolchain.h 54 #define PRINTF_ATTRIBUTE(string_index, first_to_check)
96 #define PRINTF_ATTRIBUTE(string_index, first_to_check) \
97 __attribute__((format(printf, string_index, first_to_check)))
  /external/freetype/include/internal/services/
svpscmap.h 47 (*PS_Adobe_Std_StringsFunc)( FT_UInt string_index );
79 FT_UInt string_index );
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/include/freetype/internal/services/
svpscmap.h 47 (*PS_Adobe_Std_StringsFunc)( FT_UInt string_index );
79 FT_UInt string_index );
  /external/pdfium/third_party/freetype/include/freetype/internal/services/
svpscmap.h 47 (*PS_Adobe_Std_StringsFunc)( FT_UInt string_index );
79 FT_UInt string_index );
  /external/emma/core/java12/com/vladium/jcd/cls/constant/
CONSTANT_String_info.java 21 * The value of the string_index item must be a valid index into the constant pool
38 public CONSTANT_String_info (final int string_index)
40 m_string_index = string_index;
58 return "CONSTANT_String: [string_index = " + m_string_index + ']';
  /art/compiler/optimizing/
sharpening.cc 161 uint32_t string_index = load_string->GetStringIndex(); local
178 mirror::String* string = class_linker->ResolveString(dex_file, string_index, dex_cache);
193 mirror::String* string = dex_cache->GetResolvedString(string_index);
204 void* dex_cache_element_address = &dex_cache->GetStrings()[string_index];
209 mirror::String* string = class_linker->LookupString(dex_file, string_index, dex_cache);
236 load_string->SetLoadKindWithStringReference(load_kind, dex_file, string_index);
246 size_t element_index = layout.StringOffset(string_index);
code_generator_arm.h 441 PcRelativePatchInfo* NewPcRelativeStringPatch(const DexFile& dex_file, uint32_t string_index);
444 Literal* DeduplicateBootImageStringLiteral(const DexFile& dex_file, uint32_t string_index);
code_generator.h 484 : dex_file(df), string_index(index), label() { }
487 uint32_t string_index; member in struct:art::CodeGenerator::StringPatchInfo
code_generator_arm64.h 482 uint32_t string_index,
494 uint32_t string_index);
code_generator_arm64.cc 348 const uint32_t string_index = instruction_->AsLoadString()->GetStringIndex(); variable
349 __ Mov(calling_convention.GetRegisterAt(0).W(), string_index);
    [all...]
code_generator_arm.cc 262 const uint32_t string_index = instruction_->AsLoadString()->GetStringIndex(); variable
263 __ LoadImmediate(calling_convention.GetRegisterAt(0), string_index);
6547 uint32_t string_index = info.offset_or_index; local
    [all...]
instruction_builder.cc 2588 uint32_t string_index = instruction.VRegB_21c(); local
2596 uint32_t string_index = instruction.VRegB_31c(); local
    [all...]
nodes.h     [all...]
  /external/v8/src/
bignum.cc 118 int string_index = length - 1; local
123 current_bigit += HexCharValue(value[string_index--]) << (j * 4);
130 for (int j = 0; j <= string_index; ++j) {
565 int string_index = needed_chars - 1;
566 buffer[string_index--] = '\0';
569 buffer[string_index--] = '0';
575 buffer[string_index--] = HexCharOfValue(current_bigit & 0xF);
582 buffer[string_index--] = HexCharOfValue(most_significant_bigit & 0xF);
  /bionic/tools/relocation_packer/src/
elf_file.cc 182 size_t string_index; local
183 elf_getshdrstrndx(elf, &string_index);
200 std::string name = elf_strptr(elf, string_index, section_header->sh_name);
285 size_t string_index; local
286 elf_getshdrstrndx(elf, &string_index);
291 std::string name = elf_strptr(elf, string_index, section_header->sh_name);
584 size_t string_index; local
585 elf_getshdrstrndx(elf, &string_index);
587 std::string name = elf_strptr(elf, string_index, section_header->sh_name);
    [all...]
  /external/freetype/src/cff/
cffload.c 1449 CFF_IndexRec string_index; local
    [all...]
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/cff/
cffload.c 1449 CFF_IndexRec string_index; local
    [all...]
  /external/pdfium/third_party/freetype/src/cff/
cffload.c 1449 CFF_IndexRec string_index; local
    [all...]
  /build/tools/ijar/
classfile.cc 234 Constant_String(u2 string_index) :
236 string_index_(string_index) {}
1406 u2 string_index = get_u2be(p); local
    [all...]
  /art/compiler/driver/
compiler_driver.cc 799 uint32_t string_index = inst->VRegB_21c(); local
800 driver->CanAssumeStringIsPresentInDexCache(dex_file, string_index);
804 uint32_t string_index = inst->VRegB_31c(); local
805 driver->CanAssumeStringIsPresentInDexCache(dex_file, string_index);
    [all...]
  /external/clang/test/CodeGenCXX/
catch-undef-behavior.cpp 340 char string_index(int n) { function
  /external/v8/test/cctest/
test-heap-profiler.cc 994 int string_index = local
    [all...]

Completed in 684 milliseconds

1 2