Searched refs:Foo (Results 151 - 175 of 354) sorted by relevance

1234567891011>>

/external/clang/test/SemaCXX/
H A Dfunction-redecl.cpp61 struct Foo { struct in namespace:test1
67 void f(test1::Foo::Inner foo) const; // expected-note {{member declaration does not match because it is const qualified}}
70 using test1::Foo;
72 void Bar::f(Foo::Inner foo) { // expected-error {{out-of-line definition of 'f' does not match any declaration in 'Bar'}}
101 // Ensure we correct the redecl of Foo::isGood to Bar::Foo::isGood and not
102 // Foo::IsGood even though Foo::IsGood is technically a closer match since it
103 // already has a body. Also make sure Foo::beEvil is corrected to Foo
106 namespace Foo { namespace in namespace:redecl_typo
111 namespace Foo { namespace in namespace:redecl_typo::Bar
[all...]
H A Di-c-e-cxx.cpp27 class Foo { class in namespace:pr6206
32 const int Foo::kBar = 20;
35 char str[Foo::kBar];
H A Dwarn-unused-value.cpp20 struct Foo { struct in namespace:test1
22 bool operator==(const Foo& rhs) {
28 void b(Foo f1, Foo f2) {
/external/robolectric/src/test/java/com/xtremelabs/robolectric/bytecode/
H A DFoo.java6 public class Foo { class
7 public Foo(String s) { method in class:Foo
H A DShadowWranglerTest.java37 Foo foo = new Foo(name);
45 Foo foo = new Foo(name);
54 Foo foo = new Foo(name);
66 Foo foo = new Foo(name);
74 Foo foo1 = new Foo(nam
[all...]
/external/lldb/test/lang/cpp/namespace/
H A Dmain.cpp46 namespace Foo = A::B; // namespace alias
48 using Foo::myfunc; // using declaration
50 using namespace Foo; // using directive
60 int Foo::myfunc(int a)
77 return Foo::myfunc(12);
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DRemoteCallbackListTest.java19 RemoteCallbackList<Foo> fooRemoteCallbackList = new RemoteCallbackList<Foo>();
20 Foo callback = new Foo();
28 public static class Foo implements IInterface { class in class:RemoteCallbackListTest
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
H A DContentHandlerTest.java35 Class[] classes = { Foo.class, String.class, };
37 ((ContentHandlerImpl) handler).setContent(new Foo());
39 assertEquals("Foo", ((Foo) content).getFoo());
43 assertEquals("FooSub", ((Foo) content).getFoo());
46 ((ContentHandlerImpl) handler).setContent(new Foo());
66 class Foo { class
68 return "Foo";
72 class FooSub extends Foo {
/external/chromium_org/ppapi/generators/test_cgen_range/
H A Ddev_channel_interface.h72 * Foo() comment.
74 void (*Foo)(int32_t x); member in struct:TestDevToStable_1_2
88 void (*Foo)(int32_t x); member in struct:TestDevToStable_1_0
92 void (*Foo)(int32_t x); member in struct:TestDevToStable_1_1
/external/clang/test/CodeGenCXX/
H A Darray-value-initialize.cpp11 struct Foo { struct
12 Foo(void) : bar_(), dbar_(), sbar_() { function in struct:Foo
26 Foo a;
H A Ddebug-info-decl-nested.cpp13 class Foo;
21 OuterClass(const Foo *); // line 10
25 OuterClass::OuterClass(const Foo *meta) { } // line 13
H A Dmember-expressions.cpp24 enum E { Foo }; enumerator in enum:A::E
30 A::E e1 = a->Foo;
33 A::E e2 = g()->Foo;
36 A::E e3 = A().Foo;
/external/clang/test/SemaTemplate/
H A Dinstantiate-deeply.cpp26 class Foo { class
28 Foo() {} function in class:Foo
37 template class Foo<int>;
/external/protobuf/gtest/test/
H A Dgtest_list_tests_unittest_.cc46 TEST(Foo, Bar1) {
49 TEST(Foo, Bar2) {
52 TEST(Foo, DISABLED_Bar3) {
/external/chromium_org/mojo/python/tests/
H A Dbindings_constants_unittest.py31 self.assertEquals(sample_service_mojom.Foo.FOOBY, "Fooby")
35 sample_service_mojom.Foo.FOOBY = 0
37 del sample_service_mojom.Foo.FOOBY
39 sample_service_mojom.Foo.BAR = 1
/external/chromium_org/tools/clang/plugins/tests/
H A Dnested_class_inline_ctor.h13 class Foo { class
/external/chromium_org/tools/idl_parser/test_parser/
H A Ddictionary_web.idl40 * Inherit(Foo)
42 dictionary MyDictInherit : Foo {};
50 partial dictionary MyDictInherit : Foo {};
57 * Default(Foo)
67 DOMString setString = "Foo";
/external/chromium_org/v8/test/webkit/
H A Dpolymorphic-construct.js28 function Foo() { class
45 shouldBe("construct(Foo).field", "'foo'");
49 shouldBe("construct(Foo).field", "'foo'");
/external/clang/include/clang/Sema/
H A DSemaFixItUtils.h62 ConversionFixItGenerator(TypeComparisonFuncTy Foo): NumConversionsFixed(0), argument
64 CompareTypes(Foo) {}
71 void setConversionChecker(TypeComparisonFuncTy Foo) { argument
72 CompareTypes = Foo;
/external/clang/test/CXX/temp/temp.fct.spec/temp.arg.explicit/
H A Dp3.cpp20 void Foo(R (*fp)());
23 Foo(Func<int>);
36 int Foo(Bar *b, void (*Baz)(const T &t), T * = 0) { function in namespace:PR5949
43 return Foo<T>(b, quuz);
/external/clang/test/CodeGen/
H A Dfp-contract-pragma.cpp23 class Foo {}; class
24 Foo operator+(Foo, Foo);
/external/clang/test/Index/
H A Dprint-type.cpp4 struct Foo { struct in namespace:outer
17 Bar(outer::Foo<bool>* foo) { }
27 Baz<int, 1, Foo> baz;
28 Qux<int, char*, Foo<int>> qux;
52 // CHECK: ClassTemplate=Foo:4:8 (Definition) [type=] [typekind=Invalid] [isPOD=0]
62 // CHECK: CXXConstructor=Bar:17:3 (Definition) [type=void (outer::Foo<bool> *){{.*}}] [typekind=FunctionProto] [canonicaltype=void (outer::Foo<bool> *){{.*}}] [canonicaltypekind=FunctionProto] [resulttype=void] [resulttypekind=Void] [args= [outer::Foo<bool> *] [Pointer]] [isPOD=0]
63 // CHECK: ParmDecl=foo:17:25 (Definition) [type=outer::Foo<bool> *] [typekind=Pointer] [canonicaltype=outer::Foo<boo
[all...]
/external/clang/test/Modules/Inputs/
H A Dnamespaces-left.h63 class Foo;
65 Foo *getFoo();
70 class Foo;
72 Foo *getFoo();
/external/clang/test/Parser/
H A Dcxx-undeclared-identifier.cpp18 class Foo::Bar { // expected-error {{use of undeclared identifier 'Foo'}} \
/external/lldb/test/lang/cpp/breakpoints/
H A Dnested.cpp3 namespace Foo namespace
64 Foo::Bar::Baz mine(200);
65 Foo::Bar::Baz2 mine2(300);
71 printf ("And got %d from Bar.\n", Foo::Bar::Function());

Completed in 1783 milliseconds

1234567891011>>