HomeSort by relevance Sort by last modified time
    Searched refs:pairs (Results 1 - 25 of 69) sorted by null

1 2 3

  /external/chromium/base/
string_split.cc 48 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/
SkPixelRef.cpp 112 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;
SkFlattenable.cpp 241 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;
  /cts/tools/test-progress-new/src/testprogress2/
TestMethodInformation.java 62 ElementValuePair[] pairs = annot.elementValues(); local
63 if (pairs.length != 1
64 && !pairs[0].element().qualifiedName().equals(
69 AnnotationValue[] targets = (AnnotationValue[])pairs[0].value()
  /external/icu4c/layout/
KernTable.h 34 const PairInfo* pairs; member in class:KernTable
KernTable.cpp 74 : 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);
  /system/media/opensles/libopensles/
OpenSLESUT.c 43 static Pair pairs[] = { variable
106 const Pair *end = &pairs[sizeof(pairs)/sizeof(pairs[0])];
107 for (p = pairs; p != end; ++p) {
  /external/nist-sip/java/gov/nist/core/
MultiValueMapImpl.java 56 Set pairs = map.entrySet(); local
58 if (pairs == null)
61 Iterator pairsIterator = pairs.iterator();
72 Set pairs = map.entrySet(); local
73 Iterator pairsIterator = pairs.iterator();
85 Set pairs = map.entrySet(); local
86 Iterator pairsIterator = pairs.iterator();
  /external/qemu/android/utils/
ini.c 39 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[index].key
    [all...]
  /external/skia/src/effects/
SkPorterDuff.cpp 36 const Pair* pairs = gPairs; local
38 if (pairs[i].fXF == src) {
40 *dst = pairs[i].fPD;
  /external/clearsilver/python/examples/base/
who_calls.py 122 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/
picoloaddbg.lua 106 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
picoloadphones.lua 104 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
  /external/webkit/WebKitTools/simplejson/
decoder.py 119 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/
shortest-path.h 173 ShortestPathCompare(const vector<Pair>& pairs,
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.push_back(Pair(arc.nextstate, w))
    [all...]
  /sdk/ninepatch/src/com/android/ninepatch/
NinePatch.java 393 private Pair<Integer> getPadding(List<Pair<Integer>> pairs) {
394 if (pairs.size() == 0) {
396 } else if (pairs.size() == 1) {
397 if (pairs.get(0).mFirst == 1) {
398 return new Pair<Integer>(pairs.get(0).mSecond - pairs.get(0).mFirst, 0);
400 return new Pair<Integer>(0, pairs.get(0).mSecond - pairs.get(0).mFirst);
403 int index = pairs.size() - 1;
404 return new Pair<Integer>(pairs.get(0).mSecond - pairs.get(0).mFirst
    [all...]
  /system/media/opensles/tests/sandbox/
reverb.c 39 Pair pairs[] = { variable
123 for (j = 0; j < sizeof(pairs) / sizeof(pairs[0]); ++j) {
124 if (!strcasecmp(name, pairs[j].mName)) {
125 return &pairs[j].mSettings;
139 for (j = 0; j < sizeof(pairs) / sizeof(pairs[0]); ++j) {
140 const char *name = pairs[j].mName;
  /external/chromium/net/tools/testserver/
testserver.py 842 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...]
  /build/tools/droiddoc/src/
LinkReference.java 83 int pairs = 0; local
92 pairs++;
95 pairs++;
98 pairs--;
101 pairs--;
107 if (pairs == 0) {
119 if (index == len && pairs != 0) {
  /external/webkit/WebCore/platform/
MIMETypeRegistry.cpp 261 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/
regenerate-coverage-display 169 def replace(text, *pairs):
174 while pairs:
175 (a,b) = pairs[0]
177 pairs = pairs[1:]
  /bootable/recovery/applypatch/
applypatch.c 148 int pairs = (colons-1)/2; // # of (size,sha1) pairs in filename local
149 int* index = malloc(pairs * sizeof(int));
150 size_t* size = malloc(pairs * sizeof(size_t));
151 char** sha1sum = malloc(pairs * sizeof(char*));
153 for (i = 0; i < pairs; ++i) {
164 // sort the index[] array so it indexes the pairs in order of
167 qsort(index, pairs, sizeof(int), compare_size_indices);
208 file->data = malloc(size[index[pairs-1]]);
212 for (i = 0; i < pairs; ++i)
    [all...]
  /development/host/windows/usb/legacy/driver/
android_usb_device_object.cpp 869 PWDF_USB_INTERFACE_SETTING_PAIR pairs = NULL; local
    [all...]
  /external/srec/srec/EventLog/src/
riff.c 509 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->key)
    [all...]
  /sdk/draw9patch/src/com/android/draw9patch/ui/
ImageEditorPanel.java     [all...]

Completed in 574 milliseconds

1 2 3