Searched defs:Foo (Results 101 - 125 of 395) sorted by relevance

1234567891011>>

/external/v8/tools/clang/rewrite_scoped_refptr/tests/
H A Dtest7-original.cc7 struct Foo { struct
11 void ExpectsRawPtr(Foo* foo) {
12 Foo* temp = foo;
17 Foo* GetHeapFoo() {
18 scoped_refptr<Foo>* heap_allocated = new scoped_refptr<Foo>();
19 *heap_allocated = new Foo;
/external/v8/tools/clang/rewrite_to_chrome_style/tests/
H A Dwtf-original.cc16 static const bool Foo = true; member in class:WTF::XmlHTTPRequest
/external/apache-harmony/support/src/test/resources/tests/resources/
H A Dhyts_Foo.serFoo.java package foo.bar.execjartest public foo.bar.execjartest.Foo extends java ...
/external/clang/test/CodeGenCXX/
H A Dcxx0x-delegating-ctors.cpp83 class Foo : public virtual Base { class in namespace:PR14588
85 Foo();
86 Foo(const void * inVoid);
87 virtual ~Foo() {}
92 // CHECK-LABEL: define void @_ZN7PR145883FooC1Ev(%"class.PR14588::Foo"*
98 Foo::Foo() : Foo(__null) { other(); } function in class:PR14588::Foo
99 Foo::Foo(cons function in class:PR14588::Foo
[all...]
H A Dunion-dtor.cpp6 struct Foo { struct
7 Foo() { static_assert(b, "Foo::Foo used"); } function in struct:Foo
8 ~Foo() { static_assert(b, "Foo::~Foo used"); }
19 Foo<> foo;
27 Foo<> foo;
35 // The ctor and dtor of Foo<> an
[all...]
H A Dlinetable-eh.cpp31 class Foo class
36 # 253 "Foo.cpp" 3
38 Foo::bar ()
42 # 267 "Foo.cpp" 3
H A Dmangle-windows.cpp23 struct Foo { struct
28 void Foo::foo() {}
29 // WIN: define x86_stdcallcc void @"\01?foo@Foo@@QAGXXZ"
32 void Foo::bar() {}
33 // WIN: define x86_stdcallcc void @"\01?bar@Foo@@SGXXZ"
39 extern "C" void __stdcall operator++(Foo &x) {
H A Dpartial-init.cpp15 struct Foo { struct
20 static Foo table[] = {
/external/compiler-rt/test/asan/TestCases/Posix/
H A Dnew_array_cookie_with_new_from_class.cc11 struct Foo { struct
14 ~Foo();
22 Foo::~Foo() {}
23 void *Foo::allocated;
25 Foo *getFoo(size_t n) {
26 return new Foo[n];
30 Foo *foo = getFoo(10);
32 fprintf(stderr, "alloc: %p\n", Foo::allocated);
34 reinterpret_cast<uintptr_t>(Foo
[all...]
/external/compiler-rt/test/asan/TestCases/
H A Dintra-object-overflow.cc9 class Foo { class
11 Foo() : pre1(1), pre2(2), post1(3), post2(4) { function in class:Foo
13 virtual ~Foo() {
17 // CHECK: #0 {{.*}}Foo::set{{.*}}intra-object-overflow.cc:[[@LINE-2]]
26 Foo *foo = new Foo;
/external/eigen/test/
H A Dctorleak.cpp5 struct Foo struct
11 Foo() function in struct:Foo
15 if (Foo::object_count > Foo::object_limit) { std::cout << "\nThrow!\n"; throw Foo::Fail(); }
18 ++Foo::object_count;
21 ~Foo()
24 --Foo::object_count;
30 Index Foo::object_count = 0;
31 Index Foo
[all...]
/external/clang/test/CXX/class.derived/
H A Dp1.cpp31 struct Foo { Base foo(); }; struct in namespace:PR11216
32 Derived3<Foo> d;
/external/clang/test/CodeGen/
H A D2009-03-08-ZeroEltStructCrash.c9 static inline void Foo(struct Union *u) { function
13 Foo(u);
H A D2009-06-18-StaticInitTailPadPack.c4 typedef struct A *Foo; typedef in typeref:struct:A
7 Foo f1;
H A Dsparc-vaarg.c13 struct Foo { struct
17 struct Foo dest;
20 // CHECK: [[RESULT:%[a-z_0-9]+]] = va_arg {{.*}}, %struct.Foo*{{$}}
24 dest = va_arg(*args, struct Foo);
/external/clang/test/SemaCXX/
H A Dpr13394-crash-on-invalid.cpp19 namespace Foo { namespace
25 struct Derived : public Foo::Base {
27 Foo::Bar(); // expected-error{{no member named 'Bar' in namespace 'Foo'; did you mean simply 'Bar'?}}
H A Dzero-length-arrays.cpp5 class Foo { class
6 ~Foo();
7 Foo(const Foo&);
9 Foo(int);
14 Foo foos[0];
15 Foo foos2[0][2];
16 Foo foos3[2][0];
/external/clang/test/SemaTemplate/
H A Ddelegating-constructors.cpp19 struct Foo { struct in namespace:PR10457
20 Foo(int) { } function in struct:PR10457::Foo
24 Foo(T, int i) : Foo(i) { } function in struct:PR10457::Foo
29 Foo f(1, 1);
H A Dexception-spec-crash.cpp21 class Foo { class
22 Foo(Foo &&) noexcept = default;
28 Foo &operator=(Foo &&) noexcept = default;
/external/clang/unittests/AST/
H A DASTTypeTraitsTest.cpp102 struct Foo {}; struct in namespace:clang::ast_type_traits
106 EXPECT_FALSE(DNT<Foo>().isSame(DNT<Foo>()));
/external/compiler-rt/test/asan/TestCases/Linux/
H A Dinit-order-dlopen.cc26 struct Foo { struct
27 Foo() : val(42) { printf("Foo::Foo()\n"); } function in struct:Foo
31 Foo global_foo;
/external/compiler-rt/test/ubsan/TestCases/TypeCheck/
H A Dvptr-virtual-base.cpp9 struct Foo { virtual int f() { return 0; } }; struct
12 Foo foo;
16 // CHECK-NEXT: [[PTR]]: note: object is of type 'Foo'
/external/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/
H A DTableInNestedNS.py22 def Foo(self): member in class:TableInNestedNS
/external/guice/core/test/com/google/inject/
H A DReflectionTest.java36 final Foo foo = new Foo();
40 bind(Foo.class).toInstance(foo);
44 Binding<Foo> fooBinding = injector.getBinding(Key.get(Foo.class));
48 assertEquals(Key.get(Foo.class), fooBinding.getKey());
71 bind(Key.get(Foo.class)).to(Key.get(Bar.class));
75 Binding<Foo> fooBinding = injector.getBinding(Key.get(Foo.class));
79 assertEquals(Key.get(Foo
82 static class Foo {} class in class:ReflectionTest
[all...]
/external/guice/core/test/com/google/inject/spi/
H A DInjectorSpiTest.java25 bind(Foo.class);
37 // 1) non-Provider Foo.class
38 binding = injector.getExistingBinding(Key.get(Foo.class));
40 assertEquals(Foo.class, binding.getKey().getTypeLiteral().getRawType());
42 // 2) Provider<Foo> class (should already exist, because Baz @Injects it).
44 assertTrue(injector.getAllBindings().containsKey(Key.get(new TypeLiteral<Provider<Foo>>() {})));
45 binding = injector.getExistingBinding(Key.get(new TypeLiteral<Provider<Foo>>() {}));
48 assertEquals(Foo.class, ((Provider)binding.getProvider().get()).get().getClass());
70 private static class Foo {} class in class:InjectorSpiTest
72 private static class Baz { @SuppressWarnings("unused") @Inject Provider<Foo> foo
[all...]

Completed in 1732 milliseconds

1234567891011>>