HomeSort by relevance Sort by last modified time
    Searched defs:Breakable (Results 1 - 2 of 2) sorted by null

  /art/test/993-breakpoints/src/art/
Test993.java 49 static interface Breakable {
60 public static class TestClass1 implements Breakable {
80 public static class TestClass2 implements Breakable {
96 public static class TestClass3 implements Breakable {
99 Breakable.super.breakit();
463 Method i_breakpoint_method = Breakable.class.getDeclaredMethod("iBreakpoint");
464 Method breakit_method = Breakable.class.getDeclaredMethod("breakit");
502 new InvokeDirect("Breakable::iBreakpoint", Breakable::iBreakpoint),
515 new InvokeDirect("((Breakable)new TestClass1()).breakit()"
    [all...]
  /external/v8/src/full-codegen/
full-codegen.h 84 class Breakable;
104 virtual Breakable* AsBreakable() { return nullptr; }
132 // A breakable statement such as a block.
133 class Breakable : public NestedStatement {
135 Breakable(FullCodeGenerator* codegen, BreakableStatement* statement)
139 Breakable* AsBreakable() override { return this; }
153 class Iteration : public Breakable {
156 : Breakable(codegen, statement) {
171 class NestedBlock : public Breakable {
174 : Breakable(codegen, block)
    [all...]

Completed in 302 milliseconds