HomeSort by relevance Sort by last modified time
    Searched refs:Foo (Results 101 - 125 of 202) sorted by null

1 2 3 45 6 7 8 9

  /external/clang/test/PCH/
selector-warning.h 3 @interface Foo
7 @implementation Foo
8 - (void) foo
  /external/clang/test/SemaCXX/
member-pointers-2.cpp 6 struct Foo {
15 Foo memfoo;
warn-shadow.cpp 24 void foo() { function
48 struct Foo {
54 void Foo::Baz() {
warn-memset-bad-sizeof.cpp 11 struct Foo {};
12 typedef const Foo& CFooRef;
13 typedef const Foo CFoo;
14 typedef volatile Foo VFoo;
15 typedef const volatile Foo CVFoo;
27 void f(Mat m, const Foo& const_foo, char *buffer) {
33 Foo foo; local
67 memset(&foo, 0, sizeof(CFoo));
68 memset(&foo, 0, sizeof(VFoo))
    [all...]
vararg-non-pod.cpp 74 class Foo {
76 Foo() {}
80 const int size = sizeof(Helper(Foo()));
99 void t6(Foo somearg, ... ) {
warn-reorder-ctor-initialization.cpp 101 struct Foo { Foo(); };
107 Foo x;
108 Foo y;
anonymous-union.cpp 116 typedef struct objc_module *Foo ;
121 int Foo;
181 class Foo {
183 Foo()
198 Foo<int> baz;
warn-thread-safety-analysis.cpp 438 void foo() __attribute__((exclusive_locks_required(mu))) { } function in class:LateFoo
461 LateFoo Foo;
507 BarA.Foo.a = 2; // \
514 BarA.Foo.mu.Lock();
517 BarA.Foo.mu.Unlock();
522 BarA.Foo.mu.Lock();
525 BarA.Foo.mu.Unlock();
844 class Foo {
849 int Foo::method1(int i) {
854 int foo(int i) EXCLUSIVE_LOCKS_REQUIRED(mu2) SHARED_LOCKS_REQUIRED(mu1)
855 int foo(int i) { function in namespace:thread_annot_lock_27_modified
889 Foo *foo; member in namespace:thread_annot_lock_38
932 Foo *foo; member in class:thread_annot_lock_49::Bar
1055 Foo<int> *foo; local
1153 int Foo::foo() function in class:thread_annot_lock_13::Foo
1354 Foo *foo; member in namespace:thread_annot_lock_42
1445 void foo(MyData* d) __attribute__((exclusive_locks_required(d->mu))) { } function in class:substitution_test::Foo
    [all...]
borland-extensions.cpp 41 struct __declspec(uuid("{12345678-1234-1234-1234-123456789abc}")) Foo;
49 const GUID guid_inl = __uuidof(Foo);
enum.cpp 18 typedef enum Foo {
21 } Foo;
24 Foo myvar = A;
using-decl-templates.cpp 12 using A<T>::foo; // expected-error{{no member named 'foo'}}
40 int foo; member in struct:test0::Base
43 using Base::foo;
51 template <class T> struct Foo {
57 template <class T> struct Bar : public Foo<T>, Baz {
58 using Foo<T>::k;
60 int foo() { function in struct:PR7896::Bar
64 template int Bar<int>::foo();
80 void foo(const Container& current); // expected-error {{unknown type name 'Container'}
    [all...]
warn-global-constructors.cpp 83 struct Foo {
85 Foo(int x1) : x(x1) {}
87 void foo() { function in namespace:pr8095
88 static Foo a(0);
  /external/clang/test/SemaTemplate/
instantiate-subscript.cpp 35 void Foo(const S<int>& s, T x) {
40 Foo(S<int>(), 0);
class-template-id.cpp 8 A<int, FLOAT> *foo(A<int> *ptr, A<int> const *ptr2, A<int, double> *ptr3) { function
41 template<typename T> struct Foo { }; // expected-note{{template is declared here}}
43 void f(void) { Foo bar; } // expected-error{{without a template argument list}}
  /external/clang/test/CXX/temp/temp.decls/temp.friend/
p1.cpp 125 bool foo(const A<T> *) const;
130 return a->foo(b);
164 int foo(A<int> &a) { function in class:test7::B
170 int foo(A<int> &a) { function in class:test7::C
185 template <class T> friend void foo();
189 template <class T> void foo() { function in namespace:test8
192 template void foo<int>();
199 int foo(B *b) { function in class:test9::A
203 int foo(C *c) { function in class:test9::A
209 friend int A::foo(B*)
258 template <typename T> Foo<T> foo(T* t){ return Foo<T>(t, true); } function in namespace:test12
274 template <> Foo<long> foo(long *t) { function in namespace:test12
289 void foo(Role<N, test13::Foo> &role) { function in class:test13::Foo
305 void foo() { return A<long>::foo(); } \/\/ expected-error {{'foo' is a private member of 'test14::A<long>'}} function in class:test14::B
323 void foo() { return A<long>::foo(); } \/\/ expected-error {{'foo' is a private member of 'test15::A<long>'}} function in class:test15::B
327 void foo() { return A<float>::foo(); } function in class:test15::B
    [all...]
  /external/gtest/test/
gtest_break_on_failure_unittest_.cc 51 TEST(Foo, Bar) {
  /external/protobuf/gtest/test/
gtest_break_on_failure_unittest_.cc 51 TEST(Foo, Bar) {
  /external/webkit/LayoutTests/fast/url/script-tests/
path-url.js 5 ["JavaScript:Foo", "javascript:Foo"],
  /system/extras/tests/bionic/libc/bionic/
test_static_init.cpp 5 Foo theFoo2;
  /external/v8/test/mjsunit/bugs/
bug-222.js 28 function Foo(a, b) { }
29 Foo();
30 var oldArgs = Foo.arguments;
31 Foo();
32 var newArgs = Foo.arguments
37 Foo.arguments = oldArgs;
38 assertEquals(Foo.arguments, newArgs);
41 assertFalse(delete Foo.arguments);
42 assertEquals(Foo.arguments, newArgs);
  /system/extras/tests/bionic/libstdc++/
test_cstddef.cpp 43 struct Foo
81 volatile size_t offset = offsetof(struct Foo, field2);
  /external/chromium/testing/gtest/test/
gtest_break_on_failure_unittest_.cc 52 TEST(Foo, Bar) {
  /ndk/tests/device/test-gabi++/jni/
test_gabixx_rtti.cpp 21 class Foo
24 virtual ~Foo() { }
27 std::printf("in Foo!\n");
31 class Bar: public Foo
56 Foo* foo = new Bar(); local
94 bar = dynamic_cast<Bar*>(foo);
96 printf("OK: 'foo' is pointing to a Bar class instance.\n");
98 fprintf(stderr, "KO: Could not dynamically cast 'foo' to a 'Bar*'\n");
102 delete foo;
    [all...]
  /ndk/tests/device/test-stlport-rtti/jni/
test_stlport_rtti.cpp 21 class Foo
24 virtual ~Foo() { }
27 std::printf("in Foo!\n");
31 class Bar: public Foo
56 Foo* foo = new Bar(); local
94 bar = dynamic_cast<Bar*>(foo);
96 printf("OK: 'foo' is pointing to a Bar class instance.\n");
98 fprintf(stderr, "KO: Could not dynamically cast 'foo' to a 'Bar*'\n");
102 delete foo;
    [all...]
  /external/clang/test/CodeGenCXX/
anonymous-union-member-initializer.cpp 14 char S::*foo = &S::c; member in class:rdar8818236::S
159 template <typename T> struct Foo {
160 Foo() : ptr(__nullptr) {}
165 Foo<int> f;

Completed in 595 milliseconds

1 2 3 45 6 7 8 9