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

  /external/clang/test/SemaCXX/
warn-weak-vtables.cpp 38 virtual void * getFoo() const = 0;
44 void * getFoo() const;
49 void * getFoo() const { return 0; }
55 p.getFoo();
56 d.getFoo();
57 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 955 Foo &getFoo();
956 struct Bar { Foo &func () {return getFoo();} };
    [all...]
  /external/clang/test/Modules/Inputs/
namespaces-left.h 45 Foo *getFoo();
52 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() {
  /external/clang/test/Modules/
namespaces.cpp 59 N11::consumeFoo(N11::getFoo()); // expected-error{{cannot initialize a parameter of type 'N11::<anonymous>::Foo *' with an rvalue of type 'N11::<anonymous>::Foo *'}}
60 N12::consumeFoo(N12::getFoo()); // expected-error{{cannot initialize a parameter of type 'N12::<anonymous>::Foo *' with an rvalue of type 'N12::<anonymous>::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) {

Completed in 3880 milliseconds