/external/chromium_org/third_party/openssl/openssl/ssl/ |
s3_lib.c | 3646 unsigned char *keys = parg; local [all...] |
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/genperf/ |
genperf.c | 155 key *keys; local 183 /* build list of keys */ 185 keys = NULL; 191 k->next_k = keys; 192 keys = k; 198 scramble, &smax, keys, nkeys, &form);
|
/external/chromium_org/ui/gfx/ |
render_text_mac.cc | 117 const void* keys[] = { kCTFontAttributeName }; local 121 keys, 123 arraysize(keys),
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/generators/ |
FetchBaseTask.java | 54 Enumeration keys=properties.keys(); local 55 while (keys.hasMoreElements()){ 56 String key=keys.nextElement().toString(); 148 Enumeration keys=entries.keys(); local 149 while (keys.hasMoreElements()){ 150 script=script.concat("\t\t<antcall target=\""+keys.nextElement()+"\" />\n"); 153 keys=entries.keys(); [all...] |
VersionTrackerTask.java | 146 Enumeration keys = elements.keys(); local 148 while (keys.hasMoreElements()){ 149 Object key = keys.nextElement();
|
/external/emma/core/java12/com/vladium/util/ |
Property.java | 350 * Overrides Properties.keys () [this is used for debug logging only] 352 public Enumeration keys () method in class:Property.FilePropertyLookup 356 return m_contents.keys (); 437 * Overrides Properties.keys () [this is used for debug logging only] 439 public synchronized Enumeration keys () method in class:Property.SystemPropertyLookup 470 return _propertyNames.keys (); 522 * Overrides Properties.keys () [this is used for debug logging only] 524 public synchronized Enumeration keys () method in class:Property.SystemRedirectsLookup 538 return _propertyNames.keys ();
|
/external/guava/guava/src/com/google/common/collect/ |
ImmutableMap.java | 35 * order. Does not permit null keys or values. 82 * @throws IllegalArgumentException if duplicate keys are provided 91 * @throws IllegalArgumentException if duplicate keys are provided 102 * @throws IllegalArgumentException if duplicate keys are provided 113 * @throws IllegalArgumentException if duplicate keys are provided 175 * keys are not allowed, and will cause {@link #build} to fail. 184 * necessary. Duplicate keys are not allowed, and will cause {@link #build} 207 * Associates all of the given map's keys and values in the built map. 208 * Duplicate keys are not allowed, and will cause {@link #build} to fail. 228 * @throws IllegalArgumentException if duplicate keys were adde 403 private final Object[] keys; field in class:ImmutableMap.SerializedForm [all...] |
Multimaps.java | 491 transient Multiset<K> keys; field in class:Multimaps.UnmodifiableMultimap 564 @Override public Multiset<K> keys() { method in class:Multimaps.UnmodifiableMultimap 565 Multiset<K> result = keys; 567 keys = result = Multisets.unmodifiableMultiset(delegate.keys()); [all...] |
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ |
Multimaps.java | 402 transient Multiset<K> keys; field in class:Multimaps.UnmodifiableMultimap 475 @Override public Multiset<K> keys() { method in class:Multimaps.UnmodifiableMultimap 476 Multiset<K> result = keys; 478 keys = result = Multisets.unmodifiableMultiset(delegate.keys()); [all...] |
/external/guava/guava-tests/test/com/google/common/collect/ |
ConcurrentHashMultisetBasherTest.java | 70 ImmutableList<String> keys = ImmutableList.of("a", "b", "c"); local 74 futures.add(pool.submit(new MutateTask(multiset, keys))); 85 List<Integer> actualCounts = Lists.transform(keys, 104 private final ImmutableList<String> keys; field in class:ConcurrentHashMultisetBasherTest.MutateTask 107 private MutateTask(ConcurrentHashMultiset<String> multiset, ImmutableList<String> keys) { 109 this.keys = keys; 114 int nKeys = keys.size(); 119 String key = keys.get(keyIndex);
|
ForwardingMultimapTest.java | 119 forward.keys(); 120 assertEquals("[keys]", getCalls());
|
SynchronizedMultimapTest.java | 143 @Override public Multiset<K> keys() { method in class:SynchronizedMultimapTest.TestMultimap 146 return super.keys();
|
/external/icu4c/i18n/ |
uspoof_conf.cpp | 52 // 3. Build a list of keys (UChar32s) from the four mapping tables. Sort the 405 // While copying the keys to the runtime array, 409 int32_t *keys = local 421 keys[i] = key; 425 rawData->fCFUKeys = (int32_t)((char *)keys - (char *)rawData); 427 fSpoofImpl->fSpoofData->fCFUKeys = keys;
|
/external/iproute2/tc/ |
m_pedit.c | 134 sel->keys[hwm].val = tkey->val; 135 sel->keys[hwm].mask = tkey->mask; 136 sel->keys[hwm].off = tkey->off; 137 sel->keys[hwm].at = tkey->at; 138 sel->keys[hwm].offmask = tkey->offmask; 139 sel->keys[hwm].shift = tkey->shift; 465 struct tc_pedit_key keys[MAX_OFFS]; member in struct:__anon22112 569 fprintf(f, " pedit action %s keys %d\n ", action_n2a(sel->action, b1, sizeof (b1)),sel->nkeys); 580 struct tc_pedit_key *key = sel->keys; 590 fprintf(f, "\npedit %x keys %d is not LEGIT", sel->index,sel->nkeys) [all...] |
/external/jmonkeyengine/engine/src/core-plugins/com/jme3/export/binary/ |
BinaryOutputCapsule.java | 808 // write String array for keys 809 String[] keys = array.keySet().toArray(new String[] {}); local 810 write(keys); 825 int[] keys = new int[array.size()]; local 826 Savable[] values = new Savable[keys.length]; 829 keys[i] = entry.getKey(); 834 // write String array for keys 835 write(keys);
|
/external/linux-tools-perf/util/ui/ |
browser.c | 150 void ui_browser__add_exit_keys(struct ui_browser *self, int keys[]) 154 while (keys[i] && i < 64) { 155 ui_browser__add_exit_key(self, keys[i]); 178 int keys[] = { NEWT_KEY_UP, NEWT_KEY_DOWN, NEWT_KEY_PGUP, local 199 ui_browser__add_exit_keys(self, keys);
|
/external/marisa-trie/tools/ |
marisa-benchmark.cc | 59 " -S, --print-speed print speed [1000 keys/s] (default)\n" 129 void read_keys(std::istream *input, std::vector<Key> *keys) { 146 keys->push_back(key); 151 std::vector<Key> *keys) { 153 read_keys(&std::cin, keys); 162 read_keys(&input_file, keys); 164 std::cout << "#keys: " << keys->size() << std::endl; 166 for (std::size_t i = 0; i < keys->size(); ++i) { 167 total_length += (*keys)[i].first.length() 287 std::vector<Key> keys; local [all...] |
/external/marisa-trie/v0_1_5/tools/ |
marisa_alpha-benchmark.cc | 59 " -S, --print-speed print speed [1000 keys/s] (default)\n" 129 void read_keys(std::istream *input, std::vector<Key> *keys) { 146 keys->push_back(key); 151 std::vector<Key> *keys) { 153 read_keys(&std::cin, keys); 162 read_keys(&input_file, keys); 164 std::cout << "#keys: " << keys->size() << std::endl; 166 for (std::size_t i = 0; i < keys->size(); ++i) { 167 total_length += (*keys)[i].first.length() 287 std::vector<Key> keys; local [all...] |
/external/mesa3d/src/mesa/main/ |
es_generator.py | 145 for key in VersionSpecificValues.keys(): 177 keys = apiutil.GetAllFunctions(functionList, version) variable 226 for funcName in keys: [all...] |
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/mdat/ |
SampleList.java | 102 List<Long> keys = new ArrayList<Long>(offsets2Sizes.keySet()); local 103 Collections.sort(keys); 105 long[] nuSizes = new long[sizes.length + keys.size()]; 107 long[] nuOffsets = new long[offsets.length + keys.size()]; 109 for (int i = 0; i < keys.size(); i++) { 110 nuOffsets[i + offsets.length] = keys.get(i); 111 nuSizes[i + sizes.length] = offsets2Sizes.get(keys.get(i));
|
/external/openssh/ |
ssh-pkcs11-helper.c | 117 Key **keys; local 126 if ((nkeys = pkcs11_add_provider(name, pin, &keys)) > 0) { 130 key_to_blob(keys[i], &blob, &blen); 134 add_key(keys[i], name); 136 xfree(keys);
|
/external/openssl/ssl/ |
s3_lib.c | 3601 unsigned char *keys = parg; local [all...] |
/external/qemu/android/skin/ |
keyset.c | 21 # define D_ACTIVE VERBOSE_CHECK(keys) 27 # define D(...) VERBOSE_PRINT(keys,__VA_ARGS__) 410 char keys[24]; local 411 if (len+1 >= (int)sizeof(keys)) { 415 memcpy( keys, p, len ); 416 keys[len] = 0; 417 if ( skin_key_symmod_from_str( keys, &sym, &mod ) < 0 ) { 418 D( "ignoring unknown keys '%s' for command '%s'", 419 keys, node->name );
|
/external/qemu/distrib/sdl-1.2.15/src/video/maccommon/ |
SDL_macevents.c | 161 KeyMap keys; local 162 const Uint32 *keysptr = (Uint32 *) &keys; 165 /* Check for special non-event keys */ 214 /* Check for normal event keys, but we have to scan the 218 GetKeys(keys); 227 fprintf(sterr, "New keys: 0x%x 0x%x 0x%x 0x%x\n", 233 new_bit = (((Uint8 *)keys)[i/8]>>(i%8)) & 0x01; 246 last_keys[0] = keys[0]; 247 last_keys[1] = keys[1]; 248 last_keys[2] = keys[2] [all...] |
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowSparseArray.java | 120 int[] keys = mKeys; local 128 keys[o] = keys[i]; 267 * specified key, or a negative number if no keys map to the 270 * and that multiple keys can map to the same value and this will 304 * the key is greater than all existing keys in the array.
|