Searched refs:pairs (Results 1 - 25 of 45) sorted by relevance

12

/external/chromium/base/
H A Dstring_split.cc48 std::vector<std::string> pairs; local
49 SplitString(line, key_value_pair_delimiter, &pairs);
52 for (size_t i = 0; i < pairs.size(); ++i) {
55 if (!SplitStringIntoKeyValues(pairs[i],
/external/skia/src/core/
H A DSkPixelRef.cpp112 const Pair* pairs = gPairs;
114 if (strcmp(pairs[i].fName, name) == 0) {
115 return pairs[i].fFactory;
122 const Pair* pairs = gPairs; local
124 if (pairs[i].fFactory == fact) {
125 return pairs[i].fName;
H A DSkFlattenable.cpp241 const Pair* pairs = gPairs;
243 if (strcmp(pairs[i].fName, name) == 0) {
244 return pairs[i].fFactory;
251 const Pair* pairs = gPairs;
253 if (pairs[i].fFactory == fact) {
254 return pairs[i].fName;
/external/icu4c/layout/
H A DKernTable.h34 const PairInfo* pairs; member in class:KernTable
H A DKernTable.cpp74 : pairs(0), font(font)
117 pairs = (const PairInfo*)((char*)table + KERN_SUBTABLE_0_HEADER_SIZE);
120 fprintf(stderr, "coverage: %0.4x nPairs: %d pairs 0x%x\n", coverage, nPairs, pairs);
135 const PairInfo* p = pairs;
172 if (pairs) {
186 const PairInfo* p = pairs;
205 fprintf(stdout, " %.3d (%0.8x)\n", ((char*)tp - (char*)pairs)/KERN_PAIRINFO_SIZE, tkey);
/external/nist-sip/java/gov/nist/core/
H A DMultiValueMapImpl.java56 Set pairs = map.entrySet();
58 if (pairs == null)
61 Iterator pairsIterator = pairs.iterator();
72 Set pairs = map.entrySet();
73 Iterator pairsIterator = pairs.iterator();
85 Set pairs = map.entrySet();
86 Iterator pairsIterator = pairs.iterator();
/external/qemu/android/utils/
H A Dini.c39 IniPair* pairs; member in struct:IniFile
47 AFREE(i->pairs[nn].key);
48 i->pairs[nn].key = NULL;
49 i->pairs[nn].value = NULL;
51 AFREE(i->pairs);
74 AARRAY_RENEW(i->pairs, newMax);
78 pair = i->pairs + i->numPairs;
98 if (!strcmp(i->pairs[nn].key,key))
99 return i->pairs[nn].value;
121 key = i->pairs[inde
[all...]
/external/skia/src/effects/
H A DSkPorterDuff.cpp36 const Pair* pairs = gPairs; local
38 if (pairs[i].fXF == src) {
40 *dst = pairs[i].fPD;
/external/clearsilver/python/examples/base/
H A Dwho_calls.py122 pairs = map (lambda x: (x[1],x[0]), d.items())
123 pairs.sort()
124 pairs.reverse()
125 return pairs
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_tools_windows/tools/
H A Dpicoloaddbg.lua106 for s in pairs(propnames) do propnames[s] = 0 end
107 for s in pairs(upropnames) do upropnames[s] = 0 end
108 for s, p in pairs(st) do
109 for prop, propval in pairs(p) do
120 for prop, propval in pairs(upropnames) do
136 for s, pl in pairs(symnrs) do
163 for k, v in pairs(syms) do
H A Dpicoloadphones.lua104 for s in pairs(propnames) do propnames[s] = 0 end
105 for s in pairs(upropnames) do upropnames[s] = 0 end
106 for s, p in pairs(st) do
107 for prop, propval in pairs(p) do
118 for prop, propval in pairs(upropnames) do
134 for s, pl in pairs(symnrs) do
H A Dgenlingware.pl25 5. header fields (space separated) (key/value pairs)
/external/webkit/WebKitTools/simplejson/
H A Ddecoder.py119 pairs = {}
125 return pairs, end + 1
141 pairs[key] = value
156 pairs = object_hook(pairs)
157 return pairs, end
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dshortest-path.h173 ShortestPathCompare(const vector<Pair>& pairs, argument
176 : pairs_(pairs), distance_(distance), superfinal_(sfinal), delta_(d) {}
270 // characterized by a pair (s,w). The vector 'pairs' maps each
273 vector<Pair> pairs; local
280 compare(pairs, *distance, superfinal, opts.delta);
288 while (pairs.size() <= final)
289 pairs.push_back(Pair(kNoStateId, Weight::Zero()));
290 pairs[final] = Pair(rfst.Start(), Weight::One());
296 Pair p = pairs[state];
314 pairs
[all...]
/external/chromium/net/tools/testserver/
H A Dtestserver.py842 pairs = {}
848 # Pull out all the name="value" pairs as a dictionary.
849 pairs = dict(re.findall(r'(\b[^ ,=]+)="?([^",]+)"?', auth))
852 if pairs['nonce'] != nonce:
854 if pairs['opaque'] != opaque:
860 ':'.join([pairs['username'], realm, password])).hexdigest()
861 hash_a2 = _new_md5(':'.join([self.command, pairs['uri']])).hexdigest()
862 if 'qop' in pairs and 'nc' in pairs and 'cnonce' in pairs
[all...]
/external/webkit/WebCore/platform/
H A DMIMETypeRegistry.cpp261 static const TypeExtensionPair pairs[] = { local
327 const unsigned numPairs = sizeof(pairs) / sizeof(pairs[0]);
329 mediaMIMETypeForExtensionMap->set(pairs[ndx].extension, pairs[ndx].type);
/external/webkit/WebKitTools/CodeCoverage/
H A Dregenerate-coverage-display169 def replace(text, *pairs):
174 while pairs:
175 (a,b) = pairs[0]
177 pairs = pairs[1:]
/external/srec/srec/EventLog/src/
H A Driff.c509 RiffKVPair *pairs; local
528 for (pairs = swichunk->kvals.kvpairs, i = 0; i < swichunk->kvals.num_pairs; i++, pairs++)
530 pairs->key = kvpair_buf;
532 pairs->value = kvpair_buf;
1080 RiffKVPair *pairs; local
1083 ck.ckLength = kvals_chunk_size; /* num_pairs and pairs themselves */
1092 for (pairs = swichunk->kvals.kvpairs, i = 0; i < num_pairs; i++, pairs++)
1094 strcpy((char *)ptr, pairs
[all...]
/external/bison/build-aux/
H A Dylwrap56 Any number of OUTPUT,DESIRED pairs may be used.
/external/v8/src/mips/
H A Dfull-codegen-mips.cc113 void FullCodeGenerator::DeclareGlobals(Handle<FixedArray> pairs) { argument
H A Dcodegen-mips.cc99 void CodeGenerator::DeclareGlobals(Handle<FixedArray> pairs) { argument
H A Dcodegen-mips.h206 // name/value pairs.
207 void DeclareGlobals(Handle<FixedArray> pairs);
/external/icu4c/test/intltest/
H A Dtstnorm.cpp1772 static const StringPair pairs[]={ local
1789 for(int32_t i=0; i<LENGTHOF(pairs); ++i) {
1790 const StringPair &pair=pairs[i];
1802 static const StringPair pairs[]={ local
1821 for(int32_t i=0; i<LENGTHOF(pairs); ++i) {
1822 const StringPair &pair=pairs[i];
/external/skia/src/svg/
H A DSkSVGPaintState.cpp87 // iterate through colon / semi-colon delimited pairs
88 int pairs = SkParse::Count(attrValue, ';'); local
101 } while (--pairs);
/external/v8/src/arm/
H A Dcodegen-arm.h343 // name/value pairs.
344 void DeclareGlobals(Handle<FixedArray> pairs);

Completed in 323 milliseconds

12