HomeSort by relevance Sort by last modified time
    Searched defs:Agg (Results 1 - 25 of 26) sorted by null

1 2

  /external/clang/test/CodeGen/
block-byref-aggr.c 3 // CHECK: [[AGG:%.*]] = type { i32 }
4 typedef struct { int v; } Agg;
5 Agg makeAgg(void);
11 __block Agg a = {100};
17 // CHECK-NEXT: [[TEMP:%.*]] = alloca [[AGG]], align 4
19 // CHECK-NEXT: [[T0:%.*]] = getelementptr inbounds [[AGG]], [[AGG]]* [[TEMP]], i32 0, i32 0
25 // CHECK-NEXT: [[T2:%.*]] = bitcast [[AGG]]* [[T1]] to i8*
26 // CHECK-NEXT: [[T3:%.*]] = bitcast [[AGG]]* [[TEMP]] to i8*
37 __block Agg a, b
    [all...]
  /external/clang/test/CodeGenCXX/
microsoft-abi-byval-thunks.cpp 5 struct Agg {
6 Agg();
7 Agg(const Agg &);
8 ~Agg();
12 struct A { virtual void foo(Agg x); };
13 struct B { virtual void foo(Agg x); };
14 struct C : A, B { C(); virtual void foo(Agg x); };
18 // CHECK32: (%"struct.byval_thunk::C"* %this, <{ %"struct.byval_thunk::Agg" }>* inalloca)
21 // CHECK32: (%"struct.byval_thunk::C"* %{{.*}}, <{ %"struct.byval_thunk::Agg" }>* inalloca %0
    [all...]
const-init-cxx11.cpp 441 struct Agg { int k; };
455 int agg() { constexpr Agg a = { f(101) }; return a.k; } function in namespace:LocalVarInit
  /external/clang/test/CXX/basic/basic.types/
p10.cpp 69 struct Agg {
73 constexpr int f3(Agg a) { return a.a; }
114 struct LitMemBase : Agg {
115 Agg agg; member in struct:LitMemBase
127 Agg agg[24]; member in struct:ArrGood
  /external/clang/test/SemaCXX/
aggregate-initialization.cpp 81 class Agg {
88 Agg agg1;
89 Agg agg2;
cxx98-compat.cpp 117 struct Agg { int a, b; } const &agg = { 1, 2 }; // expected-warning {{reference initialized from initializer list is incompatible with C++98}} local
  /external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.list/
p7-cxx11-nowarn.cpp 31 struct Agg {
48 Agg<char> a1 = {1.0F}; // expected-warning {{type 'float' cannot be narrowed to 'char'}} expected-note {{silence}}
49 Agg<char> a2 = {1.0}; // expected-warning {{ cannot be narrowed }} expected-note {{silence}}
50 Agg<char> a3 = {1.0L}; // expected-warning {{ cannot be narrowed }} expected-note {{silence}}
55 Agg<char> a4 = {f}; // expected-warning {{ cannot be narrowed }} expected-note {{silence}}
56 Agg<char> a5 = {d}; // expected-warning {{ cannot be narrowed }} expected-note {{silence}}
57 Agg<char> a6 = {ld}; // expected-warning {{ cannot be narrowed }} expected-note {{silence}}
59 Agg<char> ce1 = { Convert<float>(1.0) }; // expected-warning {{type 'float' cannot be narrowed to 'char'}} expected-note {{silence}}
60 Agg<char> ce2 = { ConvertVar<double>() }; // expected-warning {{type 'double' cannot be narrowed to 'char'}} expected-note {{silence}}
75 Agg<float> f1 = {f}; // OK (no-op
    [all...]
p7-0x.cpp 30 struct Agg {
47 Agg<char> a1 = {1.0F}; // expected-error {{type 'float' cannot be narrowed to 'char'}} expected-note {{silence}}
48 Agg<char> a2 = {1.0}; // expected-error {{ cannot be narrowed }} expected-note {{silence}}
49 Agg<char> a3 = {1.0L}; // expected-error {{ cannot be narrowed }} expected-note {{silence}}
54 Agg<char> a4 = {f}; // expected-error {{ cannot be narrowed }} expected-note {{silence}}
55 Agg<char> a5 = {d}; // expected-error {{ cannot be narrowed }} expected-note {{silence}}
56 Agg<char> a6 = {ld}; // expected-error {{ cannot be narrowed }} expected-note {{silence}}
58 Agg<char> ce1 = { Convert<float>(1.0) }; // expected-error {{type 'float' cannot be narrowed to 'char'}} expected-note {{silence}}
59 Agg<char> ce2 = { ConvertVar<double>() }; // expected-error {{type 'double' cannot be narrowed to 'char'}} expected-note {{silence}}
62 Agg<bool> ab = {0.0}; // expected-error {{type 'double' cannot be narrowed to 'bool'}} expected-note { (…)
    [all...]
  /external/llvm/lib/Analysis/
CFLGraph.h 440 auto *Agg = Inst.getOperand(0);
442 addAssignEdge(Agg, &Inst);
ConstantFolding.cpp     [all...]
  /external/llvm/tools/llvm-c-test/
echo.cpp 634 LLVMValueRef Agg = CloneValue(LLVMGetOperand(Src, 0));
638 Dst = LLVMBuildExtractValue(Builder, Agg, I, Name);
642 LLVMValueRef Agg = CloneValue(LLVMGetOperand(Src, 0));
647 Dst = LLVMBuildInsertValue(Builder, Agg, V, I, Name);
  /external/python/cpython2/Lib/sqlite3/test/
dbapi.py 794 class Agg:
802 con.create_aggregate("foo", 1, Agg)
  /external/python/cpython3/Lib/sqlite3/test/
dbapi.py 774 class Agg:
782 con.create_aggregate("foo", 1, Agg)
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/sqlite3/test/
dbapi.py 792 class Agg:
800 con.create_aggregate("foo", 1, Agg)
  /prebuilts/gdb/linux-x86/lib/python2.7/sqlite3/test/
dbapi.py 792 class Agg:
800 con.create_aggregate("foo", 1, Agg)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/sqlite3/test/
dbapi.py 792 class Agg:
800 con.create_aggregate("foo", 1, Agg)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/sqlite3/test/
dbapi.py 792 class Agg:
800 con.create_aggregate("foo", 1, Agg)
  /external/swiftshader/third_party/LLVM/lib/Bitcode/Reader/
BitcodeReader.cpp     [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
InstructionCombining.cpp     [all...]
  /external/swiftshader/third_party/LLVM/lib/VMCore/
Constants.cpp     [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_2_7/
BitcodeReader.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstructionCombining.cpp     [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_3_0/
BitcodeReader.cpp     [all...]
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp     [all...]
  /external/llvm/lib/Transforms/Instrumentation/
MemorySanitizer.cpp     [all...]

Completed in 453 milliseconds

1 2