Searched defs:parent (Results 1 - 7 of 7) sorted by relevance

/art/test/068-classloader/src/
H A DFancyLoader.java52 public FancyLoader(ClassLoader parent) { argument
53 super(parent);
56 mDexClass = parent.loadClass("dalvik.system.DexFile");
217 * 2. Invoke the loadClass method on the parent class loader. If
218 * the parent loader is null the class loader built-in to the
222 * parent's loadClass() method, but we passed our parent to the
/art/test/086-null-super/src/
H A DMain.java60 public BrokenDexLoader(ClassLoader parent) { argument
61 super(parent);
/art/test/087-gc-after-link/src/
H A DMain.java60 public BrokenDexLoader(ClassLoader parent) { argument
61 super(parent);
/art/runtime/
H A Dprofiler.h52 StackTrieNode* parent) :
53 parent_(parent), method_(method), dex_pc_(dex_pc),
51 StackTrieNode(MethodReference method, uint32_t dex_pc, uint32_t method_size, StackTrieNode* parent) argument
H A Ddebugger.cc2073 mirror::ArtField* f = c->FindInstanceField("parent", "Ljava/lang/ThreadGroup;");
2075 mirror::Object* parent = f->GetObject(thread_group); local
2078 JDWP::ObjectId parent_group_id = gRegistry->Add(parent);
/art/compiler/optimizing/
H A Dregister_allocator.cc567 LiveInterval* parent = interval->GetParent(); local
569 // An instruction gets a spill slot for its entire lifetime. If the parent
571 if (parent->HasSpillSlot()) {
575 HInstruction* defined_by = parent->GetDefinedBy();
578 parent->SetSpillSlot(codegen_->GetStackSlotOfParameter(defined_by->AsParameterValue()));
593 if (NeedTwoSpillSlot(parent->GetType())) {
594 AllocateTwoSpillSlots(parent, end);
596 AllocateOneSpillSlot(parent, end);
600 void RegisterAllocator::AllocateTwoSpillSlots(LiveInterval* parent, size_t end) { argument
608 if (spill_slots_.Get(slot) < parent
629 AllocateOneSpillSlot(LiveInterval* parent, size_t end) argument
[all...]
/art/compiler/llvm/
H A Dgbc_expander.cc1264 llvm::Function* parent = irb_.GetInsertBlock()->getParent(); local
1265 llvm::BasicBlock* eq_neg_one = llvm::BasicBlock::Create(context_, "", parent);
1266 llvm::BasicBlock* ne_neg_one = llvm::BasicBlock::Create(context_, "", parent);
1268 llvm::BasicBlock::Create(context_, "", parent);

Completed in 208 milliseconds