HomeSort by relevance Sort by last modified time
    Searched refs:Foo (Results 51 - 75 of 1017) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/v8/tools/clang/rewrite_scoped_refptr/tests/
temp-assigned-to-field-init-original.cc 7 struct Foo {
12 scoped_refptr<Foo> GetBuggyFoo() {
13 return new Foo;
18 Foo* f_;
temp-assigned-to-raw-var-expected.cc 7 struct Foo {
14 scoped_refptr<Foo> GetBuggyFoo() {
15 return new Foo;
18 scoped_refptr<Foo> unsafe = GetBuggyFoo();
temp-passed-as-raw-arg-expected.cc 7 struct Foo {
16 scoped_refptr<Foo> GetBuggyFoo() {
17 return new Foo;
20 void Bar(Foo* f);
temp-passed-as-raw-arg-original.cc 7 struct Foo {
16 scoped_refptr<Foo> GetBuggyFoo() {
17 return new Foo;
20 void Bar(Foo* f);
temp-returned-as-raw-expected.cc 7 struct Foo {
12 scoped_refptr<Foo> TestFunction();
15 scoped_refptr<Foo> CreateFoo();
20 scoped_refptr<Foo> Bar::TestFunction() {
temp-returned-as-raw-original.cc 7 struct Foo {
12 Foo* TestFunction();
15 scoped_refptr<Foo> CreateFoo();
20 Foo* Bar::TestFunction() {
  /libcore/benchmarks/src/benchmarks/
Foo.java 22 public class Foo {
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-elf/
symbol2w.s 2 .global Foo
3 .type Foo, %object
4 .size Foo, 20
5 Foo:
6 .string "function 'Foo' used"
symbol2ref.s 2 .dc.a Foo
  /external/clang/test/Preprocessor/Inputs/headermap-rel/Foo.framework/Headers/
Foo.h 2 Foo.h is parsed
  /external/clang/test/SemaCXX/
parentheses.cpp 4 template<class Foo>
5 bool test(Foo f, int *array)
zero-length-arrays.cpp 5 class Foo {
6 ~Foo();
7 Foo(const Foo&);
9 Foo(int);
14 Foo foos[0];
15 Foo foos2[0][2];
16 Foo foos3[2][0];
constructor.cpp 4 class Foo {
5 Foo();
6 (Foo)(float) { }
7 explicit Foo(int); // expected-note {{previous declaration is here}}
8 Foo(const Foo&);
10 ((Foo))(INT); // expected-error{{cannot be redeclared}}
12 Foo(Foo foo, int i = 17, int j = 42); // expected-error{{copy constructor must pass its first argument by refe (…)
    [all...]
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-cdtest/
cdtest-foo.h 1 // Class Foo
11 class Foo {
19 Foo();
20 Foo(const char* message);
21 Foo(const Foo&);
22 Foo & operator= (const Foo&);
23 ~Foo ();
cdtest-main.cc 1 // main program for Class Foo
10 #include "cdtest-foo.h"
14 extern Foo f(void);
25 Foo::init_foo();
28 static Foo static_foo( "static_foo");
32 assert (Foo::nb_foos() == 2);
33 Foo automatic_foo( "automatic_foo");
34 Foo bla_foo = f();
35 assert (Foo::nb_foos() == 4);
37 assert (Foo::nb_foos() == 4)
    [all...]
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-vxworks/
plt-mips1.s 1 lw $25,%call16(Foo)($28)
  /external/clang/test/CodeGenCXX/
2010-05-12-PtrToMember-Dbg.cpp 3 class Foo
8 Foo (int i, int j) { x = i; y = j; }
12 Foo foo(10, 11);
15 int Foo::* pmi = &Foo::y;
16 return foo.*pmi;
friend-redecl.cpp 4 struct Foo {
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;
pr15753.cpp 3 template <typename T> static int Foo(T t);
5 int Foo(T t) {
8 template<> int Foo<int>(int i) {
pr28360.cpp 3 void Foo();
4 void Foo(int);
11 void Baz() { Bar(&A::Foo); }
15 // CHECK: store i8* bitcast (void (%struct.A*)* @"\01?Foo@A@@QAEXXZ" to i8*), i8** %[[ref_tmp]], align 4
  /external/clang/test/Analysis/
enum.cpp 5 enum class Foo {
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/
p3.cpp 7 class Foo {
10 void foo(const Foo &foo);
14 enum E { foo = 0 }; enumerator in enum:test0::Test::E
17 foo(A::Foo()); // expected-error {{not a function}}
  /external/clang/test/CodeGen/
ubsan-type-blacklist.cpp 10 class Foo : public Bar {};
19 Foo* foo = static_cast<Foo*>(&bar); // down-casting local
  /external/clang/test/Index/
complete-qualified.cpp 6 class Foo
9 C<Foo, class Bar> c;
12 void foo() function
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)
  /art/test/616-cha-proxy-method-inline/src-multidex/
Foo.java 17 interface Foo {

Completed in 371 milliseconds

1 23 4 5 6 7 8 91011>>