Searched refs:Foo (Results 26 - 50 of 354) sorted by relevance

1234567891011>>

/external/clang/test/CodeGenCXX/
H A Ddelayed-template-parsing.cpp7 void Foo() {} function in struct:ClassScopeSpecialization::Type
9 void Foo<0>() {} function in struct:ClassScopeSpecialization::Type
14 // CHECK: call {{.*}} @"\01??$Foo@$0A@@Type@ClassScopeSpecialization@@QAEXXZ"
15 // X64: call {{.*}} @"\01??$Foo@$0A@@Type@ClassScopeSpecialization@@QEAAXXZ"
16 T.Foo<0>();
H A D2010-05-12-PtrToMember-Dbg.cpp3 class Foo class
8 Foo (int i, int j) { x = i; y = j; } function in class:Foo
12 Foo foo(10, 11);
15 int Foo::* pmi = &Foo::y;
H A Dfriend-redecl.cpp4 struct Foo { struct
5 friend bool TryFoo(Foo *f2) { return TryFoo(0, f2); }
12 friend bool TryFoo(int, Foo *f3);
14 bool TryFoo(Foo *f5);
16 Foo f;
/external/clang/test/Index/
H A Dcomplete-qualified.cpp6 class Foo class
9 C<Foo, class Bar> c;
14 Foo::
17 // CHECK-CC1: FieldDecl:{ResultType C<Foo, class Bar>}{TypedText c} (35)
18 // CHECK-CC1: ClassDecl:{TypedText Foo} (35)
19 // CHECK-CC1: CXXMethod:{ResultType Foo &}{TypedText operator=}{LeftParen (}{Placeholder const Foo &}{RightParen )}
20 // CHECK-CC1: CXXDestructor:{ResultType void}{TypedText ~Foo}{LeftParen (}{RightParen )} (35)
H A Dcomment-with-preamble.c7 //! Foo’s description.
8 void Foo();
13 // CHECK: FunctionDecl=Foo:8:6 RawComment=[//! Foo’s description.] RawCommentRange=[7:1 - 7:25] BriefComment=[Foo’s description.]
/external/chromium_org/tools/clang/rewrite_scoped_refptr/tests/
H A Dtemp-assigned-to-field-init-expected.cc7 struct Foo { struct
12 scoped_refptr<Foo> GetBuggyFoo() {
13 return new Foo;
18 scoped_refptr<Foo> f_;
H A Dtemp-assigned-to-field-init-original.cc7 struct Foo { struct
12 scoped_refptr<Foo> GetBuggyFoo() {
13 return new Foo;
18 Foo* f_;
H A Dtemp-assigned-to-raw-var-expected.cc7 struct Foo { struct
14 scoped_refptr<Foo> GetBuggyFoo() {
15 return new Foo;
18 scoped_refptr<Foo> unsafe = GetBuggyFoo();
H A Dtemp-passed-as-raw-arg-expected.cc7 struct Foo { struct
16 scoped_refptr<Foo> GetBuggyFoo() {
17 return new Foo;
20 void Bar(Foo* f);
H A Dtemp-passed-as-raw-arg-original.cc7 struct Foo { struct
16 scoped_refptr<Foo> GetBuggyFoo() {
17 return new Foo;
20 void Bar(Foo* f);
H A Dref-to-local-returned-as-raw-expected.cc7 struct Foo : public base::RefCounted<Foo> { struct in inherits:base::RefCounted
14 Foo* TestFunction() {
15 scoped_refptr<Foo> a;
16 scoped_refptr<Foo>& b = a;
H A Dref-to-local-returned-as-raw-original.cc7 struct Foo : public base::RefCounted<Foo> { struct in inherits:base::RefCounted
14 Foo* TestFunction() {
15 scoped_refptr<Foo> a;
16 scoped_refptr<Foo>& b = a;
H A Dtemp-returned-as-raw-expected.cc7 struct Foo : public base::RefCounted<Foo> { struct in inherits:base::RefCounted
12 scoped_refptr<Foo> TestFunction();
15 scoped_refptr<Foo> CreateFoo();
20 scoped_refptr<Foo> Bar::TestFunction() {
H A Dtemp-returned-as-raw-original.cc7 struct Foo : public base::RefCounted<Foo> { struct in inherits:base::RefCounted
12 Foo* TestFunction();
15 scoped_refptr<Foo> CreateFoo();
20 Foo* Bar::TestFunction() {
/external/chromium_org/tools/idl_parser/test_parser/
H A Dextattr_ppapi.idl33 *Interface(Foo)
39 [foo()] interface Foo {};
42 *Interface(Foo)
48 [foo(1)] interface Foo {};
51 *Interface(Foo)
57 [foo(1 true 1.2e-3)] interface Foo {};
60 *Interface(Foo)
67 [foo(null)] interface Foo {};
70 *Interface(Foo)
75 [foo=1] interface Foo {};
[all...]
/external/clang/test/CodeGen/
H A Dpascal-string.c3 unsigned char * Foo( void ) function
/external/clang/test/SemaCXX/
H A DPR9572.cpp5 struct Foo : public Base { // expected-error {{base class 'Base' has private destructor}} struct in inherits:Base
7 Foo();
9 struct Bar : public Foo {
10 Bar() { } // expected-note {{implicit destructor for 'Foo' first required here}}
13 Foo f;
H A Duninit-variables-conditional.cpp3 class Foo { class
5 Foo();
6 ~Foo();
15 // the destructor in Foo fouls about the minor bit of path-sensitivity in
19 if (bar() || baz() || Foo() || init(&x))
H A Dparentheses.cpp4 template<class Foo>
5 bool test(Foo f, int *array)
H A Dtemplated-friend-decl.cpp4 struct Foo { struct
9 // Foo<int> is. This is to protect against PR5848; for now, this "parses" but
15 Foo<int> x;
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/chromium_org/v8/test/mjsunit/bugs/
H A Dbug-222.js28 function Foo(a, b) { } function
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);
/external/clang/test/Preprocessor/Inputs/headermap-rel/Foo.framework/Headers/
H A DFoo.h2 Foo.h is parsed
/external/clang/test/Analysis/
H A Denum.cpp5 enum class Foo { class
10 return Foo::Zero == (Foo)x; // don't crash
14 Foo f = static_cast<Foo>(i);
18 clang_analyzer_eval(f == Foo::Zero); // expected-warning{{TRUE}}
23 clang_analyzer_eval(f == Foo::Zero); // expected-warning{{FALSE}}
/external/clang/test/CXX/basic/basic.lookup/basic.lookup.argdep/
H A Dp3.cpp7 class Foo { class in namespace:test0::A
10 void foo(const Foo &foo);
17 foo(A::Foo()); // expected-error {{not a function}}

Completed in 520 milliseconds

1234567891011>>