| /art/runtime/ | 
| string_reference.h | 32       : dex_file(file), string_index(index) { } 35     return dex_file->GetStringData(dex_file->GetStringId(string_index));
 39   dex::StringIndex string_index;  member in struct:art::StringReference
 48     return a.string_index < b.string_index;
 63           sr1.string_index < sr2.string_index,
 66       return sr1.string_index < sr2.string_index;
 
 | 
| /art/compiler/optimizing/ | 
| sharpening.cc | 240   dex::StringIndex string_index = load_string->GetStringIndex();  local 257       string = class_linker->ResolveString(dex_file, string_index, dex_cache);
 268       string = class_linker->LookupString(dex_file, string_index, dex_cache.Get());
 280       string = class_linker->LookupString(dex_file, string_index, dex_cache.Get());
 
 | 
| code_generator_mips64.cc | 281     const dex::StringIndex string_index = load->GetStringIndex();  variable 303     __ LoadConst32(calling_convention.GetRegisterAt(0), string_index.index_);
 316                                                    string_index,
 336           mips64_codegen->NewPcRelativeStringPatch(load->GetDexFile(), string_index);
 338           mips64_codegen->NewPcRelativeStringPatch(load->GetDexFile(), string_index, info_high);
 [all...]
 | 
| code_generator_arm64.cc | 423     const dex::StringIndex string_index = instruction_->AsLoadString()->GetStringIndex();  variable 424     __ Mov(calling_convention.GetRegisterAt(0).W(), string_index.index_);
 438       adrp_label_ = arm64_codegen->NewPcRelativeStringPatch(dex_file, string_index);
 442         arm64_codegen->NewPcRelativeStringPatch(dex_file, string_index, adrp_label_);
 [all...]
 | 
| code_generator_x86_64.cc | 311     const dex::StringIndex string_index = instruction_->AsLoadString()->GetStringIndex();  variable 313     __ movl(CpuRegister(RAX), Immediate(string_index.index_));
 [all...]
 | 
| code_generator_arm_vixl.cc | 562     const dex::StringIndex string_index = load->GetStringIndex();  variable 584     __ Mov(calling_convention.GetRegisterAt(0), string_index.index_);
 598           arm_codegen->NewPcRelativeStringPatch(load->GetDexFile(), string_index);
 [all...]
 | 
| code_generator_mips.cc | 331     const dex::StringIndex string_index = load->GetStringIndex();  variable 353     __ LoadConst32(calling_convention.GetRegisterAt(0), string_index.index_);
 362           mips_codegen->NewPcRelativeStringPatch(load->GetDexFile(), string_index, bss_info_high_);
 385           mips_codegen->NewPcRelativeStringPatch(load->GetDexFile(), string_index);
 387           mips_codegen->NewPcRelativeStringPatch(load->GetDexFile(), string_index, info_high);
 [all...]
 | 
| code_generator_x86.cc | 232     const dex::StringIndex string_index = instruction_->AsLoadString()->GetStringIndex();  variable 233     __ movl(calling_convention.GetRegisterAt(0), Immediate(string_index.index_));
 [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) {
 558   int string_index = needed_chars - 1;
 559   buffer[string_index--] = '\0';
 562       buffer[string_index--] = '0';
 568       buffer[string_index--] = HexCharOfValue(current_bigit & 0xF);
 575     buffer[string_index--] = HexCharOfValue(most_significant_bigit & 0xF);
 
 | 
| /external/libusb/libusb/os/ | 
| haiku_usb_raw.h | 138 		uint32 string_index;  member in struct:__anon24409::__anon24420 
 | 
| windows_winusb.h | 197 	uint8_t string_index[3]; // man, prod, ser  member in struct:hid_device_priv 
 | 
| /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);
 283   size_t string_index;  local
 284   elf_getshdrstrndx(elf, &string_index);
 289     std::string name = elf_strptr(elf, string_index, section_header->sh_name);
 582   size_t string_index;  local
 583   elf_getshdrstrndx(elf, &string_index);
 585   std::string name = elf_strptr(elf, string_index, section_header->sh_name);
 [all...]
 | 
| /external/clang/test/CodeGenCXX/ | 
| catch-undef-behavior.cpp | 340 char string_index(int n) {  function 
 | 
| /external/pdfium/third_party/freetype/src/cff/ | 
| cffload.c | 1449  CFF_IndexRec string_index;  local [all...]
 | 
| /external/freetype/src/cff/ | 
| cffload.c | 2101  CFF_IndexRec string_index;  local [all...]
 | 
| /external/libusb/examples/ | 
| xusb.c | 810 	uint8_t string_index[3];	// indexes of the string descriptors  local 849 	string_index[0] = dev_desc.iManufacturer;
 850 	string_index[1] = dev_desc.iProduct;
 851 	string_index[2] = dev_desc.iSerialNumber;
 925 		if (string_index[i] == 0) {
 928 		if (libusb_get_string_descriptor_ascii(handle, string_index[i], (unsigned char*)string, 128) >= 0) {
 929 			printf("   String (0x%02X): \"%s\"\n", string_index[i], string);
 [all...]
 | 
| /art/dexlayout/ | 
| dex_ir.cc | 270       const uint32_t string_index = static_cast<uint32_t>(ReadVarWidth(data, length, false));  local 271       item->SetStringId(GetStringId(string_index));
 275       const uint32_t string_index = static_cast<uint32_t>(ReadVarWidth(data, length, false));  local
 276       item->SetTypeId(GetTypeId(string_index));
 [all...]
 | 
| /build/make/tools/ijar/ | 
| classfile.cc | 234   explicit Constant_String(u2 string_index) : 236       string_index_(string_index) {}
 1406  u2 string_index = get_u2be(p);  local
 [all...]
 | 
| /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/ | 
| stringobject.c | 1768 string_index(PyStringObject *self, PyObject *args)  function [all...]
 | 
| /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/ | 
| stringobject.c | 1751 string_index(PyStringObject *self, PyObject *args)  function [all...]
 | 
| /external/python/cpython2/Objects/ | 
| stringobject.c | 1768 string_index(PyStringObject *self, PyObject *args)  function [all...]
 | 
| /external/owasp/sanitizer/tools/findbugs/lib/ | 
| bcel.jar |  | 
| /prebuilts/tools/common/m2/repository/com/google/code/findbugs/bcel/2.0.1/ | 
| bcel-2.0.1.jar |  | 
| /prebuilts/tools/common/m2/repository/com/google/code/findbugs/bcel-findbugs/6.0/ | 
| bcel-findbugs-6.0.jar |  | 
| /prebuilts/tools/common/m2/repository/biz/aQute/bnd/1.50.0/ | 
| bnd-1.50.0.jar |  |