Home
last modified time | relevance | path

Searched refs:simple (Results 1 – 25 of 42) sorted by relevance

12

/system/tools/xsdc/tests/resources/simple_complex_content/api/
Dcurrent.txt2 package simple.complex.content {
14 public class KRAddress extends simple.complex.content.Address {
20 method public simple.complex.content.KRAddress getKRAddress();
22 method public simple.complex.content.SubAddress getSubAddress();
23 method public simple.complex.content.USAddressP getUSAddressP();
24 method public void setKRAddress(simple.complex.content.KRAddress);
26 method public void setSubAddress(simple.complex.content.SubAddress);
27 method public void setUSAddressP(simple.complex.content.USAddressP);
32 method public simple.complex.content.KRAddress getKRAddress();
34 method @NonNull public simple.complex.content.SubAddress getSubAddress();
[all …]
/system/tools/xsdc/tests/resources/simple_type/api/
Dcurrent.txt2 package simple.type {
6 enum_constant public static final simple.type.EnumType EMPTY;
7 enum_constant public static final simple.type.EnumType NO;
8 enum_constant @Deprecated public static final simple.type.EnumType YES;
22 method public java.util.List<simple.type.EnumType> getYesOrNo();
39 …method public static simple.type.MultiChoice readMultiChoice(java.io.InputStream) throws javax.xml…
40 …method public static simple.type.SimpleTypes readSimpleTypes(java.io.InputStream) throws javax.xml…
41 …method public static simple.type.SingleChoice readSingleChoice(java.io.InputStream) throws javax.x…
49 …method public static void write(simple.type.XmlWriter, simple.type.SimpleTypes) throws java.io.IOE…
50 …method public static void write(simple.type.XmlWriter, simple.type.MultiChoice) throws java.io.IOE…
[all …]
/system/tools/xsdc/tests/resources/purchase_simple/api/
Dcurrent.txt2 package purchase.simple {
6 method public purchase.simple.USAddress getBillTo();
8 method public java.util.List<purchase.simple.USAddress> getShipTo();
9 method public void setBillTo(purchase.simple.USAddress);
31 …method public static purchase.simple.PurchaseOrderType read(java.io.InputStream) throws javax.xml.…
39 …method public static void write(purchase.simple.XmlWriter, purchase.simple.PurchaseOrderType) thro…
/system/tools/xsdc/tests/
Dmain.cpp43 using namespace simple::type; in TEST_F()
45 SimpleTypes simple = *readSimpleTypes(file_name.c_str()); in TEST_F() local
47 for (int i = 0; i < simple.getListInt().size(); ++i) { in TEST_F()
48 EXPECT_EQ(simple.getListInt()[i], i + 1); in TEST_F()
50 EXPECT_EQ(*simple.getFirstUnionTest(), "100"); in TEST_F()
51 EXPECT_EQ(simple.getYesOrNo()[0], EnumType::YES); in TEST_F()
52 EXPECT_EQ(simple.getYesOrNo()[1], EnumType::EMPTY); in TEST_F()
54 write(out, simple); in TEST_F()
56 for (int i = 0; i < simple.getListInt().size(); ++i) { in TEST_F()
57 EXPECT_EQ(simple.getListInt()[i], simple2.getListInt()[i]); in TEST_F()
[all …]
/system/tools/xsdc/tests/resources/attr_group_simple/api/
Dcurrent.txt2 package attr.group.simple {
18 …method public static attr.group.simple.Student read(java.io.InputStream) throws javax.xml.datatype…
26 …method public static void write(attr.group.simple.XmlWriter, attr.group.simple.Student) throws jav…
/system/tools/aidl/
Dast_cpp_unittest.cpp173 ArgList simple("foo"); in TEST_F() local
174 CompareGeneratedCode(simple, "(foo)"); in TEST_F()
213 Assignment simple("foo", "8"); in TEST_F() local
214 CompareGeneratedCode(simple, "foo = 8;\n"); in TEST_F()
/system/tools/xsdc/tests/resources/simple_type/
DAndroid.bp5 package_name: "simple.type",
Dsimple_type.xsd28 <xs:element name="simple-types">
/system/tools/xsdc/tests/resources/purchase_simple/
DAndroid.bp5 package_name: "purchase.simple",
/system/tools/hidl/c2hal/
DREADME.md31 # Build the simple.h header:
32 …oid.hardware:hardware/interfaces -p android.hardware.simple@1.0 system/tools/hidl/c2hal/test/simpl…
/system/tools/xsdc/tests/resources/attr_group_simple/
DAndroid.bp5 package_name: "attr.group.simple",
/system/tools/xsdc/tests/resources/simple_complex_content/
DAndroid.bp5 package_name: "simple.complex.content",
/system/extras/tests/framebuffer/
DAndroid.bp13 name: "test-fb-simple",
/system/tools/hidl/c2hal/test/
DAndroid.bp29 "simple.h",
60 "simple.h",
/system/sepolicy/prebuilts/api/27.0/public/
Dvr_hwc.te16 # Hosts the VR HWC implementation and provides a simple Binder interface for VR
/system/sepolicy/prebuilts/api/26.0/public/
Dvr_hwc.te16 # Hosts the VR HWC implementation and provides a simple Binder interface for VR
/system/sepolicy/prebuilts/api/28.0/public/
Dvr_hwc.te16 # Hosts the VR HWC implementation and provides a simple Binder interface for VR
/system/sepolicy/prebuilts/api/30.0/public/
Dvr_hwc.te16 # Hosts the VR HWC implementation and provides a simple Binder interface for VR
/system/sepolicy/prebuilts/api/29.0/public/
Dvr_hwc.te16 # Hosts the VR HWC implementation and provides a simple Binder interface for VR
/system/sepolicy/public/
Dvr_hwc.te16 # Hosts the VR HWC implementation and provides a simple Binder interface for VR
/system/media/audio_utils/tests/
Dstatistics_tests.cpp142 static const double simple[] = { 1., 2., 3. }; in TEST() local
144 double rssum = android::audio_utils::sum<double, double>(simple); in TEST()
147 android::audio_utils::sum<double, android::audio_utils::KahanSum<double>>(simple); in TEST()
150 android::audio_utils::sum<double, android::audio_utils::NeumaierSum<double>>(simple); in TEST()
/system/core/adb/
DSOCKET-ACTIVATION.txt15 Type=simple
/system/security/identity/
DCredentialData.cpp146 const cppbor::Simple* simple = ((*array)[2])->asSimple(); in parseSacp() local
148 (simple != nullptr ? (simple->asBool()) : nullptr); in parseSacp()
/system/memory/libmemunreachable/tests/
DAllocator_test.cpp41 TEST_F(AllocatorTest, simple) { in TEST_F() argument
/system/tools/aidl/tests/lazy_test/
DREADME23 aidl_lazy_test_server is a simple test service.

12