Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Dgraph_test.cc50 HInstruction* got = new (GetAllocator()) HGoto(); in CreateGotoBlock() local
280 HInstruction* got = block->GetLastInstruction(); in TEST_F() local
Dcode_generator_arm64.cc3094 void InstructionCodeGeneratorARM64::HandleGoto(HInstruction* got, HBasicBlock* successor) { in HandleGoto()
3126 void LocationsBuilderARM64::VisitGoto(HGoto* got) { in VisitGoto()
3130 void InstructionCodeGeneratorARM64::VisitGoto(HGoto* got) { in VisitGoto()
Dcode_generator_x86_64.cc1533 void InstructionCodeGeneratorX86_64::HandleGoto(HInstruction* got, HBasicBlock* successor) { in HandleGoto()
1561 void LocationsBuilderX86_64::VisitGoto(HGoto* got) { in VisitGoto()
1565 void InstructionCodeGeneratorX86_64::VisitGoto(HGoto* got) { in VisitGoto()
Dcode_generator_mips64.cc3688 void InstructionCodeGeneratorMIPS64::HandleGoto(HInstruction* got, HBasicBlock* successor) { in HandleGoto()
3716 void LocationsBuilderMIPS64::VisitGoto(HGoto* got) { in VisitGoto()
3720 void InstructionCodeGeneratorMIPS64::VisitGoto(HGoto* got) { in VisitGoto()
Dcode_generator_x86.cc1374 void InstructionCodeGeneratorX86::HandleGoto(HInstruction* got, HBasicBlock* successor) { in HandleGoto()
1403 void LocationsBuilderX86::VisitGoto(HGoto* got) { in VisitGoto()
1407 void InstructionCodeGeneratorX86::VisitGoto(HGoto* got) { in VisitGoto()
Dcode_generator_arm_vixl.cc2406 void InstructionCodeGeneratorARMVIXL::HandleGoto(HInstruction* got, HBasicBlock* successor) { in HandleGoto()
2439 void LocationsBuilderARMVIXL::VisitGoto(HGoto* got) { in VisitGoto()
2443 void InstructionCodeGeneratorARMVIXL::VisitGoto(HGoto* got) { in VisitGoto()
Dcode_generator_mips.cc4357 void LocationsBuilderMIPS::VisitGoto(HGoto* got) { in VisitGoto()
4361 void InstructionCodeGeneratorMIPS::HandleGoto(HInstruction* got, HBasicBlock* successor) { in HandleGoto()
4389 void InstructionCodeGeneratorMIPS::VisitGoto(HGoto* got) { in VisitGoto()
/art/test/959-invoke-polymorphic-accessors/src/
DMain.java169 final char got; in getChar() local
212 final short got = (v == null) ? (short) m.invokeExact() : (short) m.invokeExact(v); in getShort() local
250 final int got = (v == null) ? (int) m.invokeExact() : (int) m.invokeExact(v); in getInt() local
288 final long got = (v == null) ? (long) m.invokeExact() : (long) m.invokeExact(v); in getLong() local
326 final float got = (v == null) ? (float) m.invokeExact() : (float) m.invokeExact(v); in getFloat() local
365 … final double got = (v == null) ? (double) m.invokeExact() : (double) m.invokeExact(v); in getDouble() local
405 … final String got = (v == null) ? (String) m.invokeExact() : (String) m.invokeExact(v); in getString() local