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

12 3 4 5 6 7 8 91011>>

  /external/v8/tools/clang/rewrite_scoped_refptr/tests/
test7-expected.cc 7 struct Foo {
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;
test7-original.cc 7 struct Foo {
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;
test3-expected.cc 7 struct Foo {
11 void ExpectsScopedRefptr(const scoped_refptr<Foo>& param) {
12 Foo* foo = param.get(); local
16 scoped_refptr<Foo> temp(new Foo);
21 ExpectsScopedRefptr(new Foo);
test3-original.cc 7 struct Foo {
11 void ExpectsScopedRefptr(const scoped_refptr<Foo>& param) {
12 Foo* foo = param; local
16 scoped_refptr<Foo> temp(new Foo);
21 ExpectsScopedRefptr(new Foo);
test4-expected.cc 7 struct Foo {
11 void ExpectsRawPtr(Foo* foo) {
12 Foo* temp = foo;
16 scoped_refptr<Foo> ok(new Foo);
21 ExpectsRawPtr(new Foo);
test4-original.cc 7 struct Foo {
11 void ExpectsRawPtr(Foo* foo) {
12 Foo* temp = foo;
16 scoped_refptr<Foo> ok(new Foo);
21 ExpectsRawPtr(new Foo);
test10-expected.cc 7 struct Foo {
12 scoped_refptr<Foo> foo(new Foo);
13 if (foo.get())
ref-to-local-returned-as-raw-expected.cc 7 struct Foo {
14 Foo* TestFunction() {
15 scoped_refptr<Foo> a;
16 scoped_refptr<Foo>& b = a;
ref-to-local-returned-as-raw-original.cc 7 struct Foo {
14 Foo* TestFunction() {
15 scoped_refptr<Foo> a;
16 scoped_refptr<Foo>& b = a;
temp-assigned-to-field-init-expected.cc 7 struct Foo {
12 scoped_refptr<Foo> GetBuggyFoo() {
13 return new Foo;
18 scoped_refptr<Foo> f_;
  /external/clang/test/Preprocessor/
macro_with_initializer_list.cpp 11 class Foo {
13 Foo();
14 Foo(std::initializer_list<int>);
15 bool operator==(const Foo);
16 Foo operator+(const Foo);
21 Foo F;
22 F = Foo{1,2};
25 EQ(F,Foo());
26 EQ(F,Foo({1,2,3}))
    [all...]
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-cdtest/
cdtest-bar.cc 1 // test program for Class Foo
3 #include "cdtest-foo.h"
5 static Foo static_foo( "static_foo");
7 Foo f()
9 Foo x;
15 Foo other_foo1 = Foo( "other_foo1"), other_foo2 = Foo( "other_foo2");
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-srec/
sr3.cc 5 class Foo {
13 Foo();
14 Foo(const char* message);
15 Foo(const Foo&);
16 Foo & operator= (const Foo&);
17 ~Foo ();
20 static Foo static_foo( "static_foo");
25 Foo automatic_foo( "automatic_foo")
    [all...]
  /external/clang/test/CodeGenCXX/
debug-info-ms-abi.cpp 5 struct Foo {
11 Foo f;
12 Foo::Nested n;
14 // CHECK: ![[Foo:[^ ]*]] = distinct !DICompositeType(tag: DW_TAG_structure_type, name: "Foo",
18 // CHECK-SAME: containingType: ![[Foo]], virtuality: DW_VIRTUALITY_virtual, virtualIndex: 0,
22 // CHECK-SAME: containingType: ![[Foo]], virtuality: DW_VIRTUALITY_virtual, virtualIndex: 1,
26 // CHECK-SAME: containingType: ![[Foo]], virtuality: DW_VIRTUALITY_virtual, virtualIndex: 2,
30 // CHECK-SAME: identifier: ".?AUNested@Foo@@"
delayed-template-parsing.cpp 7 void Foo() {}
9 void Foo<0>() {}
14 // CHECK: call {{.*}} @"\01??$Foo@$0A@@Type@ClassScopeSpecialization@@QAEXXZ"
15 // X64: call {{.*}} @"\01??$Foo@$0A@@Type@ClassScopeSpecialization@@QEAAXXZ"
16 T.Foo<0>();
  /toolchain/binutils/binutils-2.27/gold/testsuite/
undef_symbol.cc 28 class Foo
31 Foo()
40 static Foo foo; variable
  /art/test/676-resolve-field-type/src-art/
Foo.java 17 public class Foo {
  /art/test/960-default-smali/src/
Foo.java 16 interface Foo {
Foo3.java 20 interface Foo3 extends Foo {
  /art/test/960-default-smali/src2/
Foo.java 16 interface Foo {
  /external/clang/test/CodeGen/
pascal-string.c 3 unsigned char * Foo( void )
  /external/clang/test/Index/
comment-with-preamble.c 7 //! 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/clang/test/PCH/
chain-predecl.h 2 @class Foo;
  /external/clang/test/SemaCXX/
PR9572.cpp 5 struct Foo : public Base { // expected-error {{base class 'Base' has private destructor}}
7 Foo();
9 struct Bar : public Foo {
10 Bar() { } // expected-note {{implicit destructor for 'Foo' first required here}}
13 Foo f;
uninit-variables-conditional.cpp 3 class Foo {
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))

Completed in 741 milliseconds

12 3 4 5 6 7 8 91011>>