HomeSort by relevance Sort by last modified time
    Searched refs:pairs (Results 51 - 75 of 246) sorted by null

1 23 4 5 6 7 8 910

  /external/skia/src/core/
SkData.cpp 237 Pair* pairs = fPairs = allocatePairStorage(count, keySize); local
238 char* keyStorage = (char*)(pairs + count);
243 if (!findValue(array[i].fKey, pairs, uniqueCount)) {
246 pairs[uniqueCount].fKey = keyStorage;
250 pairs[uniqueCount].fValue = dupdata(array[i].fValue);
  /frameworks/wilhelm/tests/sandbox/
reverb.c 40 Pair pairs[] = { variable
132 for (j = 0; j < sizeof(pairs) / sizeof(pairs[0]); ++j) {
133 if (!strcasecmp(name, pairs[j].mName)) {
134 return &pairs[j].mSettings;
148 for (j = 0; j < sizeof(pairs) / sizeof(pairs[0]); ++j) {
149 const char *name = pairs[j].mName;
  /external/chromium/net/tools/testserver/
testserver.py 969 pairs = {}
975 # Pull out all the name="value" pairs as a dictionary.
976 pairs = dict(re.findall(r'(\b[^ ,=]+)="?([^",]+)"?', auth))
979 if pairs['nonce'] != nonce:
981 if pairs['opaque'] != opaque:
987 ':'.join([pairs['username'], realm, password])).hexdigest()
988 hash_a2 = _new_md5(':'.join([self.command, pairs['uri']])).hexdigest()
989 if 'qop' in pairs and 'nc' in pairs and 'cnonce' in pairs
    [all...]
  /external/chromium_org/v8/test/mjsunit/
switch.js 385 var pairs = [],
389 pairs = test_type.map(function(v) {
396 pairs = clause_values.string.map(function(v) {
403 pairs = clause_values.string.map(function(v) {
410 pairs = [
416 pairs = clause_values.smi.map(function(v) {
423 pairs = clause_values.smi.map(function(v) {
431 pairs.forEach(function(pair) {
  /external/openfst/src/include/fst/
symbol-table.h 503 // Relabels a symbol table as specified by the input vector of pairs
510 const vector<pair<Label, Label> > &pairs) {
515 for (size_t i = 0; i < pairs.size(); ++i)
516 new_table->AddSymbol(table->Find(pairs[i].first), pairs[i].second);
  /external/v8/test/mjsunit/
switch.js 385 var pairs = [],
389 pairs = test_type.map(function(v) {
396 pairs = clause_values.string.map(function(v) {
403 pairs = clause_values.string.map(function(v) {
410 pairs = [
416 pairs = clause_values.smi.map(function(v) {
423 pairs = clause_values.smi.map(function(v) {
431 pairs.forEach(function(pair) {
  /ndk/sources/android/support/src/musl-ctype/
towctrans.c 90 static const unsigned short pairs[][2] = { variable
251 for (i=0; pairs[i][1-lower]; i++) {
252 if (pairs[i][1-lower] == wc)
253 return pairs[i][lower];
  /external/chromium_org/net/cert/
x509_cert_types_mac.cc 89 CSSM_X509_TYPE_VALUE_PAIR* pairs; member in struct:net::__anon10999::KeyValuePairs
93 { SEC_ASN1_SET_OF, offsetof(KeyValuePairs, pairs),
229 NULL != (pair = name[rdn].pairs_list[0][pair_index].pairs);
  /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...]
  /frameworks/base/core/java/android/view/textservice/
SpellCheckerSubtype.java 95 final String[] pairs = mSubtypeExtraValue.split(EXTRA_VALUE_PAIR_SEPARATOR); local
96 final int N = pairs.length;
98 final String[] pair = pairs[i].split(EXTRA_VALUE_KEY_VALUE_SEPARATOR);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/animator/
AnimationContentAssist.java 147 // Extract just the name+description pairs, since we don't want to
150 List<Pair<String, String>> pairs = local
153 pairs.add(Pair.of(d.getXmlLocalName(), d.getAttributeInfo().getJavaDoc()));
156 addMatchingProposals(proposals, pairs.toArray(), offset, node, wordPrefix,
  /external/skia/tests/
DataRefTest.cpp 165 static void unrefAll(const SkDataSet::Pair pairs[], int count) {
167 pairs[i].fValue->unref();
217 const SkDataSet::Pair pairs[] = { local
222 SkDataSet set3(pairs, 3);
223 unrefAll(pairs, 3);
  /packages/apps/Browser/src/com/android/browser/
IntentHandler.java 198 final Bundle pairs = intent local
200 if (pairs != null && !pairs.isEmpty()) {
201 Iterator<String> iter = pairs.keySet().iterator();
205 headers.put(key, pairs.getString(key));
  /external/chromium_org/v8/tools/gcmole/
gcmole.lua 163 for condition, files in pairs(sources) do
188 for k, v in pairs(self) do e[k] = v end
189 for k, v in pairs(t) do e[k] = v end
283 for caller, _ in pairs(callers) do
292 for funcname, callers in pairs(funcs) do
309 for name, value in pairs(gc) do if value then out:write (name, '\n') end end
314 for name, causes in pairs(gc_caused) do
  /external/v8/tools/gcmole/
gcmole.lua 160 for condition, files in pairs(sources) do
185 for k, v in pairs(self) do e[k] = v end
186 for k, v in pairs(t) do e[k] = v end
280 for caller, _ in pairs(callers) do
289 for funcname, callers in pairs(funcs) do
306 for name, value in pairs(gc) do if value then out:write (name, '\n') end end
311 for name, causes in pairs(gc_caused) do
  /build/tools/droiddoc/templates-pdk/assets/
android-developer-resource-browser.js 198 var pairs = paramStr.split('&');
199 for (var i = 0; i < pairs.length; i++) {
200 var p = pairs[i].split('=');
  /external/chromium/chrome/common/extensions/docs/examples/apps/hello-php/lib/oauth/
OAuth.php 821 $pairs = explode('&', $input); variable
824 foreach ($pairs as $pair) {
859 $pairs = array(); variable
867 $pairs[] = $parameter . '=' . $duplicate_value;
870 $pairs[] = $parameter . '=' . $value;
875 return implode('&', $pairs);
  /external/chromium_org/chrome/common/extensions/docs/examples/apps/hello-php/lib/oauth/
OAuth.php 821 $pairs = explode('&', $input); variable
824 foreach ($pairs as $pair) {
859 $pairs = array(); variable
867 $pairs[] = $parameter . '=' . $duplicate_value;
870 $pairs[] = $parameter . '=' . $value;
875 return implode('&', $pairs);
  /dalvik/dx/src/com/android/dx/dex/file/
ValueEncoder.java 323 Collection<NameValuePair> pairs = annotation.getNameValuePairs(); local
324 int size = pairs.size();
333 for (NameValuePair pair : pairs) {
  /external/chromium/net/base/
x509_cert_types_mac.cc 79 KeyValuePair* pairs; member in struct:net::__anon5424::KeyValuePairs
83 { SEC_ASN1_SET_OF, offsetof(KeyValuePairs, pairs),
219 NULL != (pair = name[rdn].pairs_list[0][pair_index].pairs);
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
ValueEncoder.java 322 Collection<NameValuePair> pairs = annotation.getNameValuePairs(); local
323 int size = pairs.size();
332 for (NameValuePair pair : pairs) {
  /bootable/recovery/applypatch/
applypatch.c 169 int pairs = (colons-1)/2; // # of (size,sha1) pairs in filename local
170 int* index = malloc(pairs * sizeof(int));
171 size_t* size = malloc(pairs * sizeof(size_t));
172 char** sha1sum = malloc(pairs * sizeof(char*));
174 for (i = 0; i < pairs; ++i) {
185 // sort the index[] array so it indexes the pairs in order of
188 qsort(index, pairs, sizeof(int), compare_size_indices);
229 file->data = malloc(size[index[pairs-1]]);
233 for (i = 0; i < pairs; ++i)
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/server2/
cache_chain_object_store.py 13 - |object_store_futures| a list of (object store, future) pairs, where future
  /external/chromium_org/remoting/webapp/
host_settings.js 20 * dictionary of (name, value) pairs.
46 * (name, value) pairs.
  /external/opencv/ml/src/
ml_inner_functions.cpp 1101 CvSampleResponsePair* pairs = 0; local
1115 CV_CALL( pairs = (CvSampleResponsePair*)cvAlloc( (sample_count+1)*sizeof(pairs[0])));
1119 pairs[i].sample = samples[i];
1120 pairs[i].mask = (mask) ? (mask[i]) : 0;
1121 pairs[i].response = classes->data.i[i];
1122 pairs[i].index = i;
    [all...]

Completed in 2340 milliseconds

1 23 4 5 6 7 8 910