Searched refs:inner (Results 1 - 7 of 7) sorted by relevance

/art/test/110-field-access/src/
H A DMain.java70 Inner inner = new Inner();
72 result = inner.publicInnerIntVal;
78 Inner inner = new Inner();
80 result = inner.protectedInnerIntVal;
86 Inner inner = new Inner();
88 result = inner.privateInnerIntVal;
94 Inner inner = new Inner();
96 result = inner.packageInnerIntVal;
/art/compiler/optimizing/
H A Dlicm.cc85 // Post order visit to visit inner loops before outer loops.
98 HBasicBlock* inner = it_loop.Current(); local
99 DCHECK(inner->IsInLoop());
100 if (inner->GetLoopInformation() != loop_info) {
101 // Thanks to post order visit, inner loops were already visited.
102 DCHECK(visited.IsBitSet(inner->GetBlockId()));
105 visited.SetBit(inner->GetBlockId());
111 bool found_first_non_hoisted_throwing_instruction_in_loop = !inner->IsLoopHeader();
112 for (HInstructionIterator inst_it(inner->GetInstructions());
H A Dssa_liveness_analysis.cc39 static bool IsInnerLoop(HLoopInformation* outer, HLoopInformation* inner) { argument
40 return (inner != outer)
41 && (inner != nullptr)
43 && inner->IsIn(*outer);
/art/test/093-serialization/src/
H A DMain.java50 Inner inner = new Inner(0xCAFEF00D);
51 objStream.writeObject(inner);
64 Inner inner;
67 inner = (Inner) objStream.readObject();
76 inner.check();
/art/test/031-class-attributes/src/
H A DClassAttrs.java105 InnerNamed inner = new InnerNamed();
106 inner.showMe();
/art/runtime/base/
H A Dtiming_logger_test.cc144 TimingLogger::ScopedTiming inner(innersplit, &logger);
/art/runtime/
H A Dclass_linker_test.cc675 mirror::Class* inner = class_linker_->FindClass(soa.Self(), "LNested$Inner;", class_loader); local
676 ASSERT_TRUE(inner != nullptr);
677 EXPECT_EQ(0U, inner->NumVirtualMethods());
678 EXPECT_EQ(1U, inner->NumDirectMethods());

Completed in 283 milliseconds