Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Dgraph_test.cc41 HInstruction* got = new (allocator) HGoto(); in createGotoBlock() local
292 HInstruction* got = block->GetLastInstruction(); in TEST() local
Dcode_generator_arm64.cc3577 void InstructionCodeGeneratorARM64::HandleGoto(HInstruction* got, HBasicBlock* successor) { in HandleGoto()
3596 void LocationsBuilderARM64::VisitGoto(HGoto* got) { in VisitGoto()
3600 void InstructionCodeGeneratorARM64::VisitGoto(HGoto* got) { in VisitGoto()
Dcode_generator_x86_64.cc1448 void InstructionCodeGeneratorX86_64::HandleGoto(HInstruction* got, HBasicBlock* successor) { in HandleGoto()
1468 void LocationsBuilderX86_64::VisitGoto(HGoto* got) { in VisitGoto()
1472 void InstructionCodeGeneratorX86_64::VisitGoto(HGoto* got) { in VisitGoto()
Dcode_generator_mips64.cc3431 void InstructionCodeGeneratorMIPS64::HandleGoto(HInstruction* got, HBasicBlock* successor) { in HandleGoto()
3450 void LocationsBuilderMIPS64::VisitGoto(HGoto* got) { in VisitGoto()
3454 void InstructionCodeGeneratorMIPS64::VisitGoto(HGoto* got) { in VisitGoto()
Dcode_generator_x86.cc1351 void InstructionCodeGeneratorX86::HandleGoto(HInstruction* got, HBasicBlock* successor) { in HandleGoto()
1371 void LocationsBuilderX86::VisitGoto(HGoto* got) { in VisitGoto()
1375 void InstructionCodeGeneratorX86::VisitGoto(HGoto* got) { in VisitGoto()
Dcode_generator_arm_vixl.cc2928 void InstructionCodeGeneratorARMVIXL::HandleGoto(HInstruction* got, HBasicBlock* successor) { in HandleGoto()
2947 void LocationsBuilderARMVIXL::VisitGoto(HGoto* got) { in VisitGoto()
2951 void InstructionCodeGeneratorARMVIXL::VisitGoto(HGoto* got) { in VisitGoto()
Dcode_generator_mips.cc3860 void LocationsBuilderMIPS::VisitGoto(HGoto* got) { in VisitGoto()
3864 void InstructionCodeGeneratorMIPS::HandleGoto(HInstruction* got, HBasicBlock* successor) { in HandleGoto()
3883 void InstructionCodeGeneratorMIPS::VisitGoto(HGoto* got) { in VisitGoto()
/art/test/959-invoke-polymorphic-accessors/src/
DMain.java154 final char got; in getChar() local
197 final short got = (v == null) ? (short)m.invokeExact() : (short)m.invokeExact(v); in getShort() local
235 final int got = (v == null) ? (int)m.invokeExact() : (int)m.invokeExact(v); in getInt() local
273 final long got = (v == null) ? (long)m.invokeExact() : (long)m.invokeExact(v); in getLong() local
311 final float got = (v == null) ? (float)m.invokeExact() : (float)m.invokeExact(v); in getFloat() local
350 final double got = (v == null) ? (double)m.invokeExact() : (double)m.invokeExact(v); in getDouble() local
390 final String got = (v == null) ? (String)m.invokeExact() : (String)m.invokeExact(v); in getString() local