OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:getFoo
(Results
1 - 12
of
12
) sorted by null
/external/clang/test/SemaCXX/
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
...]
warn-weak-vtables.cpp
38
virtual void *
getFoo
() const = 0;
44
void *
getFoo
() const;
49
void *
getFoo
() const { return 0; }
abstract.cpp
92
virtual foo *
getFoo
() = 0;
97
virtual bar *
getFoo
();
warn-thread-safety-analysis.cpp
1044
Foo &
getFoo
();
1045
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/compiler-rt/test/asan/TestCases/Posix/
new_array_cookie_with_new_from_class.cc
26
Foo *
getFoo
(size_t n) {
31
Foo *foo =
getFoo
(10);
/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
789
int
getFoo
()
804
int z = foo.
getFoo
();
806
z += foo123.
getFoo
();
808
return foo.
getFoo
();
[
all
...]
Completed in 1537 milliseconds