HomeSort by relevance Sort by last modified time
    Searched refs:getFoo (Results 1 - 11 of 11) sorted by null

  /external/clang/test/SemaCXX/
warn-weak-vtables.cpp 39 virtual void * getFoo() const = 0;
45 void * getFoo() const;
50 void * getFoo() const { return 0; }
56 p.getFoo();
57 d.getFoo();
58 vd.getFoo();
warn-enum-compare.cpp 22 Foo getFoo();
112 while (getFoo() == y); // expected-warning {{comparison of two values with different enumeration types ('Foo' and 'Bar')}}
113 while (getFoo() != y); // expected-warning {{comparison of two values with different enumeration types ('Foo' and 'Bar')}}
114 while (getFoo() >= y); // expected-warning {{comparison of two values with different enumeration types ('Foo' and 'Bar')}}
115 while (getFoo() <= y); // expected-warning {{comparison of two values with different enumeration types ('Foo' and 'Bar')}}
116 while (getFoo() > y); // expected-warning {{comparison of two values with different enumeration types ('Foo' and 'Bar')}}
117 while (getFoo() < y); // expected-warning {{comparison of two values with different enumeration types ('Foo' and 'Bar')}}
119 while (getFoo() == BarD); // expected-warning {{comparison of two values with different enumeration types ('Foo' and 'Bar')}}
120 while (getFoo() != BarD); // expected-warning {{comparison of two values with different enumeration types ('Foo' and 'Bar')}}
121 while (getFoo() >= BarD); // expected-warning {{comparison of two values with different enumeration types ('Foo (…)
    [all...]
abstract.cpp 92 virtual foo *getFoo() = 0;
97 virtual bar *getFoo();
warn-thread-safety-analysis.cpp 1002 Foo &getFoo();
1003 struct Bar { Foo &func () {return getFoo();} };
    [all...]
  /external/clang/test/Modules/Inputs/
namespaces-left.h 65 Foo *getFoo();
72 Foo *getFoo();
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
ContentHandlerTest.java 39 assertEquals("Foo", ((Foo) content).getFoo());
43 assertEquals("FooSub", ((Foo) content).getFoo());
67 public String getFoo() {
73 public String getFoo() {
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/net/
ContentHandlerTest.java 39 assertEquals("Foo", ((Foo) content).getFoo());
43 assertEquals("FooSub", ((Foo) content).getFoo());
67 public String getFoo() {
73 public String getFoo() {
  /sdk/testapps/customPropAnimTest/src/com/android/custompropertyanimation/
MyView.java 19 public float getFoo() {
20 System.out.println("getFoo() returning " + mFoo);
  /external/clang/test/Modules/
namespaces.cpp 75 N11::consumeFoo(N11::getFoo()); // expected-error{{cannot initialize a parameter of type 'N11::(anonymous namespace)::Foo *' with an rvalue of type 'N11::(anonymous namespace)::Foo *'}}
76 N12::consumeFoo(N12::getFoo()); // expected-error{{cannot initialize a parameter of type 'N12::(anonymous namespace)::Foo *' with an rvalue of type 'N12::(anonymous namespace)::Foo *'}}
  /external/javassist/src/test/test/javassist/convert/
ArrayAccessReplaceTest.java 136 assertEquals(new Foo(i), simple.getFoo(i));
273 public Foo getFoo(int pos);
317 public Foo getFoo(int pos) {
  /art/test/107-int-math2/src/
Main.java 784 int getFoo()
799 int z = foo.getFoo();
801 z += foo123.getFoo();
803 return foo.getFoo();
    [all...]

Completed in 356 milliseconds