/art/tools/ahat/src/ |
D | Value.java | 49 DocString link = new DocString(); in renderInstance() local 51 link.append("class "); in renderInstance() 54 link.append(inst.toString()); in renderInstance() 57 formatted.appendLink(objTarget, link); in renderInstance()
|
D | Menu.java | 24 DocString.link(DocString.uri("/"), DocString.text("overview"))
|
D | SiteHandler.java | 69 return DocString.link( in handle() 99 DocString.link( in handle()
|
D | DocString.java | 53 public static DocString link(URI uri, DocString content) { in link() method in DocString
|
D | ObjectHandler.java | 239 return DocString.link(DocString.uri("rooted"), DocString.text("ROOT")); in printDominatorPath()
|
/art/runtime/ |
D | handle_scope_test.cc | 28 explicit NoThreadStackHandleScope(HandleScope* link) : HandleScope(link, kNumReferences) { in NoThreadStackHandleScope() argument
|
D | handle_scope.h | 91 static HandleScope* Create(void* storage, HandleScope* link, uint32_t num_references) in Create() argument 93 return new (storage) HandleScope(link, num_references); in Create() 108 HandleScope(HandleScope* link, uint32_t num_references) : in HandleScope() argument 109 link_(link), number_of_references_(num_references) { in HandleScope()
|
D | stack.h | 124 static ShadowFrame* CreateDeoptimizedFrame(uint32_t num_vregs, ShadowFrame* link, in CreateDeoptimizedFrame() argument 127 return CreateShadowFrameImpl(num_vregs, link, method, dex_pc, memory); in CreateDeoptimizedFrame() 139 #define CREATE_SHADOW_FRAME(num_vregs, link, method, dex_pc) ({ \ argument 143 ShadowFrame::CreateShadowFrameImpl((num_vregs), (link), (method), (dex_pc), \ 399 ShadowFrame* link, in CreateShadowFrameImpl() argument 403 return new (memory) ShadowFrame(num_vregs, link, method, dex_pc, true); in CreateShadowFrameImpl() 415 ShadowFrame(uint32_t num_vregs, ShadowFrame* link, ArtMethod* method, in ShadowFrame() argument 417 : link_(link), method_(method), result_register_(nullptr), dex_pc_ptr_(nullptr), in ShadowFrame()
|
D | thread.cc | 172 DeoptimizationContextRecord* link) in DeoptimizationContextRecord() argument 177 link_(link) {} in DeoptimizationContextRecord() 216 StackedShadowFrameRecord* link) in StackedShadowFrameRecord() argument 219 link_(link) {} in StackedShadowFrameRecord()
|
/art/libart_fake/ |
D | README.md | 4 A fake libart made to satisfy some misbehaving apps that will attempt to link
|
/art/compiler/ |
D | elf_builder.h | 95 const Section* link, in Section() argument 104 link_(link), in Section() 245 const Section* link, in CachedSection() argument 249 : Section(owner, name, type, flags, link, info, align, entsize), cache_() { } in CachedSection() 407 const Section* link, in AbiflagsSection() argument 413 : Section(owner, name, type, flags, link, info, align, entsize) { in AbiflagsSection()
|
/art/tools/ahat/ |
D | README.txt | 28 * Include a link to /objects in the overview and menu?
|
/art/compiler/utils/arm/ |
D | assembler_arm32.h | 331 void EmitType5(Condition cond, int offset, bool link); 398 void EmitBranch(Condition cond, Label* label, bool link);
|
D | assembler_arm32.cc | 593 void Arm32Assembler::EmitType5(Condition cond, int offset, bool link) { in EmitType5() argument 597 (link ? 1 : 0) << kLinkShift; in EmitType5() 709 void Arm32Assembler::EmitBranch(Condition cond, Label* label, bool link) { in EmitBranch() argument 711 EmitType5(cond, label->Position() - buffer_.Size(), link); in EmitBranch() 715 EmitType5(cond, label->position_, link); in EmitBranch()
|
D | assembler_thumb2.h | 766 void EmitBranch(Condition cond, Label* label, bool link, bool x);
|
D | assembler_thumb2.cc | 2546 void Thumb2Assembler::EmitBranch(Condition cond, Label* label, bool link, bool x) { in EmitBranch() argument 2551 if (link) { in EmitBranch()
|
/art/runtime/arch/arm/ |
D | quick_entrypoints_arm.S | 507 str lr, [sp, r10] @ Store link register per the compiler ABI 1464 mov r2, r0 @ link register saved by instrumentation 1465 mov lr, r1 @ r1 is holding link register if we're to bounce to deoptimize
|
/art/test/083-compiler-regressions/src/ |
D | Main.java | 9686 private LVNTests link = null; field in LVNTests 9690 link = l; in setLink() 9694 LVNTests link1 = lhs.link; in causeNPE1() 9695 rhs.link = null; in causeNPE1() 9696 LVNTests link2 = lhs.link; in causeNPE1() 9704 t.link = new LVNTests(); in testNPE1() 9713 LVNTests link1 = lhs.link; in causeNPE2() 9715 LVNTests link2 = lhs.link; in causeNPE2() 9723 t.link = new LVNTests(); in testNPE2()
|
/art/ |
D | NOTICE | 58 separable from, or merely link (or bind by name) to the interfaces of,
|
/art/test/ |
D | Android.run-test.mk | 430 087-gc-after-link \
|
/art/runtime/arch/mips64/ |
D | quick_entrypoints_mips64.S | 1849 move $ra, $zero # link register is to here, so clobber with 0 for later checks
|