/external/clang/test/CodeGenObjCXX/ |
D | property-reference.mm | 4 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/ |
D | eigen2_dynalloc.cpp | 67 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/ |
D | dynalloc.cpp | 67 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/ |
D | josh.C | 11 struct MyStruct { struct 19 MyStruct first; // works in test() argument 22 MyStruct inner; // fails to compile! in test()
|
D | objectRRGC.c | 37 struct MyStruct { struct 42 typedef struct MyStruct *__attribute__((NSObject)) MyStruct_t; argument 46 struct MyStruct X; in main()
|
D | objectassign.c | 36 struct MyStruct { struct 41 typedef struct MyStruct *__attribute__((NSObject)) MyStruct_t; argument 49 struct MyStruct X; in main()
|
/external/clang/test/CodeGen/ |
D | address-space.c | 36 } MyStruct; typedef 41 void test4(MyStruct __attribute__((address_space(2))) *pPtr) { in test4() 42 MyStruct s = pPtr[0]; in test4()
|
D | 2007-04-05-UnPackedStruct.c | 9 struct MyStruct { struct 15 struct MyStruct MS = { tB, 0 }; in bar() argument
|
D | 2007-04-05-PackedStruct.c | 10 struct MyStruct { struct 17 struct MyStruct MS = { tB, 0 }; in bar() argument
|
/external/clang/test/Index/Inputs/ |
D | foo.h | 6 struct MyStruct { struct
|
D | t2.c | 9 struct MyStruct *ms; in bar_func()
|
D | t1.c | 24 struct MyStruct ms; in field_test()
|
/external/clang/test/Index/ |
D | usrs.m | 18 } 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/ |
D | stlport_namespaces.txt | 93 struct MyStruct; 98 struct less<MyStruct>
|
/external/llvm/docs/ |
D | GetElementPtr.rst | 147 %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
|