Home
last modified time | relevance | path

Searched defs:got (Results 1 – 6 of 6) sorted by relevance

/art/compiler/optimizing/
Dgraph_test.cc51 HInstruction* got = new (GetAllocator()) HGoto(); in CreateGotoBlock() local
281 HInstruction* got = block->GetLastInstruction(); in TEST_F() local
Dcode_generator_arm64.cc3671 void InstructionCodeGeneratorARM64::HandleGoto(HInstruction* got, HBasicBlock* successor) { in HandleGoto()
3695 void LocationsBuilderARM64::VisitGoto(HGoto* got) { in VisitGoto()
3699 void InstructionCodeGeneratorARM64::VisitGoto(HGoto* got) { in VisitGoto()
Dcode_generator_x86_64.cc1965 void InstructionCodeGeneratorX86_64::HandleGoto(HInstruction* got, HBasicBlock* successor) { in HandleGoto()
1989 void LocationsBuilderX86_64::VisitGoto(HGoto* got) { in VisitGoto()
1993 void InstructionCodeGeneratorX86_64::VisitGoto(HGoto* got) { in VisitGoto()
Dcode_generator_x86.cc1821 void InstructionCodeGeneratorX86::HandleGoto(HInstruction* got, HBasicBlock* successor) { in HandleGoto()
1845 void LocationsBuilderX86::VisitGoto(HGoto* got) { in VisitGoto()
1849 void InstructionCodeGeneratorX86::VisitGoto(HGoto* got) { in VisitGoto()
Dcode_generator_arm_vixl.cc2780 void InstructionCodeGeneratorARMVIXL::HandleGoto(HInstruction* got, HBasicBlock* successor) { in HandleGoto()
2804 void LocationsBuilderARMVIXL::VisitGoto(HGoto* got) { in VisitGoto()
2808 void InstructionCodeGeneratorARMVIXL::VisitGoto(HGoto* got) { in VisitGoto()
/art/test/959-invoke-polymorphic-accessors/src/
DMain.java171 final char got; in getChar() local
214 final short got = (v == null) ? (short) m.invokeExact() : (short) m.invokeExact(v); in getShort() local
252 final int got = (v == null) ? (int) m.invokeExact() : (int) m.invokeExact(v); in getInt() local
290 final long got = (v == null) ? (long) m.invokeExact() : (long) m.invokeExact(v); in getLong() local
328 final float got = (v == null) ? (float) m.invokeExact() : (float) m.invokeExact(v); in getFloat() local
367 … final double got = (v == null) ? (double) m.invokeExact() : (double) m.invokeExact(v); in getDouble() local
407 … final String got = (v == null) ? (String) m.invokeExact() : (String) m.invokeExact(v); in getString() local