/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
urlparse.py | 408 pairs = [s2 for s1 in qs.split('&') for s2 in s1.split(';')] 410 for name_value in pairs:
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
urlparse.py | 408 pairs = [s2 for s1 in qs.split('&') for s2 in s1.split(';')] 410 for name_value in pairs:
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.eclipse.equinox.p2.director.app_1.0.201.R36x_v20100823.jar | |
/external/lzma/CPP/7zip/UI/Common/ |
LoadCodecs.cpp | 424 UStringVector pairs;
local 425 SplitString(iconTypes, pairs);
426 FOR_VECTOR (i, pairs)
428 const UString &s = pairs[i];
|
Update.cpp | 1159 if (censor.Pairs.Size() == 1)
1162 FString prefix = us2fs(censor.Pairs[0].Prefix) + FTEXT(".");
1163 // UString prefix = censor.Pairs[0].Prefix;
1433 CRecordVector<CRefSortPair> pairs; local [all...] |
/external/skia/tools/ |
compare_codereview.py | 80 case. The attrs argument is a list of (name, value) pairs 199 case. The attrs argument is a list of (name, value) pairs
|
/external/v8/tools/ |
codemap.js | 233 * Returns an array of pairs of all dynamic code entries and their addresses. 249 * Returns an array of pairs of all static code entries and their addresses.
|
presubmit.py | 430 def check_pairs(pairs): 432 for key, value in pairs:
|
/prebuilts/go/darwin-x86/src/net/http/fcgi/ |
fcgi.go | 170 func (c *conn) writePairs(recType recType, reqId uint16, pairs map[string]string) error { 173 for k, v := range pairs {
|
/prebuilts/go/linux-x86/src/net/http/fcgi/ |
fcgi.go | 170 func (c *conn) writePairs(recType recType, reqId uint16, pairs map[string]string) error { 173 for k, v := range pairs {
|
/external/autotest/contrib/ |
coverage.py | 153 # pass statement is part of one of those pairs, claim that the statement 731 pairs = [] 735 pairs = [] 743 pairs.append((start, end)) 747 pairs.append((start, end)) 754 ret = string.join(map(stringify, pairs), ", ") [all...] |
/external/llvm/utils/TableGen/ |
FixedLenDecoderEmitter.cpp | [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']);
|
/prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/ |
prove.go | 21 // pairs of variables (v, w). Without a priori knowledge the 50 // pairs cannot be transferred to signed pairs because the same bit 92 // factsTable keeps track of relations between pairs of values.
|
/prebuilts/go/darwin-x86/src/cmd/vet/ |
structtag.go | 117 errTagSpace = errors.New("key:\"value\" pairs not separated by spaces")
|
/prebuilts/go/darwin-x86/src/go/ast/ |
import.go | 144 // adjacent pairs of imports.
|
/prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/ |
prove.go | 21 // pairs of variables (v, w). Without a priori knowledge the 50 // pairs cannot be transferred to signed pairs because the same bit 92 // factsTable keeps track of relations between pairs of values.
|
/prebuilts/go/linux-x86/src/cmd/vet/ |
structtag.go | 117 errTagSpace = errors.New("key:\"value\" pairs not separated by spaces")
|
/prebuilts/go/linux-x86/src/go/ast/ |
import.go | 144 // adjacent pairs of imports.
|
/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/core/ |
cros_interface.py | 533 """/etc/lsb-release is a file with key=value pairs."""
|
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_tools_windows/tools/ |
genlingware.pl | 25 5. header fields (space separated) (key/value pairs)
|
/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...] |
/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...] |