/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
TimeUnitTest.java | 161 int[] numbers = new int[] {1, 7}; local 235 for( int numIndex = 0; numIndex < numbers.length; ++numIndex ) { 239 timeUnitAmount = new TimeUnitAmount(numbers[numIndex], units[unitIndex]); 247 + ", value: " + numbers[numIndex],
|
RbnfTest.java | 56 // Since we only provide rules for the numbers from 2 to 10, we know 118 // extra calls to boost coverage numbers 1076 double[] numbers = {45.678, 1, 2, 10, 11, 100, 110, 200, 1000, 1111, -1111}; local [all...] |
MeasureUnitTest.java | 626 int[] numbers = new int[] {1, 7}; local 695 for( int numIndex = 0; numIndex < numbers.length; ++numIndex ) { 698 Measure m = new Measure(numbers[numIndex], units[unitIndex]); 705 + ", value: " + numbers[numIndex], [all...] |
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/ |
Collections2Test.java | 288 String[] numbers = new String[] { "0", "1", "2" }; local 289 Arrays.sort(numbers, roc); 291 Arrays.equals(fixtureDesc, numbers)); 306 String[] numbers = new String[] { "0", "1", "2" }; local 307 Arrays.sort(numbers, roc); 309 Arrays.equals(fixtureDesc, numbers)); 317 numbers = new String[] { "0", "1", "2" }; 318 Arrays.sort(numbers, roc); 320 Arrays.equals(fixtureDesc, numbers));
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/db/ |
ConfigResults.java | 191 * Get all results numbers for the max last builds. 193 * @param max The number of last builds to get numbers. 196 * the given numbers as soon as there are enough builds in the database. 198 * The slots of the second level are the numbers values: 213 // Add numbers for each previous build 215 double[][] numbers = new double[Math.min(max, size)][]; local 220 numbers[n] = getNumbers(buildResults, getBaselineBuildResults(buildResults.getName())); 225 // Return the numbers 226 return numbers; 230 * Returns interesting numbers for the current configuration [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/model/ |
ConfigResultsElement.java | 255 * <li>0: numbers of values</li> 283 // Get numbers 286 double[][] numbers = configResults.getLastNumbers(buildsNumber); local 287 int numbersLength = numbers.length; 301 if (numbers[i][AbstractResults.DELTA_VALUE_INDEX] < -0.1) { 317 double[] values = numbers[0];
|
/external/google-breakpad/src/testing/gtest/test/ |
gtest-printers_test.cc | 839 // the numbers in the result. 841 std::vector<int> numbers; local 845 numbers.push_back(result[i] - '0'); 852 // Makes sure the result contains the right numbers. 853 std::sort(numbers.begin(), numbers.end()); 855 EXPECT_TRUE(std::equal(a, a + kSize, numbers.begin())); [all...] |
/external/gtest/test/ |
gtest-printers_test.cc | 858 // the numbers in the result. 860 std::vector<int> numbers; local 864 numbers.push_back(result[i] - '0'); 871 // Makes sure the result contains the right numbers. 872 std::sort(numbers.begin(), numbers.end()); 874 EXPECT_TRUE(std::equal(a, a + kSize, numbers.begin())); [all...] |
/external/icu/icu4c/source/test/intltest/ |
itrbnf.cpp | 408 // Since we only provide rules for the numbers from 2 to 10, we know 1852 double numbers[] = {45.678, 1, 2, 10, 11, 100, 110, 200, 1000, 1111, -1111}; local [all...] |
measfmttest.cpp | 750 int32_t numbers[] = {1, 7}; local [all...] |
/ndk/sources/third_party/googletest/googletest/test/ |
gtest-printers_test.cc | 858 // the numbers in the result. 860 std::vector<int> numbers; local 864 numbers.push_back(result[i] - '0'); 871 // Makes sure the result contains the right numbers. 872 std::sort(numbers.begin(), numbers.end()); 874 EXPECT_TRUE(std::equal(a, a + kSize, numbers.begin())); [all...] |
/packages/apps/Messaging/src/com/android/messaging/util/ |
PhoneUtils.java | 220 * Get the set of self phone numbers, all normalized 222 * @return the set of normalized self phone numbers 401 final HashSet<String> numbers = new HashSet<>(); local 402 numbers.add(getCanonicalForSelf(true/*allowOverride*/)); 403 return numbers; 625 final HashSet<String> numbers = new HashSet<>(); local 627 numbers.add(PhoneUtils.get(info.getSubscriptionId()).getCanonicalForSelf( 630 return numbers; 708 // Get or set the cache of canonicalized phone numbers for a specific country 798 // This is possible for short codes and other non-localizable numbers [all...] |
/external/libphonenumber/libphonenumber/test/com/google/i18n/phonenumbers/ |
PhoneNumberMatcherTest.java | 85 // types of numbers in New Zealand. 99 // Note that real Polish numbers do *not* start with a 0. 136 // Test parsing mobile numbers of Argentina. 143 // Test parsing fixed-line numbers of Argentina. 169 // Test parsing fixed-line numbers of Mexico. 174 // Test parsing mobile numbers of Mexico. 322 // Numbers should not be considered valid, if they are surrounded by Latin characters, but 339 // Numbers followed by % should be dropped. 353 // Contexts with trailing characters. Leading characters are okay here since the numbers we will 360 // Numbers should not be considered valid, if they have trailing Latin characters, but should b 742 StringBuilder numbers = new StringBuilder(); local 765 StringBuilder numbers = new StringBuilder(); local 780 StringBuilder numbers = new StringBuilder(); local [all...] |
/external/llvm/unittests/Support/ |
YAMLIOTest.cpp | 815 std::vector<MyNumber> numbers; member in struct:NameAndNumbers 826 io.mapRequired("numbers", nn.numbers); 844 map.numbers.push_back(10); 845 map.numbers.push_back(-30); 846 map.numbers.push_back(1024); 871 EXPECT_EQ(map2.numbers.size(), 3UL); 872 EXPECT_EQ(10, map2.numbers[0]); 873 EXPECT_EQ(-30, map2.numbers[1]); 874 EXPECT_EQ(1024, map2.numbers[2]) [all...] |
/external/protobuf/java/src/main/java/com/google/protobuf/ |
RopeByteString.java | 78 * <p>There's nothing special about using the Fibonacci numbers for this, but 87 // Dynamically generate the list of Fibonacci numbers the first time this 89 List<Integer> numbers = new ArrayList<Integer>(); typedefs 98 numbers.add(f2); 106 numbers.add(Integer.MAX_VALUE); 107 minLengthByDepth = new int[numbers.size()]; 110 minLengthByDepth[i] = numbers.get(i); [all...] |
/libcore/luni/src/test/java/libcore/java/util/ |
OldCollectionsTest.java | 318 String[] numbers = new String[] { "0", "1", "2" }; local 319 Arrays.sort(numbers, roc); 321 Arrays.equals(fixtureDesc, numbers)); 336 String[] numbers = new String[] { "0", "1", "2" }; local 337 Arrays.sort(numbers, roc); 339 Arrays.equals(fixtureDesc, numbers)); 347 numbers = new String[] { "0", "1", "2" }; 348 Arrays.sort(numbers, roc); 350 Arrays.equals(fixtureDesc, numbers));
|
/packages/apps/Settings/src/com/android/settings/ |
ChooseLockPassword.java | 397 int numbers = 0; local 409 numbers++; 440 } else if (numbers < mPasswordMinNumeric) { 469 if (alphanumeric && numbers == 0) {
|
/external/google-breakpad/src/testing/test/ |
gmock-matchers_test.cc | 3809 const vector<int> numbers; local 3815 vector<unsigned> numbers; local 3838 const int numbers[] = { 1, 3, 2, 4 }; local 3870 const vector<int> numbers; local [all...] |
/frameworks/base/core/java/com/android/internal/widget/ |
LockPatternUtils.java | 729 int numbers = 0; local 741 numbers++; 750 numbers, symbols, nonletter, userHandle); local [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/StdSuites/ |
AppleScript_Suite.py | 1210 class numbers(aetools.ComponentItem): class in inherits:aetools.ComponentItem [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_decimal.py | 33 import numbers namespace [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_decimal.py | 33 import numbers namespace [all...] |
/packages/apps/Messaging/src/com/android/messaging/mmslib/pdu/ |
PduPersister.java | 1569 final ArrayList<String> numbers = new ArrayList<String>(); local [all...] |
/packages/apps/Messaging/src/com/android/messaging/sms/ |
MmsUtils.java | 713 // Code for extracting the actual phone numbers for the participants in a conversation, 764 final List<String> numbers = new ArrayList<String>(); local 795 numbers.add(number); [all...] |
/external/protobuf/src/google/protobuf/ |
descriptor.cc | 396 // set of extensions numbers from fallback_database_. 1155 vector<int> numbers; local [all...] |