Home
last modified time | relevance | path

Searched refs:MyStruct (Results 1 – 15 of 15) sorted by relevance

/external/clang/test/CodeGenObjCXX/
Dproperty-reference.mm4 struct MyStruct { struct
11 MyStruct _foo; argument
14 @property (assign, readwrite) const MyStruct& foo;
16 - (const MyStruct&) foo;
17 - (void) setFoo:(const MyStruct&)inFoo; argument
22 MyStruct myStruct;
26 const MyStruct& currentMyStruct = myClass.foo;
29 // CHECK: [[C:%.*]] = call %struct.MyStruct* bitcast (i8* (i8*, i8*, ...)* @objc_msgSend
30 // CHECK: store %struct.MyStruct* [[C]], %struct.MyStruct** [[D:%.*]]
/external/eigen/test/eigen2/
Deigen2_dynalloc.cpp67 struct MyStruct struct
108 MyStruct foo0; VERIFY(std::size_t(foo0.avec.data())%ALIGNMENT==0); in test_eigen2_dynalloc()
115 MyStruct *foo0 = new MyStruct(); VERIFY(std::size_t(foo0->avec.data())%ALIGNMENT==0); in test_eigen2_dynalloc()
125 MyStruct *foo0 = new MyStruct[N]; VERIFY(std::size_t(foo0->avec.data())%ALIGNMENT==0); in test_eigen2_dynalloc()
/external/eigen/test/
Ddynalloc.cpp67 struct MyStruct struct
109 MyStruct foo0; VERIFY(size_t(foo0.avec.data())%ALIGNMENT==0); in test_dynalloc()
116 MyStruct *foo0 = new MyStruct(); VERIFY(size_t(foo0->avec.data())%ALIGNMENT==0); in test_dynalloc()
126 MyStruct *foo0 = new MyStruct[N]; VERIFY(size_t(foo0->avec.data())%ALIGNMENT==0); in test_dynalloc()
/external/compiler-rt/BlocksRuntime/tests/
Djosh.C11 struct MyStruct { struct
19 MyStruct first; // works in test() argument
22 MyStruct inner; // fails to compile! in test()
DobjectRRGC.c37 struct MyStruct { struct
42 typedef struct MyStruct *__attribute__((NSObject)) MyStruct_t; argument
46 struct MyStruct X; in main()
Dobjectassign.c36 struct MyStruct { struct
41 typedef struct MyStruct *__attribute__((NSObject)) MyStruct_t; argument
49 struct MyStruct X; in main()
/external/clang/test/CodeGen/
Daddress-space.c36 } MyStruct; typedef
41 void test4(MyStruct __attribute__((address_space(2))) *pPtr) { in test4()
42 MyStruct s = pPtr[0]; in test4()
D2007-04-05-UnPackedStruct.c9 struct MyStruct { struct
15 struct MyStruct MS = { tB, 0 }; in bar() argument
D2007-04-05-PackedStruct.c10 struct MyStruct { struct
17 struct MyStruct MS = { tB, 0 }; in bar() argument
/external/clang/test/Index/Inputs/
Dfoo.h6 struct MyStruct { struct
Dt2.c9 struct MyStruct *ms; in bar_func()
Dt1.c24 struct MyStruct ms; in field_test()
/external/clang/test/Index/
Dusrs.m18 } MyStruct; typedef
101 // CHECK: usrs.m c:@SA@MyStruct Extent=[15:9 - 18:2]
102 // CHECK: usrs.m c:@SA@MyStruct@FI@wa Extent=[16:3 - 16:9]
103 // CHECK: usrs.m c:@SA@MyStruct@FI@moo Extent=[17:3 - 17:10]
104 // CHECK: usrs.m c:usrs.m@179@T@MyStruct Extent=[15:1 - 18:11]
170 // CHECK-source: usrs.m:18:3: TypedefDecl=MyStruct:18:3 (Definition) Extent=[15:1 - 18:11]
/external/stlport/doc/
Dstlport_namespaces.txt93 struct MyStruct;
98 struct less<MyStruct>
/external/llvm/docs/
DGetElementPtr.rst147 %MyStruct = uninitialized global { float*, i32 }
149 %idx = getelementptr { float*, i32 }* %MyStruct, i64 0, i32 1
152 structure ``%MyStruct``. When people first look at it, they wonder why the ``i64
157 #. The type of ``%MyStruct`` is *not* ``{ float*, i32 }`` but rather ``{ float*,
158 i32 }*``. That is, ``%MyStruct`` is a pointer to a structure containing a
162 instruction (``%MyStruct``) which is ``{ float*, i32 }*``.
165 ``%MyStruct``. Since the first argument to the GEP instruction must always