Home
last modified time | relevance | path

Searched refs:NUMBERS (Results 1 – 25 of 28) sorted by relevance

12

/external/guava/guava-tests/test/com/google/common/primitives/
DFloatsTest.java51 private static final float[] NUMBERS = field in FloatsTest
71 private static final float[] VALUES = Floats.concat(NUMBERS, new float[] {NaN});
80 for (float value : NUMBERS) { in testIsFinite()
103 for (float value : NUMBERS) { in testContains()
120 for (float value : NUMBERS) { in testIndexOf()
163 for (float value : NUMBERS) { in testIndexOf_arrayTarget()
183 for (float value : NUMBERS) { in testLastIndexOf()
207 assertEquals(GREATEST, Floats.max(NUMBERS)); in testMax()
229 assertEquals(LEAST, Floats.min(NUMBERS)); in testMin()
542 for (float f : NUMBERS) { in testTryParseOfToStringIsOriginal()
[all …]
DDoublesTest.java52 private static final double[] NUMBERS = field in DoublesTest
76 private static final double[] VALUES = Doubles.concat(NUMBERS, new double[] {NaN});
85 for (double value : NUMBERS) { in testIsFinite()
108 for (double value : NUMBERS) { in testContains()
126 for (double value : NUMBERS) { in testIndexOf()
169 for (double value : NUMBERS) { in testIndexOf_arrayTarget()
191 for (double value : NUMBERS) { in testLastIndexOf()
216 assertEquals(GREATEST, Doubles.max(NUMBERS)); in testMax()
239 assertEquals(LEAST, Doubles.min(NUMBERS)); in testMin()
584 for (double d : NUMBERS) { in testTryParseOfToStringIsOriginal()
[all …]
/external/guava/android/guava-tests/test/com/google/common/primitives/
DFloatsTest.java51 private static final float[] NUMBERS = field in FloatsTest
71 private static final float[] VALUES = Floats.concat(NUMBERS, new float[] {NaN});
80 for (float value : NUMBERS) { in testIsFinite()
103 for (float value : NUMBERS) { in testContains()
120 for (float value : NUMBERS) { in testIndexOf()
163 for (float value : NUMBERS) { in testIndexOf_arrayTarget()
183 for (float value : NUMBERS) { in testLastIndexOf()
207 assertEquals(GREATEST, Floats.max(NUMBERS)); in testMax()
229 assertEquals(LEAST, Floats.min(NUMBERS)); in testMin()
542 for (float f : NUMBERS) { in testTryParseOfToStringIsOriginal()
[all …]
DDoublesTest.java52 private static final double[] NUMBERS = field in DoublesTest
76 private static final double[] VALUES = Doubles.concat(NUMBERS, new double[] {NaN});
85 for (double value : NUMBERS) { in testIsFinite()
108 for (double value : NUMBERS) { in testContains()
126 for (double value : NUMBERS) { in testIndexOf()
169 for (double value : NUMBERS) { in testIndexOf_arrayTarget()
191 for (double value : NUMBERS) { in testLastIndexOf()
216 assertEquals(GREATEST, Doubles.max(NUMBERS)); in testMax()
239 assertEquals(LEAST, Doubles.min(NUMBERS)); in testMin()
584 for (double d : NUMBERS) { in testTryParseOfToStringIsOriginal()
[all …]
/external/cldr/tools/cldr-code/src/main/java/org/unicode/cldr/test/
DXPathToMenu.java30 LDMLConstants.NUMBERS + "/" + CURRENCIES;
75 } else if (path.startsWith("//ldml/" + LDMLConstants.NUMBERS)) { in xpathToMenu()
76 theMenu = LDMLConstants.NUMBERS; in xpathToMenu()
DCheckForExemplars.java95 static final UnicodeSet NUMBERS = new UnicodeSet("[[:N:]]").freeze(); field in CheckForExemplars
326 if (NUMBERS.containsSome(value)) { in handleCheck()
327 UnicodeSet disallowed = new UnicodeSet().addAll(value).retainAll(NUMBERS); in handleCheck()
396 disallowed = new UnicodeSet().addAll(value).retainAll(NUMBERS); in handleCheck()
/external/cldr/tools/cldr-code/src/main/java/org/unicode/cldr/tool/
DCLDRFilePseudolocalizer.java72 private static final String[] NUMBERS = { field in CLDRFilePseudolocalizer.PseudolocalizerXA
191 String word = NUMBERS[wordIndex++ % NUMBERS.length]; in end()
DGenerateAliases.java145 static final UnicodeSet NUMBERS = new UnicodeSet("[0-9]"); field in GenerateAliases.Builder
162 if (NUMBERS.containsAll(key)) { // special check for items like 172 in getGoodToBad()
/external/guava/guava-tests/test/com/google/common/collect/
DMinMaxPriorityQueueTest.java133 private static final ImmutableList<Integer> NUMBERS = ImmutableList.of(4, 8, 15, 16, 23, 42); field in MinMaxPriorityQueueTest
136 MinMaxPriorityQueue<Integer> queue = MinMaxPriorityQueue.create(NUMBERS); in testCreation_withContents()
145 MinMaxPriorityQueue.orderedBy(SOME_COMPARATOR).create(NUMBERS); in testCreation_comparator_withContents()
153 MinMaxPriorityQueue<Integer> queue = MinMaxPriorityQueue.expectedSize(8).create(NUMBERS); in testCreation_expectedSize_withContents()
161 MinMaxPriorityQueue<Integer> queue = MinMaxPriorityQueue.maximumSize(42).create(NUMBERS); in testCreation_maximumSize_withContents()
175 .create(NUMBERS); in testCreation_allOptions()
/external/guava/android/guava-tests/test/com/google/common/collect/
DMinMaxPriorityQueueTest.java133 private static final ImmutableList<Integer> NUMBERS = ImmutableList.of(4, 8, 15, 16, 23, 42); field in MinMaxPriorityQueueTest
136 MinMaxPriorityQueue<Integer> queue = MinMaxPriorityQueue.create(NUMBERS); in testCreation_withContents()
145 MinMaxPriorityQueue.orderedBy(SOME_COMPARATOR).create(NUMBERS); in testCreation_comparator_withContents()
153 MinMaxPriorityQueue<Integer> queue = MinMaxPriorityQueue.expectedSize(8).create(NUMBERS); in testCreation_expectedSize_withContents()
161 MinMaxPriorityQueue<Integer> queue = MinMaxPriorityQueue.maximumSize(42).create(NUMBERS); in testCreation_maximumSize_withContents()
175 .create(NUMBERS); in testCreation_allOptions()
/external/cldr/tools/cldr-code/src/main/java/org/unicode/cldr/icu/
DLDMLConstants.java32 public static final String NUMBERS = "numbers"; field in LDMLConstants
527 public static final String NUMBERS_O = "<" + NUMBERS + ">";
528 public static final String NUMBERS_C = "</" + NUMBERS + ">";
/external/fonttools/Lib/fontTools/feaLib/
Dlexer.py11 NUMBERS = (NUMBER, HEXADECIMAL, OCTAL) variable in Lexer
Dparser.py1192 if self.next_token_type_ in Lexer.NUMBERS:
1197 if self.next_token_type_ in Lexer.NUMBERS:
1223 if self.next_token_type_ in Lexer.NUMBERS:
1228 if self.next_token_type_ in Lexer.NUMBERS:
2198 if self.cur_token_type_ in Lexer.NUMBERS:
/external/cldr/tools/cldr-code/src/main/java/org/unicode/cldr/util/
DLDMLUtilities.java485 } else if (token.indexOf(LDMLConstants.NUMBERS) > -1) { in getICUEquivalent()
/external/harfbuzz_ng/perf/texts/
Den-words.txt7633 NUMBERS
/external/pcre/doc/
Dpcre2.txt7779 DUPLICATE GROUP NUMBERS
/external/cldr/common/uca/
Dallkeys_DUCET.txt5959 1F522 ; [*1359.0020.0002.1F522] # INPUT SYMBOL FOR NUMBERS
Dallkeys_CLDR.txt7463 1F522 ; [.164D.0020.0002] # INPUT SYMBOL FOR NUMBERS
DUCA_Rules.txt7384 < �� # 6.0 [So] [164D.0020.0002] U+1F522 INPUT SYMBOL FOR NUMBERS
/external/cldr/tools/cldr-code/src/main/resources/org/unicode/cldr/draft/
DCategories.txt23203 1F522 So Symbol Technical Interface Input status INPUT SYMBOL FOR NUMBERS
/external/cronet/third_party/icu/source/data/unidata/
DUnicodeData.txt32510 1F522;INPUT SYMBOL FOR NUMBERS;So;0;ON;;;;;N;;;;;
/external/pcre/maint/Unicode.tables/
DUnicodeData.txt32243 1F522;INPUT SYMBOL FOR NUMBERS;So;0;ON;;;;;N;;;;;
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/data/unicode/
DUnicodeData.txt32510 1F522;INPUT SYMBOL FOR NUMBERS;So;0;ON;;;;;N;;;;;
/external/icu/icu4c/source/data/unidata/
DUnicodeData.txt32510 1F522;INPUT SYMBOL FOR NUMBERS;So;0;ON;;;;;N;;;;;
/external/icu/android_icu4j/src/main/tests/android/icu/dev/data/unicode/
DUnicodeData.txt32510 1F522;INPUT SYMBOL FOR NUMBERS;So;0;ON;;;;;N;;;;;

12