HomeSort by relevance Sort by last modified time
    Searched refs:numbers (Results 201 - 225 of 775) sorted by null

1 2 3 4 5 6 7 891011>>

  /prebuilts/gdb/linux-x86/lib/python2.7/
ftplib.py 797 Return ('host.addr.as.numbers', port#) tuple.'''
808 numbers = m.groups()
809 host = '.'.join(numbers[:4])
810 port = (int(numbers[4]) << 8) + int(numbers[5])
817 Return ('host.addr.as.numbers', port#) tuple.'''
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
ftplib.py 797 Return ('host.addr.as.numbers', port#) tuple.'''
808 numbers = m.groups()
809 host = '.'.join(numbers[:4])
810 port = (int(numbers[4]) << 8) + int(numbers[5])
817 Return ('host.addr.as.numbers', port#) tuple.'''
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
ftplib.py 797 Return ('host.addr.as.numbers', port#) tuple.'''
808 numbers = m.groups()
809 host = '.'.join(numbers[:4])
810 port = (int(numbers[4]) << 8) + int(numbers[5])
817 Return ('host.addr.as.numbers', port#) tuple.'''
    [all...]
  /external/protobuf/js/binary/
utils_test.js 81 // Check some magic numbers.
282 * Going from numbers to hash strings should be lossless for up to 53 bits of
338 * Tests conversion from 32-bit floating point numbers to split64 numbers.
404 * Tests conversion from 64-bit floating point numbers to split64 numbers.
659 // Converting Array.<numbers> into Uint8Arrays should work.
  /external/autotest/client/site_tests/firmware_TouchMTB/
mtb.py 684 be equal to the slot numbers in practice. However, this assumption
    [all...]
  /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/guice/core/test/com/google/inject/spi/
ProviderMethodsTest.java 298 final List<Number> numbers = ImmutableList.<Number>of(1, 2, 3);
305 bind(listOfSupertypesOfInteger).toInstance(numbers);
316 assertSame(numbers, injector.getInstance(HasWildcardInjection.class).numbers);
322 @Inject List<? super Integer> numbers;
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
RbnfTest.java 49 // Since we only provide rules for the numbers from 2 to 10, we know
112 // extra calls to boost coverage numbers
1098 double[] numbers = {45.678, 1, 2, 10, 11, 100, 110, 200, 1000, 1111, -1111}; local
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
RbnfTest.java 48 // Since we only provide rules for the numbers from 2 to 10, we know
111 // extra calls to boost coverage numbers
1097 double[] numbers = {45.678, 1, 2, 10, 11, 100, 110, 200, 1000, 1111, -1111}; local
    [all...]
  /external/icu/icu4c/source/test/intltest/
tufmtts.cpp 313 const int numbers[] = {1, 7}; local
378 numberIndex < UPRV_LENGTHOF(numbers);
389 TimeUnitAmount *tamt = new TimeUnitAmount(numbers[numberIndex], tunits[unitIndex], status);
  /external/libmojo/third_party/jinja2/
filters.py 717 """Returns the sum of a sequence of numbers plus the value of parameter
852 {{ numbers|select("odd") }}
868 {{ numbers|reject("odd") }}
  /frameworks/base/core/java/com/android/internal/colorextraction/types/
Tonal.java 598 float[] numbers = new float[tokens.length]; local
600 numbers[i] = Float.parseFloat(tokens[i]);
602 return numbers;
  /system/core/liblog/
pmsg_reader.c 416 static const char numbers[] = "0123456789"; local
449 cp = strpbrk(names->name, numbers);
459 cp = strpbrk(r, numbers);
541 /* Missing sequence numbers */
  /external/vulkan-validation-layers/libs/cjson/
cJSON.c     [all...]
  /packages/providers/TelephonyProvider/src/com/android/providers/telephony/
MmsSmsProvider.java 532 // We lowercase all email addresses, but not addresses that aren't numbers, because
605 private long[] getSortedSet(Set<Long> numbers) {
606 int size = numbers.size();
610 for (Long number : numbers) {
622 * Return a String of the numbers in the given array, in order,
625 private String getSpaceSeparatedNumbers(long[] numbers) {
626 int size = numbers.length;
633 buffer.append(numbers[i]);
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/internal/obj/
line.go 21 // In typical use, the virtual lineno begins at 1, and file line numbers also begin at 1,
22 // but the only requirements placed upon the numbers by this code are:
163 // for the earlier line numbers will get the wrong answers,
  /prebuilts/go/linux-x86/src/cmd/internal/obj/
line.go 21 // In typical use, the virtual lineno begins at 1, and file line numbers also begin at 1,
22 // but the only requirements placed upon the numbers by this code are:
163 // for the earlier line numbers will get the wrong answers,
  /external/ImageMagick/www/api/
list.php 111 <p>CloneImages() clones one or more images from an image sequence, using a comma separated list of image numbers or ranges.</p>
113 <p>The numbers start at 0 for the first image in the list, while negative numbers refer to images starting counting from the end of the range. Images may be refered to multiple times to clone them multiple times. Images refered beyond the available number of images in list are ignored.</p>
168 <p>DeleteImages() deletes one or more images from an image sequence, using a comma separated list of image numbers or ranges.</p>
170 <p>The numbers start at 0 for the first image, while negative numbers refer to images starting counting from the end of the range. Images may be refered to multiple times without problems. Image refered beyond the available number of images in list are ignored.</p>
224 <p>DuplicateImages() duplicates one or more images from an image sequence, using a count and a comma separated list of image numbers or ranges.</p>
226 <p>The numbers start at 0 for the first image, while negative numbers refer to images starting counting from the end of the range. Images may be refered to multiple times without problems. Image refered beyond the available number of images in list are ignored.</p>
  /external/autotest/server/cros/network/
netperf_runner.py 8 import numbers
182 and isinstance(item[1], numbers.Number)]
  /external/autotest/site_utils/
perf_compare.py 440 'of iteration numbers where N1 corresponds '
454 @param iteration_nums: An array of numbers representing the number of
494 logging.error('You should only specify multiple iteration numbers '
501 'iteration numbers.', len(options.perf_keys.split(',')),
  /external/skia/tools/lua/
glyph-usage.lua 71 -- other is just an array[1...N] of numbers (glyphIDs)
  /external/wpa_supplicant_8/src/p2p/
p2p_utils.c 31 u8 numbers = 10; local
38 val %= 2 * letters + numbers;
108 * country codes are used, the regulatory class numbers may not be matched
  /packages/apps/Contacts/src/com/android/contacts/group/
GroupUtil.java 278 private static int[] clearZeros(int[] numbers) {
280 for (int n : numbers) {
  /prebuilts/go/darwin-x86/src/builtin/
builtin.go 54 // float32 is the set of all IEEE-754 32-bit floating-point numbers.
57 // float64 is the set of all IEEE-754 64-bit floating-point numbers.
60 // complex64 is the set of all complex numbers with float32 real and
64 // complex128 is the set of all complex numbers with float64 real and
  /prebuilts/go/darwin-x86/src/math/rand/
example_test.go 83 // Perm generates a random permutation of the numbers [0, n).

Completed in 2301 milliseconds

1 2 3 4 5 6 7 891011>>