HomeSort by relevance Sort by last modified time
    Searched refs:Foo (Results 201 - 225 of 895) sorted by null

1 2 3 4 5 6 7 891011>>

  /prebuilts/ndk/r13/sources/cxx-stl/gabi++/tests/
test_guard.cpp 11 class Foo {
13 Foo() { mValue++; }
19 int Foo::mValue;
21 static Foo* getInstance(void)
26 static Foo _instance;
30 static Foo* sInstances[MAX_THREADS];
52 Foo* foo = getInstance(); local
54 if (foo == NULL) {
55 fprintf(stderr, "ERROR: Foo instance is NULL!\n")
    [all...]
  /external/libchrome/base/
observer_list_unittest.cc 21 class Foo {
24 virtual ~Foo() {}
27 class Adder : public Foo {
38 class Disrupter : public Foo {
40 Disrupter(ObserverList<Foo>* list, Foo* doomed)
48 ObserverList<Foo>* list_;
49 Foo* doomed_;
52 class ThreadSafeDisrupter : public Foo {
54 ThreadSafeDisrupter(ObserverListThreadSafe<Foo>* list, Foo* doomed
    [all...]
  /external/llvm/test/tools/dsymutil/X86/
modules.m 3 module Foo {
4 header "Foo.h"
13 clang -D FOO_H -E -o Foo.h modules.m
57 // CHECK: 0x0[[FOO:.*]]: DW_TAG_module
58 // CHECK-NEXT: DW_AT_name{{.*}}"Foo"
67 // CHECK-NEXT: DW_AT_name{{.*}}"Foo"
73 @interface Foo {
86 // CHECK-NEXT: DW_AT_name{{.*}}"Foo"
94 // CHECK: DW_AT_import [DW_FORM_ref_addr] (0x{{0*}}[[FOO]]
102 // CHECK: DW_AT_name{{.*}}"foo"
    [all...]
  /external/clang/test/CodeGenCXX/
reference-init.cpp 20 struct Foo { int foo; }; member in struct:Foo
21 Foo& ignoreSetMutex = *(new Foo);
2007-10-01-StructResize.cpp 10 int Foo(Bork *hdr) {
  /external/google-breakpad/src/testing/gtest/test/
gtest_list_tests_unittest_.cc 46 TEST(Foo, Bar1) {
49 TEST(Foo, Bar2) {
52 TEST(Foo, DISABLED_Bar3) {
  /external/guice/core/test/com/google/inject/
ReflectionTest.java 36 final Foo foo = new Foo(); local
40 bind(Foo.class).toInstance(foo);
44 Binding<Foo> fooBinding = injector.getBinding(Key.get(Foo.class));
45 assertSame(foo, fooBinding.getProvider().get());
48 assertEquals(Key.get(Foo.class), fooBinding.getKey());
71 bind(Key.get(Foo.class)).to(Key.get(Bar.class))
    [all...]
  /external/protobuf/java/core/src/test/java/com/google/protobuf/
LiteEqualsAndHashTest.java 35 import protobuf_unittest.lite_equals_and_hash.LiteEqualsAndHash.Foo;
61 Foo foo1a = Foo.newBuilder()
65 Foo foo1b = Foo.newBuilder()
69 Foo foo2 = Foo.newBuilder()
99 Foo fooWithOnlyValue = Foo.newBuilder()
103 Foo fooWithValueAndExtension = fooWithOnlyValue.toBuilder(
    [all...]
  /external/clang/test/CXX/class.derived/class.member.lookup/
p8.cpp 8 void Foo();
21 d.D1::Foo();
26 D1::Foo();
28 this->D1::Foo();
35 void Foo(); // expected-note{{found by ambiguous name lookup}}
49 Derived1T<T>::Foo();
51 this->Derived1T<T>::Foo();
53 this->Foo(); // expected-error{{non-static member 'Foo' found in multiple base-class subobjects of type 'BaseT<int>'}}
58 d.template Derived1T<T>::Foo();
    [all...]
  /external/clang/test/Index/
evaluate-cursor.cpp 3 struct Foo {
7 void foo() { function
  /external/clang/test/Modules/Inputs/
category_bottom.h 3 @interface Foo(Bottom)
namespaces-left.h 63 class Foo;
65 Foo *getFoo();
70 class Foo;
72 Foo *getFoo();
  /external/libcxx/test/std/experimental/utilities/meta/meta.detect/
detected_t.pass.cpp 21 using callFoo = decltype(std::declval<T&>().Foo());
24 int Foo() { return 0; }
31 std::string Foo() { return ""; }
35 long Foo() { return 0; }
is_detected_convertible.pass.cpp 21 using callFoo = decltype(std::declval<T&>().Foo());
24 int Foo() { return 0; }
31 std::string Foo() { return ""; }
35 long Foo() { return 0; }
is_detected_exact.pass.cpp 21 using callFoo = decltype(std::declval<T&>().Foo());
24 int Foo() { return 0; }
31 std::string Foo() { return ""; }
35 long Foo() { return 0; }
  /external/libcxx/test/std/utilities/meta/meta.trans/meta.trans.ptr/
add_pointer.pass.cpp 47 struct Foo {};
58 test_add_pointer<Foo, Foo*>();
72 test_function0<void (Foo::*)()>();
74 test_function0<void (Foo::*)() const>();
75 test_function0<void (Foo::*)() &>();
76 test_function0<void (Foo::*)() &&>();
77 test_function0<void (Foo::*)() const &>();
78 test_function0<void (Foo::*)() const &&>();
  /external/libcxx/test/std/utilities/meta/meta.trans/meta.trans.ref/
add_lvalue_ref.pass.cpp 46 struct Foo {};
57 test_add_lvalue_reference<Foo, Foo&>();
71 test_function0<void (Foo::*)()>();
73 test_function0<void (Foo::*)() const>();
74 test_function0<void (Foo::*)() &>();
75 test_function0<void (Foo::*)() &&>();
76 test_function0<void (Foo::*)() const &>();
77 test_function0<void (Foo::*)() const &&>();
add_rvalue_ref.pass.cpp 48 struct Foo {};
59 test_add_rvalue_reference<Foo, Foo&&>();
71 test_function0<void (Foo::*)()>();
72 test_function0<void (Foo::*)() const>();
73 test_function0<void (Foo::*)() &>();
74 test_function0<void (Foo::*)() &&>();
75 test_function0<void (Foo::*)() const &>();
76 test_function0<void (Foo::*)() const &&>();
  /external/mockito/src/test/java/org/mockitousage/debugging/
Foo.java 7 interface Foo {
  /external/v8/tools/clang/plugins/tests/
nested_class_inline_ctor.h 13 class Foo {
  /external/v8/tools/clang/rewrite_scoped_refptr/tests/
gtest-expected.cc 8 struct Foo : public base::RefCounted<Foo> {
13 scoped_refptr<Foo> a;
14 Foo* b;
gtest-original.cc 8 struct Foo : public base::RefCounted<Foo> {
13 scoped_refptr<Foo> a;
14 Foo* b;
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug334.go 16 func (c cplx64) Foo() {}
17 func (c cplx128) Foo() {}
22 c64.Foo()
23 c128.Foo()
29 bug334.go:22: c64.Foo undefined (type cplx128 has no field or method Foo)
30 bug334.go:23: c128.Foo undefined (type cplx64 has no field or method Foo)
  /prebuilts/go/linux-x86/test/fixedbugs/
bug334.go 16 func (c cplx64) Foo() {}
17 func (c cplx128) Foo() {}
22 c64.Foo()
23 c128.Foo()
29 bug334.go:22: c64.Foo undefined (type cplx128 has no field or method Foo)
30 bug334.go:23: c128.Foo undefined (type cplx64 has no field or method Foo)
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/utilities/meta/meta.trans/meta.trans.ptr/
add_pointer.pass.cpp 47 struct Foo {};
58 test_add_pointer<Foo, Foo*>();
72 test_function0<void (Foo::*)()>();
74 test_function0<void (Foo::*)() const>();
75 test_function0<void (Foo::*)() &>();
76 test_function0<void (Foo::*)() &&>();
77 test_function0<void (Foo::*)() const &>();
78 test_function0<void (Foo::*)() const &&>();

Completed in 1109 milliseconds

1 2 3 4 5 6 7 891011>>