Home
last modified time | relevance | path

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

/external/libmojo/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/python/cpython2/Lib/ctypes/test/
Dtest_pep3118.py89 class EmptyStruct(Structure): class
160 (EmptyStruct, "T{}", None, EmptyStruct),
/external/libmojo/mojo/android/javatests/src/org/chromium/mojo/bindings/
DBindingsTest.java23 import org.chromium.mojo.bindings.test.mojom.test_structs.EmptyStruct;
207 Message serializedStruct = new EmptyStruct().serialize(null); in testEmptyStructSerialization()
208 EmptyStruct emptyStruct = EmptyStruct.deserialize(serializedStruct); in testEmptyStructSerialization()
/external/libmojo/mojo/public/cpp/bindings/tests/
Dstruct_unittest.cc500 EmptyStructPtr empty_struct(EmptyStruct::New()); in TEST_F()
501 mojo::Array<uint8_t> data = EmptyStruct::Serialize(&empty_struct); in TEST_F()
505 ASSERT_TRUE(EmptyStruct::Deserialize(std::move(data), &output)); in TEST_F()
/external/libmojo/mojo/public/js/
Dstruct_unittests.js44 var e = new testStructs.EmptyStruct();
45 expect(e).toEqual(new testStructs.EmptyStruct({foo:123}));