Searched refs:At (Results 1 - 25 of 43) sorted by relevance

12

/art/runtime/mirror/
H A Dfield.cc64 return &declaring_class->GetSFieldsPtr()->At(0);
67 return &declaring_class->GetSFieldsPtr()->At(1);
H A Dclass-inl.h182 return &GetDirectMethodsSliceUnchecked(pointer_size).At(i);
187 return &GetDirectMethodsSlice(pointer_size).At(i);
230 return &GetVirtualMethodsSliceUnchecked(pointer_size).At(i);
611 return &GetSFieldsPtr()->At(i);
615 return &GetIFieldsPtr()->At(i);
/art/runtime/
H A Dproxy_test.cc177 ArtField* field = &static_fields->At(0);
186 field = &static_fields->At(1);
224 EXPECT_EQ(static_fields0->At(0).GetDeclaringClass(), proxyClass0.Get());
225 EXPECT_EQ(static_fields0->At(1).GetDeclaringClass(), proxyClass0.Get());
226 EXPECT_EQ(static_fields1->At(0).GetDeclaringClass(), proxyClass1.Get());
227 EXPECT_EQ(static_fields1->At(1).GetDeclaringClass(), proxyClass1.Get());
230 hs.NewHandle(mirror::Field::CreateFromArtField(soa.Self(), &static_fields0->At(0), true));
232 hs.NewHandle(mirror::Field::CreateFromArtField(soa.Self(), &static_fields0->At(1), true));
234 hs.NewHandle(mirror::Field::CreateFromArtField(soa.Self(), &static_fields1->At(0), true));
236 hs.NewHandle(mirror::Field::CreateFromArtField(soa.Self(), &static_fields1->At(
[all...]
H A Ddex_instruction_visitor.h33 const Instruction* inst = Instruction::At(&code[i]);
H A Dimage.cc155 visitor->Visit(&array->At(i, sizeof(ArtField)));
170 visitor->Visit(&array->At(i, method_size, method_alignment));
H A Dclass_linker_test.cc889 EXPECT_STREQ("value", c->GetIFieldsPtr()->At(0).GetName());
891 EXPECT_STREQ("value", c->GetIFieldsPtr()->At(0).GetName());
893 EXPECT_STREQ("value", c->GetIFieldsPtr()->At(0).GetName());
895 EXPECT_STREQ("value", c->GetIFieldsPtr()->At(0).GetName());
897 EXPECT_STREQ("value", c->GetIFieldsPtr()->At(0).GetName());
899 EXPECT_STREQ("value", c->GetIFieldsPtr()->At(0).GetName());
901 EXPECT_STREQ("value", c->GetIFieldsPtr()->At(0).GetName());
903 EXPECT_STREQ("value", c->GetIFieldsPtr()->At(0).GetName());
H A Ddex_instruction.h201 static const Instruction* At(const uint16_t* code) { function in class:art::Instruction
208 return At(reinterpret_cast<const uint16_t*>(this) + offset);
H A Dutils.cc256 // At this point, 'c' is a string of the form "fully/qualified/Type;"
1491 const Instruction* inst = Instruction::At(code_item->insns_);
1525 const Instruction* inst = Instruction::At(code_item->insns_);
1613 const Instruction* inst = Instruction::At(code_item->insns_);
1744 const Instruction* inst = Instruction::At(&code_item->insns_[dex_pc]);
H A Dart_method.cc226 Instruction::At(&code_item->insns_[found_dex_pc]);
/art/runtime/base/
H A Darray_slice.h81 array_ = &array->At(start_offset, element_size_, alignment);
85 T& At(size_t index) { function in class:art::ArraySlice
90 const T& At(size_t index) const { function in class:art::ArraySlice
96 return At(index);
100 return At(index);
H A Dlength_prefixed_array.h36 T& At(size_t index, size_t element_size = sizeof(T), size_t alignment = alignof(T)) { function in class:art::LengthPrefixedArray
41 const T& At(size_t index, size_t element_size = sizeof(T), size_t alignment = alignof(T)) const { function in class:art::LengthPrefixedArray
/art/runtime/interpreter/mterp/
H A Dmterp.cc157 const Instruction* inst = Instruction::At(dex_pc_ptr);
166 const Instruction* inst = Instruction::At(dex_pc_ptr);
175 const Instruction* inst = Instruction::At(dex_pc_ptr);
184 const Instruction* inst = Instruction::At(dex_pc_ptr);
193 const Instruction* inst = Instruction::At(dex_pc_ptr);
202 const Instruction* inst = Instruction::At(dex_pc_ptr);
211 const Instruction* inst = Instruction::At(dex_pc_ptr);
220 const Instruction* inst = Instruction::At(dex_pc_ptr);
229 const Instruction* inst = Instruction::At(dex_pc_ptr);
238 const Instruction* inst = Instruction::At(dex_pc_pt
[all...]
/art/compiler/utils/mips64/
H A Dconstants_mips64.h76 // Use the At(pc) function to create references to Instr.
77 static Instr* At(uintptr_t pc) { return reinterpret_cast<Instr*>(pc); } function in class:art::mips64::Instr
/art/compiler/dex/
H A Dverified_method.cc91 const Instruction* inst = Instruction::At(insns);
92 const Instruction* end = Instruction::At(insns + code_item->insns_size_in_code_units_);
137 const Instruction* inst = Instruction::At(insns);
138 const Instruction* end = Instruction::At(insns + code_item->insns_size_in_code_units_);
214 const Instruction* inst = Instruction::At(code_item->insns_);
215 const Instruction* end = Instruction::At(code_item->insns_ +
H A Ddex_to_dex_compiler.cc117 Instruction* inst = const_cast<Instruction*>(Instruction::At(insns));
/art/compiler/utils/mips/
H A Dconstants_mips.h100 // Use the At(pc) function to create references to Instr.
101 static Instr* At(uintptr_t pc) { return reinterpret_cast<Instr*>(pc); } function in class:art::mips::Instr
/art/compiler/utils/x86/
H A Dconstants_x86.h117 // Use the At(pc) function to create references to Instr.
118 static Instr* At(uintptr_t pc) { return reinterpret_cast<Instr*>(pc); } function in class:art::x86::Instr
/art/compiler/utils/x86_64/
H A Dconstants_x86_64.h126 // Use the At(pc) function to create references to Instr.
127 static Instr* At(uintptr_t pc) { return reinterpret_cast<Instr*>(pc); } function in class:art::x86_64::Instr
/art/runtime/jit/
H A Dprofiling_info.cc62 const Instruction& instruction = *Instruction::At(code_ptr);
/art/runtime/quick/
H A Dinline_method_analyser.cc67 instruction_(Instruction::At(code_item->insns_)),
304 for (const Instruction* instruction = Instruction::At(code_item->insns_);
323 DCHECK_EQ(Instruction::At(target_method->GetCodeItem()->insns_)->Opcode(),
467 const Instruction* instruction = Instruction::At(code_item->insns_);
540 const Instruction* return_instruction = Instruction::At(code_item->insns_);
563 const Instruction* instruction = Instruction::At(code_item->insns_);
598 const Instruction* instruction = Instruction::At(code_item->insns_);
663 const Instruction* instruction = Instruction::At(code_item->insns_);
/art/compiler/optimizing/
H A Dbytecode_utils.h37 const Instruction& CurrentInstruction() const { return *Instruction::At(code_ptr_); }
/art/compiler/utils/arm/
H A Dconstants_arm.h232 // Instr* instr = Instr::At(ptr);
442 // Use the At(pc) function to create references to Instr.
443 static Instr* At(uintptr_t pc) { return reinterpret_cast<Instr*>(pc); } function in class:art::arm::Instr
/art/runtime/verifier/
H A Dmethod_verifier.cc579 const Instruction* inst = Instruction::At(code_item->insns_);
646 const Instruction* inst = Instruction::At(code_item_->insns_ + dex_pc);
686 const Instruction* inst = Instruction::At(code_item_->insns_ + dex_pc);
890 const Instruction* inst = Instruction::At(insns);
952 const Instruction* inst = Instruction::At(insns);
1019 const Instruction* inst = Instruction::At(code_item_->insns_ + dex_pc);
1064 const Instruction* inst = Instruction::At(code_item_->insns_);
1614 const Instruction* inst = Instruction::At(code_item_->insns_);
1881 insn_idx += Instruction::At(code_item_->insns_ + insn_idx)->SizeInCodeUnits()) {
1997 const Instruction* inst = Instruction::At(insn
[all...]
/art/runtime/entrypoints/
H A Dentrypoint_utils.cc218 reinterpret_cast<uintptr_t>(&virtual_methods.At(0))) / method_size;
/art/compiler/
H A Dcompiled_method.h78 return ArrayRef<const T>(&array->At(0), array->size());

Completed in 407 milliseconds

12