Home
last modified time | relevance | path

Searched refs:getFoo (Results 1 – 8 of 8) sorted by relevance

/external/clang/test/SemaCXX/
Dwarn-enum-compare.cpp22 Foo getFoo();
112 …while (getFoo() == y); // expected-warning {{comparison of two values with different enumeration … in test()
113 …while (getFoo() != y); // expected-warning {{comparison of two values with different enumeration … in test()
114 …while (getFoo() >= y); // expected-warning {{comparison of two values with different enumeration … in test()
115 …while (getFoo() <= y); // expected-warning {{comparison of two values with different enumeration … in test()
116 …while (getFoo() > y); // expected-warning {{comparison of two values with different enumeration t… in test()
117 …while (getFoo() < y); // expected-warning {{comparison of two values with different enumeration t… in test()
119 …while (getFoo() == BarD); // expected-warning {{comparison of two values with different enumerati… in test()
120 …while (getFoo() != BarD); // expected-warning {{comparison of two values with different enumerati… in test()
121 …while (getFoo() >= BarD); // expected-warning {{comparison of two values with different enumerati… in test()
[all …]
Dwarn-weak-vtables.cpp38 virtual void * getFoo() const = 0;
44 void * getFoo() const;
49 void * getFoo() const { return 0; } in getFoo() function in VeryDerived
55 p.getFoo(); in uses()
56 d.getFoo(); in uses()
57 vd.getFoo(); in uses()
Dabstract.cpp92 virtual foo *getFoo() = 0;
97 virtual bar *getFoo();
Dwarn-thread-safety-analysis.cpp955 Foo &getFoo();
956 struct Bar { Foo &func () {return getFoo();} }; in func()
2165 Foo& getFoo() { return *f; } in getFoo() function in MoreLockExpressions::Bar
2182 bar.getFoo().mu_.Lock(); in test()
2183 bar.getFoo().a = 0; in test()
2184 bar.getFoo().mu_.Unlock(); in test()
2186 (bar.getFoo().mu_).Lock(); // test parenthesis in test()
2187 bar.getFoo().a = 0; in test()
2188 (bar.getFoo().mu_).Unlock(); in test()
2214 bar.getFoo().mu_.Lock(); in test()
[all …]
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
DContentHandlerTest.java39 assertEquals("Foo", ((Foo) content).getFoo()); in test_getContent()
43 assertEquals("FooSub", ((Foo) content).getFoo()); in test_getContent()
67 public String getFoo() { in getFoo() method in Foo
73 public String getFoo() { in getFoo() method in FooSub
/external/clang/test/Modules/Inputs/
Dnamespaces-left.h45 Foo *getFoo();
52 Foo *getFoo();
/external/clang/test/Modules/
Dnamespaces.cpp59 …N11::consumeFoo(N11::getFoo()); // expected-error{{cannot initialize a parameter of type 'N11::<an… in testAnonymousNotMerged()
60 …N12::consumeFoo(N12::getFoo()); // expected-error{{cannot initialize a parameter of type 'N12::<an… in testAnonymousNotMerged()
/external/javassist/src/test/test/javassist/convert/
DArrayAccessReplaceTest.java136 assertEquals(new Foo(i), simple.getFoo(i)); in testFoo()
273 public Foo getFoo(int pos); in getFoo() method
317 public Foo getFoo(int pos) { in getFoo() method in ArrayAccessReplaceTest.Simple