HomeSort by relevance Sort by last modified time
    Searched refs:pairs (Results 226 - 250 of 781) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/icu/android_icu4j/src/main/java/android/icu/text/
UnicodeSet.java 389 * Between adjacent pairs (...ei, sj...), it must be true that ei+1 < sj
390 * @param pairs pairs of character representing ranges
392 public UnicodeSet(int... pairs) {
393 if ((pairs.length & 1) != 0) {
396 list = new int[pairs.length + 1]; // don't allocate extra space, because it is likely that this is a fixed set.
400 while (i < pairs.length) {
402 int start = pairs[i];
408 int end = pairs[i] + 1;
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/lang/
UnicodeSetTest.java 1723 int[] pairs = new int[testSet.getRangeCount()*2]; local
2122 StringBuffer pairs = new StringBuffer(); local
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/normalizer/
BasicTest.java 2562 String [][] pairs={ local
2590 String[][] pairs={ local
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
UnicodeSet.java 396 * Between adjacent pairs (...ei, sj...), it must be true that ei+1 &lt; sj
397 * @param pairs pairs of character representing ranges
400 public UnicodeSet(int... pairs) {
401 if ((pairs.length & 1) != 0) {
404 list = new int[pairs.length + 1]; // don't allocate extra space, because it is likely that this is a fixed set.
408 while (i < pairs.length) {
410 int start = pairs[i];
416 int end = pairs[i] + 1;
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/
UnicodeSetTest.java 1719 int[] pairs = new int[testSet.getRangeCount()*2]; local
2118 StringBuffer pairs = new StringBuffer(); local
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/
BasicTest.java 2558 String [][] pairs={ local
2586 String[][] pairs={ local
    [all...]
  /prebuilts/go/darwin-x86/src/encoding/gob/
doc.go 140 pairs. Empty but non-nil maps are sent, so if the receiver has not allocated
144 Structs are sent as a sequence of (field number, field value) pairs. The field
294 uint(n) (FieldValue FieldValue)*n [n (key, value) pairs]
  /prebuilts/go/linux-x86/src/encoding/gob/
doc.go 140 pairs. Empty but non-nil maps are sent, so if the receiver has not allocated
144 Structs are sent as a sequence of (field number, field value) pairs. The field
294 uint(n) (FieldValue FieldValue)*n [n (key, value) pairs]
  /external/jcommander/src/test/java/com/beust/jcommander/
JCommanderTest.java 266 String[] argv = { "-pairs", "pair0", "pair1", "rest" };
269 Assert.assertEquals(args.pairs.size(), 2);
270 Assert.assertEquals(args.pairs.get(0), "pair0");
271 Assert.assertEquals(args.pairs.get(1), "pair1");
279 String[] argv = { "-pairs", "pair0" };
    [all...]
  /external/ImageMagick/www/api/
statistic.php 393 <p>PolynomialImage() returns a new image where each pixel is the sum of the pixels in the image sequence after applying its corresponding terms (coefficient and degree pairs).</p>
418 <dd>the list of polynomial coefficients and degree pairs and a constant. </dd>
feature.php 162 <dd>find line pairs as local maxima in this neighborhood. </dd>
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/s3/
bucket.py 367 pairs = []
370 pairs.append(initial_query_string)
383 pairs.append(u'%s=%s' % (
388 return '&'.join(pairs)
642 :param keys: A list of either key_names or (key_name, versionid) pairs
    [all...]
  /prebuilts/go/darwin-x86/src/strings/
replace.go 21 // NewReplacer returns a new Replacer from a list of old, new string pairs.
78 // trieNode is a node in a lookup trie for prioritized key/value pairs. Keys
  /prebuilts/go/linux-x86/src/strings/
replace.go 21 // NewReplacer returns a new Replacer from a list of old, new string pairs.
78 // trieNode is a node in a lookup trie for prioritized key/value pairs. Keys
  /external/opencv3/modules/stitching/src/
seam_finders.cpp 178 std::vector<std::pair<size_t, size_t> > pairs;
182 pairs.push_back(std::make_pair(i, j));
187 sort(pairs.begin(), pairs.end(), ImagePairLess(_src, corners));
189 std::reverse(pairs.begin(), pairs.end());
191 for (size_t i = 0; i < pairs.size(); ++i)
193 size_t i0 = pairs[i].first, i1 = pairs[i].second;
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/gslib/third_party/storage_apitools/
storage_v1_messages.py 417 MetadataValue: User-provided metadata, in key/value pairs.
441 metadata: User-provided metadata, in key/value pairs.
461 """User-provided metadata, in key/value pairs.
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/apitools/apitools/base/py/
encoding.py 425 'Invalid pairs field %s' % pairs_field)
428 pairs = getattr(message, source)
429 for pair in pairs:
  /external/chromium-trace/catapult/third_party/gsutil/third_party/apitools/samples/storage_sample/storage/
storage_v1_messages.py 405 MetadataValue: User-provided metadata, in key/value pairs.
429 metadata: User-provided metadata, in key/value pairs.
449 """User-provided metadata, in key/value pairs.
    [all...]
  /external/libvpx/libvpx/vp9/encoder/x86/
vp9_highbd_error_avx.asm 153 ; Add pairs horizontally (still only on 32 bits)
  /external/opencv3/modules/python/src2/
hdr_parser.py 43 def batch_replace(self, s, pairs):
44 for before, after in pairs:
    [all...]
  /external/v8/tools/
codemap.js 233 * Returns an array of pairs of all dynamic code entries and their addresses.
logreader.js 39 * @param {boolean} pairwiseTimedRange Ignore ticks outside pairs of timer
  /frameworks/base/media/java/android/media/tv/
TvInputInfo.java 1034 String[] pairs = labelsString.split(TV_INPUT_SEPARATOR); local
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/arm/neon/
variance_neon.asm 46 ;VPADAL adds adjacent pairs of elements of a vector, and accumulates
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/arm/armv6/
vp8_fast_quantize_b_armv6.asm 37 ; quantized coefficient pairs.

Completed in 778 milliseconds

1 2 3 4 5 6 7 8 91011>>