Home
last modified time | relevance | path

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

1234

/system/tools/aidl/tests/android/aidl/tests/
DITestService.aidl76 List<String> ReverseStringList(in List<String> input, in ReverseStringList()
77 out List<String> repeated); in ReverseStringList()
78 List<IBinder> ReverseNamedCallbackList(in List<IBinder> input, in ReverseNamedCallbackList()
79 out List<IBinder> repeated); in ReverseNamedCallbackList()
91 @nullable List<String> RepeatNullableStringList(in @nullable List<String> input); in RepeatNullableStringList()
95 void TakesAnIBinderList(in List<IBinder> input); in TakesAnIBinderList()
97 void TakesANullableIBinderList(in @nullable List<IBinder> input); in TakesANullableIBinderList()
111 @nullable @utf8InCpp List<String> ReverseUtf8CppStringList( in ReverseUtf8CppStringList()
112 in @nullable @utf8InCpp List<String> input, in ReverseUtf8CppStringList()
113 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/core/libsysutils/include/sysutils/
DList.h43 class List
61 friend class List;
160 friend class List;
164 List() { in List() function
167 List(const List<T>& src) { // copy-constructor in List() function
171 virtual ~List() { in ~List()
179 List<T>& operator=(const List<T>& right);
314 List<T>& List<T>::operator=(const List<T>& right)
/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/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()
DCountryZoneTree.java32 import java.util.List;
50 private final List<ZoneInfo> zoneInfos;
56 ZoneNode(String id, List<ZoneInfo> zoneInfos, int periodOffset, int periodCount) { in ZoneNode()
95 List<ZoneInfo> getZoneInfos() { in getZoneInfos()
160 List<CountryZonesFile.TimeZoneMapping> timeZoneMappings = country.getTimeZoneMappingsList(); in create()
164 List<ZoneInfo> zoneInfos = new ArrayList<>(); in create()
202 TimeZoneNames timeZoneNames, List<ZoneInfo> zoneInfos) { in addExtraPeriodSplits()
334 private static CountryZoneTree create(String countryIso, List<ZoneInfo> zoneInfos, in create()
374 List<ZoneInfo> zoneInfosToSplit = currentNode.getZoneInfos(); in growTree()
377 Map<ZonePeriodsKey, List<ZoneInfo>> newSetsMap = new HashMap<>(); in growTree()
[all …]
DTreeNode.java19 import java.util.List;
31 private final List<V> children = new ArrayList<>();
66 public final List<V> getChildren() { in getChildren()
/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()
DIBluetoothPbap.aidl27 List<BluetoothDevice> getConnectedDevices(); in getConnectedDevices()
28 List<BluetoothDevice> getDevicesMatchingConnectionStates(in int[] states); in getDevicesMatchingConnectionStates()
DIBluetoothPan.aidl32 List<BluetoothDevice> getConnectedDevices(); in getConnectedDevices()
33 List<BluetoothDevice> getDevicesMatchingConnectionStates(in int[] states); in getDevicesMatchingConnectionStates()
DIBluetoothPbapClient.aidl29 List<BluetoothDevice> getConnectedDevices(); in getConnectedDevices()
30 List<BluetoothDevice> getDevicesMatchingConnectionStates(in int[] states); in getDevicesMatchingConnectionStates()
DIBluetoothAvrcpController.aidl30 List<BluetoothDevice> getConnectedDevices(); in getConnectedDevices()
31 List<BluetoothDevice> getDevicesMatchingConnectionStates(in int[] states); in getDevicesMatchingConnectionStates()
DIBluetoothSap.aidl32 List<BluetoothDevice> getConnectedDevices(); in getConnectedDevices()
33 List<BluetoothDevice> getDevicesMatchingConnectionStates(in int[] states); in getDevicesMatchingConnectionStates()
DIBluetoothMap.aidl32 List<BluetoothDevice> getConnectedDevices(); in getConnectedDevices()
33 List<BluetoothDevice> getDevicesMatchingConnectionStates(in int[] states); in getDevicesMatchingConnectionStates()
/system/timezone/tzlookup_generator/src/test/java/com/android/libcore/timezone/tzlookup/
DTzLookupGeneratorTest.java34 import java.util.List;
64 List<ZoneTabFile.CountryEntry> gbZoneTabEntries = createValidZoneTabEntriesGb(); in invalidCountryZonesFile()
82 List<ZoneTabFile.CountryEntry> gbZoneTabEntries = createValidZoneTabEntriesGb(); in invalidRulesVersion()
150 List<ZoneTabFile.CountryEntry> gbZoneTabEntries = createValidZoneTabEntriesGb(); in badDefaultId()
172 List<ZoneTabFile.CountryEntry> gbZoneTabEntries = createValidZoneTabEntriesGb(); in explicitDefaultIdInvalid()
194 List<ZoneTabFile.CountryEntry> gbZoneTabEntries = createValidZoneTabEntriesGb(); in calculatedDefaultZone()
211 List<ZoneTabFile.CountryEntry> gbZoneTabEntries = createValidZoneTabEntriesGb(); in explicitDefaultZone()
229 List<ZoneTabFile.CountryEntry> gbZoneTabEntries = createValidZoneTabEntriesGb(); in countryZonesContainsNonLowercaseIsoCode()
251 List<ZoneTabFile.CountryEntry> gbZoneTabEntries = createValidZoneTabEntriesGb(); in countryZonesContainsDuplicate()
358 List<ZoneTabFile.CountryEntry> zoneTabEntriesWithBadId = in badTimeZoneMappingId()
[all …]
DZoneTabFileTest.java28 import java.util.List;
108 Map<String, List<String>> expected = new HashMap<>(); in createCountryToOlsonIdsMap()
113 Map<String, List<String>> actual = ZoneTabFile.createCountryToOlsonIdsMap(zoneTab); in createCountryToOlsonIdsMap()
117 private void addIds(Map<String, List<String>> map, String iso, String... ids) { in addIds()
/system/tools/hidl/docs/src/parser/elements/
DEntryCollectionParser.kt34 constructor(tokens: List<Token>) : this(tokens.listIterator())
42 override fun scanTokens(iter: ListIterator<Token>): List<Token> { in scanTokens()
50 override fun parseTokens(tokens: List<Token>) { in parseTokens()
DAbstractParser.kt44 abstract fun parseTokens(tokens: List<Token>) in parseTokens()
49 abstract fun scanTokens(iter: ListIterator<Token>): List<Token> in parseTokens()
51 protected fun scanDocTokens(iter: ListIterator<Token>): List<Token> { in parseTokens()
85 protected fun scanDeclarationTokens(iter: ListIterator<Token>): List<Token> { in scanDeclarationTokens()
DDocParser.kt37 private fun formatDescription(tokens: List<Token>): String { in formatDescription()
51 override fun scanTokens(iter: ListIterator<Token>): List<Token> { in scanTokens()
56 override fun parseTokens(tokens: List<Token>) { in parseTokens()
/system/tools/hidl/docs/src/parser/elements/declarations/
DAbstractDeclarationParser.kt33 override fun scanTokens(iter: ListIterator<Token>): List<Token> { in scanTokens()
50 … closeDelimiter: TokenGrammar = TokenGrammar.PAREN_CLOSE): List<List<Token>> { in scanDelimitedList()
51 val allFields = mutableListOf<List<Token>>() //top-level list in scanDelimitedList()

1234