/external/llvm/utils/TableGen/ |
FixedLenDecoderEmitter.cpp | [all...] |
/external/opencv3/modules/imgproc/src/ |
templmatch.cpp | 712 int pairs[] = {k, 0}; local 713 mixChannels(&templ, 1, &src, 1, pairs, 1); 769 int pairs[] = {k, 0}; local 770 mixChannels(&src0, 1, &src, 1, pairs, 1); 796 int pairs[] = {0, k}; local 797 mixChannels(&src, 1, &cdst, 1, pairs, 1); [all...] |
/external/autotest/client/site_tests/firmware_TouchMTB/tests/ |
mtb_unittest.py | 591 points = [Point(*pairs) for pairs in list_coordinates_pairs]
|
/external/libvorbis/examples/ |
frameview.pl | 467 my@pairs=map{if(/^\s*(-?[0-9\.]*)[ ,]+(-?[0-9\.]*)/){ 471 $w->createLine((@pairs),-fill=>$color,-tags=>['lines']);
|
/external/skia/src/svg/parser/ |
SkSVGPaintState.cpp | 79 // iterate through colon / semi-colon delimited pairs 80 int pairs = SkParse::Count(attrValue, ';'); local 93 } while (--pairs);
|
/external/v8/test/mjsunit/es6/ |
array-from.js | 78 // Array.from on a string handles surrogate pairs correctly.
|
/external/v8/test/mjsunit/ |
unicodelctest-no-optimization.js | 30 // characters are coded using explicit surrogate pairs. [all...] |
unicodelctest.js | 29 // characters are coded using explicit surrogate pairs. [all...] |
/external/v8/test/webkit/fast/regex/ |
unicodeCaseInsensitive.js | 67 // Test a couple of lo/hi pairs
|
/external/v8/tools/ |
presubmit.py | 442 def check_pairs(pairs): 444 for key, value in pairs:
|
/prebuilts/go/darwin-x86/src/go/ast/ |
import.go | 142 // adjacent pairs of imports.
|
/prebuilts/go/darwin-x86/src/io/ |
pipe_test.go | 57 // Test a sequence of read/write pairs.
|
/prebuilts/go/linux-x86/src/go/ast/ |
import.go | 142 // adjacent pairs of imports.
|
/prebuilts/go/linux-x86/src/io/ |
pipe_test.go | 57 // Test a sequence of read/write pairs.
|
/external/ImageMagick/www/api/ |
property.php | 165 <p>FormatImageProperty() permits formatted property/value pairs to be saved as an image property.</p> 252 <p>If 'glob-expresions' ('*' or '?' characters) is used for 'name' it may be used as a search pattern to print multiple lines of "name=value\n" pairs of the associacted set of properties.</p>
|
/external/chromium-trace/catapult/telemetry/telemetry/web_perf/ |
timeline_based_measurement.py | 312 value_dicts = mre_result.pairs.get('values', [])
|
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_tools_windows/tools/ |
genlingware.pl | 25 5. header fields (space separated) (key/value pairs)
|
/external/v8/src/runtime/ |
runtime-scopes.cc | 94 CONVERT_ARG_HANDLE_CHECKED(FixedArray, pairs, 0); 97 // Traverse the name/value pairs and set the properties. 98 int length = pairs->length(); 101 Handle<String> name(String::cast(pairs->get(i))); 102 Handle<Object> initial_value(pairs->get(i + 1), isolate); [all...] |
/frameworks/base/packages/Osu/src/com/android/hotspot2/omadm/ |
MOManager.java | 147 private static void setSelections(String key, Object... pairs) { 150 for (int n = 0; n < pairs.length; n += 2) { 151 kvp.put(pairs[n].toString(), pairs[n + 1]); [all...] |
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/omadm/ |
PasspointManagementObjectManager.java | 146 private static void setSelections(String key, Object... pairs) { 149 for (int n = 0; n < pairs.length; n += 2) { 150 kvp.put(pairs[n].toString(), pairs[n + 1]); [all...] |
/prebuilts/go/darwin-x86/src/runtime/ |
hash_test.go | 74 pairs := int64(s.n) * int64(s.n-1) / 2 75 expected := float64(pairs) / math.Pow(2.0, float64(hashSize))
|
proc_test.go | 335 // Start goroutine pairs and wait for a few preemption rounds. 344 // 2, which indicates that both pairs of goroutines handed off
|
/prebuilts/go/linux-x86/src/runtime/ |
hash_test.go | 74 pairs := int64(s.n) * int64(s.n-1) / 2 75 expected := float64(pairs) / math.Pow(2.0, float64(hashSize))
|
proc_test.go | 335 // Start goroutine pairs and wait for a few preemption rounds. 344 // 2, which indicates that both pairs of goroutines handed off
|
/external/javassist/src/main/javassist/compiler/ |
CodeGen.java | 522 long[] pairs = new long[npairs]; local 533 pairs[ipairs++] 542 Arrays.sort(pairs); 545 bytecode.write32bit(pc, (int)(pairs[i] >>> 32)); 546 bytecode.write32bit(pc + 4, (int)pairs[i]); [all...] |