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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CodeGen/
2002-03-14-QuotesInStrConst.c 8 const char *Foo() {
  /external/clang/test/CodeGenCXX/
virt-dtor-gen.cpp 5 class Foo {
6 virtual ~Foo();
8 Foo::~Foo() {}
10 // CHECK-LABEL: define {{.*}}void @_ZN3FooD0Ev(%class.Foo* %this) unnamed_addr
static-destructor.cpp 10 class Foo {
12 ~Foo() {
16 Foo global;
20 // X86: call i32 @__cxa_atexit(void (i8*)* bitcast (void (%class.Foo*)* @_ZN3FooD1Ev to void (i8*)*), i8* getelementptr inbounds (%class.Foo, %class.Foo* @global, i32 0, i32 0), i8* @__dso_handle)
25 // ARM: call i32 @__cxa_atexit(void (i8*)* bitcast (%class.Foo* (%class.Foo*)* @_ZN3FooD1Ev to void (i8*)*), i8* getelementptr inbounds (%class.Foo, %class.Foo* @global, i32 0, i32 0), i8* @__dso_handle
    [all...]
copy-initialization.cpp 3 struct Foo {
4 Foo();
5 Foo(const Foo&);
10 operator const Foo&() const;
13 void f(Foo);
15 // CHECK-LABEL: define void @_Z1g3Foo(%struct.Foo* %foo)
16 void g(Foo foo) {
    [all...]
member-init-assignment.cpp 4 struct Foo {
7 Foo(unsigned arg);
10 Foo::Foo(unsigned arg) : file_id(arg = 42)
13 // CHECK: define {{.*}} @_ZN3FooC2Ej(%struct.Foo* %this, i32 %arg) unnamed_addr
17 // CHECK: ret {{void|%struct.Foo}}
virt-canonical-decl.cpp 12 class Foo : public Base {
14 virtual ~Foo();
17 Foo::~Foo()
microsoft-abi-extern-template.cpp 3 // Even though Foo<int> has an extern template declaration, we have to emit our
6 // CHECK: @"\01??_7?$Foo@H@@6B@" = linkonce_odr unnamed_addr constant [1 x i8*] [
7 // CHECK-SAME: i8* bitcast (i8* (%struct.Foo*, i32)* @"\01??_G?$Foo@H@@UEAAPEAXI@Z" to i8*)
10 // CHECK-LABEL: define %struct.Foo* @"\01?f@@YAPEAU?$Foo@H@@XZ"()
11 // CHECK: call %struct.Foo* @"\01??0?$Foo@H@@QEAA@XZ"(%struct.Foo* %{{.*}})
13 // CHECK: define available_externally %struct.Foo* @"\01??0?$Foo@H@@QEAA@XZ"(%struct.Foo* returned %this
    [all...]
  /external/clang/test/Misc/Inputs/
working-directory.h 1 typedef int Foo;
  /external/clang/test/Analysis/
dtor-cxx11.cpp 7 struct Foo {
8 ~Foo() {}
12 for (Foo foo : {Foo(), Foo()}) {}
  /art/test/960-default-smali/src/
K.java 17 class K implements Foo { }
N.java 20 class N implements Foo {
  /external/clang/test/FixIt/
no-diagnostics-fixit-info.c 4 struct Foo {
  /external/clang/test/Misc/
working-directory.c 5 Foo bar;
  /external/clang/test/VFS/Inputs/UsesFoo.framework/Headers/
UsesFoo.h 1 @import Foo;
  /external/clang/test/Index/
annotate-tokens-with-default-args.cpp 3 void Foo::m(Foo *f) {}
7 // CHECK: Identifier: "Foo" [3:6 - 3:9] TypeRef=struct Foo:1:8
11 // CHECK: Identifier: "Foo" [3:13 - 3:16] TypeRef=struct Foo:1:8
annotate-tokens-with-default-args.h 1 struct Foo {
2 void m(Foo *f = 0);
availability.cpp 1 void foo() = delete;
3 struct Foo {
4 int foo() = delete;
5 Foo() = delete;
10 // CHECK: FunctionDecl=foo:1:6 (unavailable) [type=void ()] [typekind=FunctionProto] [resulttype=void] [resulttypekind=Void] [isPOD=0]
11 // CHECK: StructDecl=Foo:3:8 (Definition) [type=Foo] [typekind=Record] [isPOD=1]
12 // CHECK: CXXMethod=foo:4:7 (unavailable) [type=int (){{.*}}] [typekind=FunctionProto] [resulttype=int] [resulttypekind=Int] [isPOD=0]
13 // CHECK: CXXConstructor=Foo:5:3 (unavailable) (default constructor) [type=void (){{.*}}] [typekind=FunctionProto] [resulttype=void] [resulttypekind=Void] [isPOD=0]
  /external/clang/test/Profile/
cxx-structors.cpp 5 struct Foo {
6 Foo() {}
7 Foo(int) {}
8 ~Foo() {}
11 struct Bar : public Foo {
13 Bar(int x) : Foo(x) {}
17 Foo foo; variable
18 Foo foo2(1);
  /external/v8/tools/clang/rewrite_scoped_refptr/tests/
temp-assigned-to-raw-var-original.cc 7 struct Foo {
14 scoped_refptr<Foo> GetBuggyFoo() {
15 return new Foo;
18 Foo* unsafe = GetBuggyFoo();
temp-bool-test-expected.cc 7 struct Foo {
14 scoped_refptr<Foo> GetBuggyFoo() {
15 return new Foo;
temp-bool-test-original.cc 7 struct Foo {
14 scoped_refptr<Foo> GetBuggyFoo() {
15 return new Foo;
test10-original.cc 7 struct Foo {
12 scoped_refptr<Foo> foo(new Foo);
13 if (foo)
local-returned-as-raw-expected.cc 7 struct Foo {
13 scoped_refptr<Foo> GetBuggyFoo();
15 scoped_refptr<Foo> GetBuggyFoo() {
16 scoped_refptr<Foo> unsafe(new Foo);
local-returned-as-raw-original.cc 7 struct Foo {
13 Foo* GetBuggyFoo();
15 Foo* GetBuggyFoo() {
16 scoped_refptr<Foo> unsafe(new Foo);
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-plugin/
pr12696-1.cc 5 struct Foo { virtual ~Foo(); };
6 struct Bar:public Foo { Bar() { } };

Completed in 405 milliseconds

1 2 3 4 5 6 7 8 91011>>