/external/icu/android_icu4j/src/main/java/android/icu/text/ |
UnicodeSet.java | 391 * Between adjacent pairs (...ei, sj...), it must be true that ei+1 < sj 392 * @param pairs pairs of character representing ranges 394 public UnicodeSet(int... pairs) { 395 if ((pairs.length & 1) != 0) { 398 list = new int[pairs.length + 1]; // don't allocate extra space, because it is likely that this is a fixed set. 402 while (i < pairs.length) { 404 int start = pairs[i]; 410 int end = pairs[i] + 1; [all...] |
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/lang/ |
UnicodeSetTest.java | 1748 int[] pairs = new int[testSet.getRangeCount()*2]; local 2149 StringBuffer pairs = new StringBuffer(); local [all...] |
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/normalizer/ |
BasicTest.java | 2627 String [][] pairs={ local 2656 String[][] pairs={ local [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
UnicodeSet.java | 398 * Between adjacent pairs (...ei, sj...), it must be true that ei+1 < sj 399 * @param pairs pairs of character representing ranges 402 public UnicodeSet(int... pairs) { 403 if ((pairs.length & 1) != 0) { 406 list = new int[pairs.length + 1]; // don't allocate extra space, because it is likely that this is a fixed set. 410 while (i < pairs.length) { 412 int start = pairs[i]; 418 int end = pairs[i] + 1; [all...] |
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/ |
UnicodeSetTest.java | 1747 int[] pairs = new int[testSet.getRangeCount()*2]; local 2148 StringBuffer pairs = new StringBuffer(); local [all...] |
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/ |
BasicTest.java | 2626 String [][] pairs={ local 2655 String[][] pairs={ local [all...] |
/prebuilts/go/darwin-x86/src/debug/dwarf/ |
entry.go | 9 // just a type descriptor: it's an array of attribute tag/value format pairs. 209 // An entry is a sequence of attribute/value pairs. 681 // Ranges returns the PC ranges covered by e, a slice of [low,high) pairs.
|
/prebuilts/go/darwin-x86/src/encoding/gob/ |
doc.go | 147 pairs. Empty but non-nil maps are sent, so if the receiver has not allocated 154 Structs are sent as a sequence of (field number, field value) pairs. The field 310 uint(n) (FieldValue FieldValue)*n [n (key, value) pairs]
|
/prebuilts/go/linux-x86/src/debug/dwarf/ |
entry.go | 9 // just a type descriptor: it's an array of attribute tag/value format pairs. 209 // An entry is a sequence of attribute/value pairs. 681 // Ranges returns the PC ranges covered by e, a slice of [low,high) pairs.
|
/prebuilts/go/linux-x86/src/encoding/gob/ |
doc.go | 147 pairs. Empty but non-nil maps are sent, so if the receiver has not allocated 154 Structs are sent as a sequence of (field number, field value) pairs. The field 310 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...] |
/build/make/core/ |
Makefile | 28 # filter out the duplicate <source file>:<dest file> pairs. 90 $(call collapse-pairs, $(ADDITIONAL_DEFAULT_PROPERTIES)) 93 $(call collapse-pairs, $(PRODUCT_DEFAULT_PROPERTY_OVERRIDES)) 95 FINAL_DEFAULT_PROPERTIES := $(call uniq-pairs-by-first-component, \ 128 $(call collapse-pairs, $(PRODUCT_DEFAULT_PROPERTY_OVERRIDES)) 129 FINAL_VENDOR_DEFAULT_PROPERTIES := $(call uniq-pairs-by-first-component, \ 149 $(call collapse-pairs, $(ADDITIONAL_BUILD_PROPERTIES)) 150 FINAL_BUILD_PROPERTIES := $(call uniq-pairs-by-first-component, \ 340 $(call collapse-pairs, $(PRODUCT_PROPERTY_OVERRIDES)) 341 FINAL_VENDOR_BUILD_PROPERTIES := $(call uniq-pairs-by-first-component, [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>
|
/prebuilts/go/darwin-x86/src/runtime/ |
hash_test.go | 75 pairs := int64(s.n) * int64(s.n-1) / 2 76 expected := float64(pairs) / math.Pow(2.0, float64(hashSize))
|
proc_test.go | 422 // Start goroutine pairs and wait for a few preemption rounds. 431 // 2, which indicates that both pairs of goroutines handed off
|
/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/runtime/ |
hash_test.go | 75 pairs := int64(s.n) * int64(s.n-1) / 2 76 expected := float64(pairs) / math.Pow(2.0, float64(hashSize))
|
proc_test.go | 422 // Start goroutine pairs and wait for a few preemption rounds. 431 // 2, which indicates that both pairs of goroutines handed off
|
/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
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/ |
unicodeobject.c | 551 * by 'ptr', possibly combining surrogate pairs on narrow builds.
2275 int pairs = 0; local 2278 const int pairs = 0; local 2436 Py_ssize_t i, pairs; local 2438 const int pairs = 0; local 2713 Py_ssize_t i, pairs; local 2715 const int pairs = 0; local [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/ |
unicodeobject.c | 2208 int pairs = 0; local 2211 const int pairs = 0; local 2369 Py_ssize_t i, pairs; local 2371 const int pairs = 0; local 2643 Py_ssize_t i, pairs; local 2645 const int pairs = 0; local [all...] |
/external/libtextclassifier/ |
Android.mk | 16 # <key>=<value> pairs:
|
/external/v8/tools/ |
logreader.js | 39 * @param {boolean} pairwiseTimedRange Ignore ticks outside pairs of timer
|
/frameworks/base/media/java/android/media/tv/ |
TvInputInfo.java | 1026 String[] pairs = labelsString.split(TV_INPUT_SEPARATOR); local [all...] |