Home
last modified time | relevance | path

Searched refs:EmptyStruct (Results 1 – 9 of 9) sorted by relevance

/external/libchrome/mojo/public/interfaces/bindings/tests/
Dregression_tests.mojom42 EmptyStruct? e;
45 struct EmptyStruct {
59 EmptyStruct handles;
75 Method(EmptyStruct handles) => (handle handles);
Dtest_structs.mojom20 struct EmptyStruct {
59 EmptyStruct f27;
60 EmptyStruct? f28;
/external/llvm/test/CodeGen/WebAssembly/
Dbyval.ll11 %EmptyStruct = type { }
16 declare void @ext_func_empty(%EmptyStruct* byval)
21 declare void @ext_byval_func_empty(%EmptyStruct* byval)
99 define void @byval_empty_caller(%EmptyStruct* %ptr) {
102 call void @ext_byval_func_empty(%EmptyStruct* byval %ptr)
107 define void @byval_empty_callee(%EmptyStruct* byval %ptr) {
110 call void @ext_func_empty(%EmptyStruct* %ptr)
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/WebAssembly/
Dbyval.ll11 %EmptyStruct = type { }
16 declare void @ext_func_empty(%EmptyStruct* byval)
21 declare void @ext_byval_func_empty(%EmptyStruct* byval)
96 define void @byval_empty_caller(%EmptyStruct* %ptr) {
99 call void @ext_byval_func_empty(%EmptyStruct* byval %ptr)
104 define void @byval_empty_callee(%EmptyStruct* byval %ptr) {
107 call void @ext_func_empty(%EmptyStruct* %ptr)
/external/libchrome/mojo/public/java/system/javatests/src/org/chromium/mojo/bindings/
DBindingsTest.java26 import org.chromium.mojo.bindings.test.mojom.test_structs.EmptyStruct;
224 Message serializedStruct = new EmptyStruct().serialize(null); in testEmptyStructSerialization()
225 EmptyStruct emptyStruct = EmptyStruct.deserialize(serializedStruct); in testEmptyStructSerialization()
/external/python/cpython2/Lib/ctypes/test/
Dtest_pep3118.py89 class EmptyStruct(Structure): class
187 (EmptyStruct, "T{}", None, EmptyStruct),
/external/python/cpython3/Lib/ctypes/test/
Dtest_pep3118.py93 class EmptyStruct(Structure): class
190 (EmptyStruct, "T{}", (), EmptyStruct),
/external/libchrome/mojo/public/cpp/bindings/tests/
Dstruct_unittest.cc448 EmptyStructPtr empty_struct(EmptyStruct::New()); in TEST_F()
449 auto data = EmptyStruct::Serialize(&empty_struct); in TEST_F()
453 ASSERT_TRUE(EmptyStruct::Deserialize(data, &output)); in TEST_F()
/external/python/cpython3/Lib/test/
Dtest_io.py56 obj = EmptyStruct()
60 class EmptyStruct(ctypes.Structure): class