Home
last modified time | relevance | path

Searched refs:List (Results 1 – 25 of 134) sorted by relevance

123456

/system/tools/xsdc/src/com/android/xsdc/tag/
DXsdGeneralExtension.java20 import java.util.List;
24 final private List<XsdAttribute> attributes;
25 final private List<XsdElement> elements;
27 public XsdGeneralExtension(XsdType base, List<XsdAttribute> attributes, in XsdGeneralExtension()
28 List<XsdElement> elements) { in XsdGeneralExtension()
39 public List<XsdAttribute> getAttributes() { in getAttributes()
43 public List<XsdElement> getElements() { in getElements()
DXsdGeneralRestriction.java20 import java.util.List;
24 final private List<XsdAttribute> attributes;
25 final private List<XsdElement> elements;
27 public XsdGeneralRestriction(XsdType base, List<XsdAttribute> attributes, in XsdGeneralRestriction()
28 List<XsdElement> elements) { in XsdGeneralRestriction()
39 public List<XsdAttribute> getAttributes() { in getAttributes()
43 public List<XsdElement> getElements() { in getElements()
DXsdComplexType.java21 import java.util.List;
25 final private List<XsdAttribute> attributes;
26 final private List<XsdElement> elements;
28 XsdComplexType(String name, XsdType base, List<XsdAttribute> attributes, in XsdComplexType()
29 List<XsdElement> elements) { in XsdComplexType()
42 public List<XsdAttribute> getAttributes() { in getAttributes()
46 public List<XsdElement> getElements() { in getElements()
DXsdEnumRestriction.java20 import java.util.List;
24 final private List<XsdEnumeration> enums;
26 public XsdEnumRestriction(XsdType base, List<XsdEnumeration> enums) { in XsdEnumRestriction()
36 public List<XsdEnumeration> getEnums() { in getEnums()
DXsdUnion.java22 import java.util.List;
25 final private List<XsdType> memberTypes;
27 public XsdUnion(String name, List<XsdType> memberTypes) throws XsdParserException { in XsdUnion()
35 public List<XsdType> getMemberTypes() { in getMemberTypes()
DXsdRestriction.java20 import java.util.List;
25 final private List<XsdEnumeration> enums;
27 public XsdRestriction(String name, XsdType base, List<XsdEnumeration> enums) in XsdRestriction()
41 public List<XsdEnumeration> getEnums() { in getEnums()
DXsdComplexContent.java19 import java.util.List;
23 public XsdComplexContent(String name, XsdType base, List<XsdAttribute> attributes, in XsdComplexContent()
24 List<XsdElement> elements) { in XsdComplexContent()
/system/tools/aidl/tests/android/aidl/tests/
DITestService.aidl79 List<String> ReverseStringList(in List<String> input, in ReverseStringList()
80 out List<String> repeated); in ReverseStringList()
81 List<IBinder> ReverseNamedCallbackList(in List<IBinder> input, in ReverseNamedCallbackList()
82 out List<IBinder> repeated); in ReverseNamedCallbackList()
98 @nullable List<String> RepeatNullableStringList(in @nullable List<String> input); in RepeatNullableStringList()
102 void TakesAnIBinderList(in List<IBinder> input); in TakesAnIBinderList()
104 void TakesANullableIBinderList(in @nullable List<IBinder> input); in TakesANullableIBinderList()
118 @nullable @utf8InCpp List<String> ReverseUtf8CppStringList( in ReverseUtf8CppStringList()
119 in @nullable @utf8InCpp List<String> input, in ReverseUtf8CppStringList()
120 out @nullable @utf8InCpp List<String> repeated); in ReverseUtf8CppStringList()
/system/tools/hidl/docs/src/parser/files/
DAbstractFileParser.kt36 abstract class AbstractFileParser(tokens: List<Token>) {
44 protected val entries: List<EntryParser> by lazy { in <lambda>()
50 val enums: List<EntryParser> by lazy { getEntriesByDeclarationParser<EnumDeclarationParser>() } in <lambda>()
51 …val typedefs: List<EntryParser> by lazy { getEntriesByDeclarationParser<TypedefDeclarationParser>(… in <lambda>()
52 …val structs: List<EntryParser> by lazy { getEntriesByCompoundDeclarationParser(TokenGrammar.STRUCT… in <lambda>()
53 …val unions: List<EntryParser> by lazy { getEntriesByCompoundDeclarationParser(TokenGrammar.UNION) } in <lambda>()
55 protected inline fun <reified T> getEntriesByDeclarationParser(): List<EntryParser> { in getEntriesByDeclarationParser()
59 private fun getEntriesByCompoundDeclarationParser(identifier: TokenGrammar): List<EntryParser> { in getEntriesByCompoundDeclarationParser()
74 private fun insertDocsForRequiredTypes(tokens: List<Token>): List<Token> { in insertDocsForRequiredTypes()
116 private fun indexInsertionPointforDocTokens(tokens: List<Token>): Int { in indexInsertionPointforDocTokens()
DInterfaceFileParser.kt27 class InterfaceFileParser(tokens: List<Token>) : AbstractFileParser(tokens) {
49 val annotations: List<AnnotationParser> get() = interfaceEntry.annotationParsers //name, value
50 …val methods: List<EntryParser> by lazy { getEntriesByDeclarationParser<MethodDeclarationParser>() } in <lambda>()
57 fun isInterface(tokens: List<Token>): Boolean { in isInterface()
/system/timezone/tzlookup_generator/src/main/java/com/android/libcore/timezone/tzlookup/
DZoneTabFile.java25 import java.util.List;
35 private final List<CountryEntry> countryEntries = new ArrayList<>();
42 List<String> lines = Files in parse()
46 List<String> mappingLines = in parse()
66 List<CountryEntry> getCountryEntries() { in getCountryEntries()
70 static Map<String, List<String>> createCountryToOlsonIdsMap(ZoneTabFile zoneTab) { in createCountryToOlsonIdsMap()
71 Map<String, List<String>> countryIsoToOlsonIdsMap = new HashMap<>(); in createCountryToOlsonIdsMap()
73 List<String> olsonIds = countryIsoToOlsonIdsMap.computeIfAbsent( in createCountryToOlsonIdsMap()
DCountryZonesFileSupport.java25 import java.util.List;
49 static List<String> extractIsoCodes(List<CountryZonesFile.Country> countries) { in extractIsoCodes()
55 static List<String> extractIds(List<CountryZonesFile.TimeZoneMapping> timeZones) { in extractIds()
DTzLookupGenerator.java32 import java.util.List;
121 Map<String, List<String>> zoneTabMapping = in execute()
123 List<CountryZonesFile.Country> countriesIn = countryZonesIn.getCountriesList(); in execute()
124 List<String> countriesInIsos = CountryZonesFileSupport.extractIsoCodes(countriesIn); in execute()
140 List<String> upperCaseCountriesInIsos = Utils.toUpperCase(countriesInIsos); in execute()
176 Map<String, List<String>> zoneTabMapping, List<CountryZonesFile.Country> countriesIn, in createOutputTimeZones()
194 List<String> zoneTabCountryTimeZoneIds = zoneTabMapping.get(isoCode.toUpperCase()); in createOutputTimeZones()
218 List<String> zoneTabCountryTimeZoneIds, in processCountry()
224 List<CountryZonesFile.TimeZoneMapping> timeZonesIn = in processCountry()
233 List<String> countryTimeZoneIds = CountryZonesFileSupport.extractIds(timeZonesIn); in processCountry()
[all …]
/system/tools/xsdc/tests/src/com/android/xsdc/tests/
DXmlParserTest.java55 List shipToList = (List) purchaseOrderType.getMethod("getShipTo").invoke(instance); in testPurchaseSimple()
169 List entities = (List) stringTypes.getMethod("getEntities").invoke(stringTypesInstance); in testPredefinedTypes()
175 List nmTokens = (List) stringTypes.getMethod("getNmtokens").invoke(stringTypesInstance); in testPredefinedTypes()
280 List iDREFS = (List) miscTypes.getMethod("getIDREFS").invoke(miscTypesInstance); in testPredefinedTypes()
298 List listLong = (List) listPrimitiveTypes.getMethod("getListLong").invoke( in testPredefinedTypes()
300 List listInt = (List) listPrimitiveTypes.getMethod("getListInt").invoke( in testPredefinedTypes()
302 List listShort = (List) listPrimitiveTypes.getMethod("getListShort").invoke( in testPredefinedTypes()
304 List listByte = (List) listPrimitiveTypes.getMethod("getListByte").invoke( in testPredefinedTypes()
306 List listDouble = (List) listPrimitiveTypes.getMethod("getListDouble").invoke( in testPredefinedTypes()
308 List listFloat = (List) listPrimitiveTypes.getMethod("getListFloat").invoke( in testPredefinedTypes()
[all …]
DTestHelper.java32 import java.util.List;
79 private List<InMemoryJavaClassObject> classObjects;
94 List<InMemoryJavaClassObject> getAllClasses() { in getAllClasses()
112 List<JavaFileObject> javaFileObjects = new ArrayList<>(); in parseXsdAndCompile()
121 private static List<InMemoryJavaClassObject> compile(List<JavaFileObject> javaFileObjects) in compile()
125 List<InMemoryJavaClassObject> ret = null; in compile()
/system/tools/xsdc/tests/resources/predefined_types/api/
Dcurrent.txt28 method public java.util.List<java.lang.Boolean> getListBoolean();
29 method public java.util.List<java.lang.Byte> getListByte();
30 method public java.util.List<java.lang.Double> getListDouble();
31 method public java.util.List<java.lang.Float> getListFloat();
32 method public java.util.List<java.lang.Integer> getListInt();
33 method public java.util.List<java.lang.Long> getListLong();
34 method public java.util.List<java.lang.Short> getListShort();
35 method public void setListBoolean(java.util.List<java.lang.Boolean>);
36 method public void setListByte(java.util.List<java.lang.Byte>);
37 method public void setListDouble(java.util.List<java.lang.Double>);
[all …]
/system/core/libutils/include/utils/
DList.h44 class List
62 friend class List;
161 friend class List;
165 List() { in List() function
168 List(const List<T>& src) { // copy-constructor in List() function
172 virtual ~List() { in ~List()
180 List<T>& operator=(const List<T>& right);
315 List<T>& List<T>::operator=(const List<T>& right)
/system/keymaster/include/keymaster/
DList.h42 class List
60 friend class List;
159 friend class List;
163 List() { in List() function
166 List(const List<T>& src) { // copy-constructor in List() function
170 virtual ~List() { in ~List()
178 List<T>& operator=(const List<T>& right);
313 List<T>& List<T>::operator=(const List<T>& right)
/system/libvintf/xsd/compatibilityMatrix/api/
Dcurrent.txt13 method public java.util.List<compatibility.matrix.Hal> getHal();
14 method public java.util.List<compatibility.matrix.Kernel> getKernel();
22 method public java.util.List<compatibility.matrix.Xmlfile> getXmlfile();
52 method public java.util.List<java.lang.String> getFqname();
55 method public java.util.List<java.lang.String> getVersion();
56 method public java.util.List<compatibility.matrix.Interface> get_interface();
64 method public java.util.List<java.lang.String> getInstance();
66 method public java.util.List<java.lang.String> getRegexInstance();
73 method public java.util.List<compatibility.matrix.Config> getConfig();
81 method public java.util.List<compatibility.matrix.Config> getConfig();
[all …]
/system/libvintf/xsd/halManifest/api/
Dcurrent.txt7 method public java.util.List<java.lang.String> getFqname();
11 method public java.util.List<java.lang.String> getVersion();
12 method public java.util.List<hal.manifest.Interface> get_interface();
29 method public java.util.List<java.lang.String> getInstance();
36 method public java.util.List<hal.manifest.Kernel.Config> getConfig();
51 method public java.util.List<hal.manifest.Hal> getHal();
57 method public java.util.List<hal.manifest.VendorNdk> getVendorNdk();
59 method public java.util.List<hal.manifest.Vndk> getVndk();
76 method public java.util.List<java.lang.String> getVersion();
81 method public java.util.List<java.lang.String> getLibrary();
[all …]
/system/apex/apexd/aidl/android/apex/
DIApexService.aidl35 void unstagePackages(in @utf8InCpp List<String> active_package_paths); in unstagePackages()
57 void preinstallPackages(in @utf8InCpp List<String> package_tmp_paths); in preinstallPackages()
62 void postinstallPackages(in @utf8InCpp List<String> package_tmp_paths); in postinstallPackages()
72 boolean stagePackages(in @utf8InCpp List<String> package_tmp_paths); in stagePackages()
/system/core/adb/fastdeploy/deploypatchgenerator/src/com/android/fastdeploy/
DDeployPatchGenerator.java27 import java.util.List;
35 import java.util.List;
63 List<APKEntry> deviceZipEntries = getMetadataFromFile(deviceMetadataPath); in main()
73 List<APKEntry> hostFileEntries = PatchUtils.getAPKMetaData(hostFile).getEntriesList(); in main()
83 List<SimpleEntry<APKEntry, APKEntry>> identicalContentsEntrySet = in main()
120 … private static List<APKEntry> getMetadataFromFile(String deviceMetadataPath) throws IOException { in getMetadataFromFile()
126 private static List<SimpleEntry<APKEntry, APKEntry>> getIdenticalContents( in getIdenticalContents()
127 List<APKEntry> deviceZipEntries, List<APKEntry> hostZipEntries) throws IOException { in getIdenticalContents()
128 List<SimpleEntry<APKEntry, APKEntry>> identicalContents = in getIdenticalContents()
152 List<SimpleEntry<APKEntry, APKEntry>> identicalContentsEntrySet, File hostFile) in reportIdenticalContents()
[all …]
/system/tools/xsdc/tests/resources/simple_type/api/
Dcurrent.txt12 method public java.util.List<java.lang.String> getExample1_optional();
13 method public java.util.List<java.lang.String> getExample2_optional();
14 method public java.util.List<java.lang.String> getExample3_optional();
19 method public java.util.List<java.lang.Integer> getListInt();
20 method public java.util.List<java.lang.String> getUnionTest();
22 method public void setListInt(java.util.List<java.lang.Integer>);
23 method public void setUnionTest(java.util.List<java.lang.String>);
/system/timezone/tzlookup_generator/src/main/java/com/android/libcore/timezone/tzlookup/zonetree/
DZoneInfo.java24 import java.util.List;
40 private final List<ZoneOffsetPeriod> zoneOffsetPeriods;
45 private ZoneInfo(String zoneId, int priority, List<ZoneOffsetPeriod> zoneOffsetPeriods) { in ZoneInfo()
64 List<ZoneOffsetPeriod> zoneOffsetPeriods = new ArrayList<>(); in create()
118 List<ZoneOffsetPeriod> periodsSubList = in createZonePeriodsKey()
/system/bt/binder/android/bluetooth/
DIBluetoothHearingAid.aidl30 List<BluetoothDevice> getConnectedDevices(); in getConnectedDevices()
31 List<BluetoothDevice> getDevicesMatchingConnectionStates(in int[] states); in getDevicesMatchingConnectionStates()
34 List<BluetoothDevice> getActiveDevices(); in getActiveDevices()

123456