Home
last modified time | relevance | path

Searched refs:numbers (Results 1 – 25 of 158) sorted by relevance

1234567

/aosp12/packages/apps/TV/partner_support/src/com/google/android/tv/partner/support/
H A DTunerSetupUtils.java80 List<String> numbers = in parseChannelNumber() local
83 numbers.removeAll(Collections.singleton("")); in parseChannelNumber()
84 if (numbers.size() < 1 || numbers.size() > 2) { in parseChannelNumber()
88 return numbers; in parseChannelNumber()
98 List<List<String>> numbers = new ArrayList<>(channelNumbers.size()); in parseChannelNumbers() local
101 numbers.add(parseChannelNumber(channelNumber)); in parseChannelNumbers()
104 return numbers; in parseChannelNumbers()
112 static boolean matchChannelNumber(List<String> numbers, List<String> other) { in matchChannelNumber() argument
113 if (numbers.isEmpty() || other.isEmpty()) { in matchChannelNumber()
118 while (i < numbers.size() && j < other.size()) { in matchChannelNumber()
[all …]
/aosp12/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/
H A DByteArrayHelpers.java159 public static byte[] toByteArray(Number... numbers) { in toByteArray() argument
160 if (numbers.length == 0) { in toByteArray()
164 if (VERBOSE) Log.v(TAG, "toByteArray - input: " + Arrays.toString(numbers)); in toByteArray()
167 ByteBuffer byteBuffer = ByteBuffer.allocate(numbers.length * (Double.SIZE / Byte.SIZE)) in toByteArray()
170 for (int i = 0; i < numbers.length; ++i) { in toByteArray()
171 Number value = numbers[i]; in toByteArray()
197 if (numbers.length != 0 && byteBuffer.position() < numbers.length) { in toByteArray()
200 numbers.length, byteBuffer.position())); in toByteArray()
/aosp12/frameworks/base/packages/VpnDialogs/src/com/android/vpndialogs/
H A DManageDialog.java139 String[] numbers = getNumbers(); in handleMessage() local
140 if (numbers != null) { in handleMessage()
150 numbers[1], numbers[2])); in handleMessage()
154 numbers[9], numbers[10])); in handleMessage()
171 String[] numbers = line.substring(prefix.length()).split(" +"); in getNumbers() local
173 if (!numbers[i].equals("0")) { in getNumbers()
174 return numbers; in getNumbers()
/aosp12/packages/apps/Dialer/java/com/android/dialer/blocking/
H A DBlocking.java71 Context context, ImmutableCollection<String> numbers, @Nullable String countryIso) { in block() argument
77 for (String number : numbers) { in block()
103 Context context, ImmutableCollection<String> numbers, @Nullable String countryIso) { in unblock() argument
109 for (String number : numbers) { in unblock()
141 Context context, ImmutableCollection<String> numbers, @Nullable String countryIso) {
149 for (String number : numbers) {
160 .or(Selection.column(BlockedNumbers.COLUMN_ORIGINAL_NUMBER).in(numbers))
/aosp12/art/test/708-jit-cache-churn/src/
H A DJitCacheChurnTest.java199 private final String [] numbers = { "One", "Two", "Three", "Four", "Five", "Six" }; field in JitCacheChurnTest.TaskNine
202 String number = numbers[instance % numbers.length]; in $noinline$Call()
208 private final String [] numbers = { "12345", "23451", "34512", "78901", "89012" }; field in JitCacheChurnTest.TaskTen
212 String number = numbers[instance % numbers.length]; in $noinline$Call()
214 odd += Integer.parseInt(numbers[i]); in $noinline$Call()
220 even += Integer.parseInt(numbers[i]); in $noinline$Call()
/aosp12/packages/apps/TV/partner_support/samples/src/com/example/partnersupportsampletvinput/
H A DLineupSelectionFragment.java253 List<String> numbers = in parseChannelNumber() local
256 numbers.removeAll(Collections.singleton("")); in parseChannelNumber()
257 if (numbers.size() < 1 || numbers.size() > 2) { in parseChannelNumber()
261 return numbers; in parseChannelNumber()
268 private static boolean matchChannelNumber(List<String> numbers, List<String> other) { in matchChannelNumber() argument
269 if (numbers.isEmpty() || other.isEmpty()) { in matchChannelNumber()
274 while (i < numbers.size() && j < other.size()) { in matchChannelNumber()
275 if (!numbers.get(i++).equals(other.get(j++))) { in matchChannelNumber()
/aosp12/system/bt/
H A DEventLogTags.logtags1 # The entries in this file map a sparse set of log tag numbers to tag names.
4 # Tag numbers are decimal integers, from 0 to 2^31. (Let's leave the
7 # Tag names are one or more ASCII letters and numbers or underscores, i.e.
11 # Tag numbers and names are separated by whitespace. Blank lines and lines
/aosp12/packages/modules/NeuralNetworks/tools/systrace_parser/parser/test/
H A Domr1.txt15 …al ignores missing (n/a) values and thus is not necessarily consistent with the rest of the numbers
30 …al ignores missing (n/a) values and thus is not necessarily consistent with the rest of the numbers
45 …al ignores missing (n/a) values and thus is not necessarily consistent with the rest of the numbers
60 …al ignores missing (n/a) values and thus is not necessarily consistent with the rest of the numbers
75 …al ignores missing (n/a) values and thus is not necessarily consistent with the rest of the numbers
H A Dunittest.txt15 …al ignores missing (n/a) values and thus is not necessarily consistent with the rest of the numbers
31 …al ignores missing (n/a) values and thus is not necessarily consistent with the rest of the numbers
/aosp12/system/core/storaged/
H A DEventLogTags.logtags1 # The entries in this file map a sparse set of log tag numbers to tag names.
4 # Tag numbers are decimal integers, from 0 to 2^31. (Let's leave the
7 # Tag names are one or more ASCII letters and numbers or underscores, i.e.
11 # Tag numbers and names are separated by whitespace. Blank lines and lines
/aosp12/system/logging/liblog/
H A Devent.logtags1 # The entries in this file map a sparse set of log tag numbers to tag names.
4 # Tag numbers are decimal integers, from 0 to 2^31. (Let's leave the
7 # Tag names are one or more ASCII letters and numbers or underscores, i.e.
11 # Tag numbers and names are separated by whitespace. Blank lines and lines
/aosp12/system/logging/logd/
H A Devent.logtags1 # The entries in this file map a sparse set of log tag numbers to tag names.
4 # Tag numbers are decimal integers, from 0 to 2^31. (Let's leave the
7 # Tag names are one or more ASCII letters and numbers or underscores, i.e.
11 # Tag numbers and names are separated by whitespace. Blank lines and lines
/aosp12/frameworks/ex/common/tests/src/com/android/common/widget/
H A DGroupingListAdapterTests.java107 private void buildCursor(String... numbers) { in buildCursor() argument
110 for (String number : numbers) { in buildCursor()
288 String[] numbers = new String[500]; in testGroupDescriptorArrayGrowth() local
289 for (int i = 0; i < numbers.length; i++) { in testGroupDescriptorArrayGrowth()
292 numbers[i] = String.valueOf((i / 2) * 2); in testGroupDescriptorArrayGrowth()
295 buildCursor(numbers); in testGroupDescriptorArrayGrowth()
/aosp12/frameworks/native/services/surfaceflinger/EventLog/
H A DEventLogTags.logtags1 # The entries in this file map a sparse set of log tag numbers to tag names.
4 # Tag numbers are decimal integers, from 0 to 2^31. (Let's leave the
7 # Tag names are one or more ASCII letters and numbers or underscores, i.e.
11 # Tag numbers and names are separated by whitespace. Blank lines and lines
/aosp12/frameworks/native/services/inputflinger/dispatcher/
H A DEventLogTags.logtags1 # The entries in this file map a sparse set of log tag numbers to tag names.
4 # Tag numbers are decimal integers, from 0 to 2^31. (Let's leave the
7 # Tag names are one or more ASCII letters and numbers or underscores, i.e.
11 # Tag numbers and names are separated by whitespace. Blank lines and lines
/aosp12/frameworks/av/media/utils/
H A DEventLogTags.logtags1 # The entries in this file map a sparse set of log tag numbers to tag names.
4 # Tag numbers are decimal integers, from 0 to 2^31. (Let's leave the
7 # Tag names are one or more ASCII letters and numbers or underscores, i.e.
11 # Tag numbers and names are separated by whitespace. Blank lines and lines
/aosp12/hardware/interfaces/radio/1.4/
H A DIRadioIndication.hal27 * Report the current list of emergency numbers
34 * Radio must report all the valid emergency numbers with known mobile country code, mobile
38 * and 119 must be available when sim is not present). Radio shall not report emergency numbers
43 * Radio must report the complete list of emergency numbers whenever the emergency numbers in
50 * @param emergencyNumberList Current list of emergency numbers known to radio.
/aosp12/frameworks/base/core/java/android/view/
H A DEventLogTags.logtags5 # The entries in this file map a sparse set of log tag numbers to tag names.
8 # Tag numbers are decimal integers, from 0 to 2^31. (Let's leave the
11 # Tag names are one or more ASCII letters and numbers or underscores, i.e.
15 # Tag numbers and names are separated by whitespace. Blank lines and lines
/aosp12/system/memory/lmkd/
H A Devent.logtags1 # The entries in this file map a sparse set of log tag numbers to tag names.
4 # Tag numbers are decimal integers, from 0 to 2^31. (Let's leave the
7 # Tag names are one or more ASCII letters and numbers or underscores, i.e.
11 # Tag numbers and names are separated by whitespace. Blank lines and lines
/aosp12/packages/services/Car/cpp/telemetry/proto/
H A DCarData.proto44 // DO NOT USE field numbers above 10,000 in AOSP.
45 // Field numbers 10,000 - 19,999 are reserved for non-AOSP (e.g. OEMs) to
46 // use. Field numbers 20,000 and above are reserved for future use; do not
/aosp12/packages/apps/Dialer/java/com/android/incallui/
H A DCallerInfoUtils.java96 final String[] numbers = number.split("&"); in buildCallerInfo() local
97 number = numbers[0]; in buildCallerInfo()
98 if (numbers.length > 1) { in buildCallerInfo()
99 info.forwardingNumber = numbers[1]; in buildCallerInfo()
/aosp12/packages/apps/Dialer/java/com/android/dialer/searchfragment/
H A DREADME.md47 duplicate phone numbers returned from cp2 and phone numbers that do not match
57 * Country-code agnostic matching for E164 normalized numbers (9177 matches
/aosp12/frameworks/base/core/proto/android/
H A Dtypedef.proto27 // 60001 is a random field numbers assigned to the custom options
28 // numbers between 50000 and 99999 are reserved for internal use within individual organizations
/aosp12/frameworks/base/packages/SettingsLib/tests/robotests/src/com/android/settingslib/emergencynumber/
H A DEmergencyNumberUtilsTest.java149 Map<Integer, List<EmergencyNumber>> numbers = new ArrayMap<>(); in addEmergencyNumberToTelephony() local
152 numbers.put(subId, numbersForSubId); in addEmergencyNumberToTelephony()
153 when(mTelephonyManager.getEmergencyNumberList(anyInt())).thenReturn(numbers); in addEmergencyNumberToTelephony()
/aosp12/packages/apps/Dialer/java/com/android/dialer/phonelookup/blockednumber/
H A DSystemBlockedNumberPhoneLookup.java94 ImmutableSet<DialerPhoneNumber> numbers) { in queryNumbers() argument
96 PartitionedNumbers partitionedNumbers = new PartitionedNumbers(numbers); in queryNumbers()
138 for (DialerPhoneNumber number : numbers) { in queryNumbers()

1234567