HomeSort by relevance Sort by last modified time
    Searched defs:keys (Results 176 - 200 of 1239) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/guava/guava/src/com/google/common/collect/
AbstractMultimap.java 157 private transient Multiset<K> keys; field in class:AbstractMultimap
160 public Multiset<K> keys() { method in class:AbstractMultimap
161 Multiset<K> result = keys;
162 return (result == null) ? keys = createKeys() : result;
166 return new Multimaps.Keys<K, V>(this);
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
Multimaps.java 406 transient Multiset<K> keys; field in class:Multimaps.UnmodifiableMultimap
449 @Override public Multiset<K> keys() { method in class:Multimaps.UnmodifiableMultimap
450 Multiset<K> result = keys;
452 keys = result = Multisets.unmodifiableMultiset(delegate.keys());
    [all...]
  /external/guava/guava-testlib/src/com/google/common/collect/testing/google/
MultimapPutTester.java 166 List<K> keys = Helpers.copyToList(multimap().keySet()); local
167 for (K key : keys) {
185 List<K> keys = Helpers.copyToList(multimap().keySet()); local
186 for (K key : keys) {
205 List<K> keys = Helpers.copyToList(multimap().keySet()); local
206 for (K key : keys) {
  /external/guava/guava-tests/test/com/google/common/collect/
ConcurrentHashMultisetBasherTest.java 65 ImmutableList<String> keys = ImmutableList.of("a", "b", "c"); local
69 futures.add(pool.submit(new MutateTask(multiset, keys)));
80 List<Integer> actualCounts = Lists.transform(keys,
99 private final ImmutableList<String> keys; field in class:ConcurrentHashMultisetBasherTest.MutateTask
102 private MutateTask(ConcurrentHashMultiset<String> multiset, ImmutableList<String> keys) {
104 this.keys = keys;
109 int nKeys = keys.size();
114 String key = keys.get(keyIndex);
ForwardingMultimapTest.java 119 forward.keys();
120 assertEquals("[keys]", getCalls());
SynchronizedMultimapTest.java 174 @Override public Multiset<K> keys() { method in class:SynchronizedMultimapTest.TestMultimap
177 return super.keys();
  /external/icu/icu4c/source/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/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
ResourceBundleWrapper.java 31 private List<String> keys = null; field in class:ResourceBundleWrapper
64 return Collections.enumeration(keys);
69 keys = new ArrayList<String>();
74 if(!keys.contains(elem)){
75 keys.add(elem);
  /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:__anon10537
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/libdrm/
xf86drmSL.c 367 unsigned long keys[1000000]; local
380 keys[i] = SL_RANDOM;
381 drmSLInsert(list, keys[i], NULL);
397 if (drmSLLookup(list, keys[i], &value))
398 printf("Error %lu %d\n", keys[i], i);
  /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/mockito/cglib-and-asm/src/org/mockito/cglib/beans/
BeanMap.java 27 * A <code>Map</code>-based view of a JavaBean. The default set of keys is the
289 Set keys = keySet(); local
290 List values = new ArrayList(keys.size());
291 for (Iterator it = keys.iterator(); it.hasNext();) {
  /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 if (key_to_blob(keys[i], &blob, &blen) == 0)
135 add_key(keys[i], name);
137 free(keys);
  /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.
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/
AnnotatedBytes.java 65 * A range is defined by 2 consecutive keys in the map. The first key is the inclusive start point, the second key
292 Integer[] keys = new Integer[annotatations.size()]; local
293 keys = annotatations.keySet().toArray(keys);
298 for (int i=0; i<keys.length-1; i++) {
299 int rangeStart = keys[i];
300 int rangeEnd = keys[i+1];
323 int lastKey = keys[keys.length-1];
  /external/wpa_supplicant_8/src/eap_common/
eap_sim_common.c 82 wpa_printf(MSG_ERROR, "EAP-SIM: Failed to derive keys");
147 wpa_printf(MSG_ERROR, "EAP-SIM: Failed to derive keys");
281 u8 keys[EAP_SIM_K_ENCR_LEN + EAP_AKA_PRIME_K_AUT_LEN + local
298 keys, sizeof(keys));
300 pos = keys;
330 u8 keys[EAP_MSK_LEN + EAP_EMSK_LEN]; local
344 keys, sizeof(keys));
346 pos = keys;
    [all...]
  /external/wpa_supplicant_8/src/eap_peer/
eap_tls_common.c 300 * @label: Label string for deriving the keys, e.g., "client EAP encryption"
346 struct tls_keys keys; local
349 if (tls_connection_get_keys(sm->ssl_ctx, data->conn, &keys))
352 if (keys.client_random == NULL || keys.server_random == NULL)
355 *len = 1 + keys.client_random_len + keys.server_random_len;
362 os_memcpy(out + 1, keys.client_random, keys.client_random_len);
363 os_memcpy(out + 1 + keys.client_random_len, keys.server_random
    [all...]
ikev2.h 36 struct ikev2_keys keys; member in struct:ikev2_responder_data
  /frameworks/base/core/java/android/os/
TokenWatcher.java 136 Set<IBinder> keys = mTokens.keySet(); local
139 for (IBinder b: keys) {
  /frameworks/base/core/java/android/test/
InstrumentationTestCase.java 240 * of keys is a string containing the key names as specified in KeyEvent, without the
245 * @param keysSequence The sequence of keys.
248 final String[] keys = keysSequence.split(" "); local
249 final int count = keys.length;
254 String key = keys[i];
297 * @param keys The series of key codes to send through instrumentation.
299 public void sendKeys(int... keys) {
300 final int count = keys.length;
305 instrumentation.sendKeyDownUpSync(keys[i]);
321 * @param keys The series of key repeats and codes to send through instrumentation
    [all...]
  /frameworks/base/core/java/com/android/server/backup/
SystemBackupAgent.java 65 // Use old keys to keep legacy data compatibility and avoid writing two wallpapers
76 String[] keys = new String[] { WALLPAPER_IMAGE_KEY, WALLPAPER_INFO_KEY }; local
85 keys = new String[] { WALLPAPER_INFO_KEY };
91 addHelper(WALLPAPER_HELPER, new WallpaperBackupHelper(this, files, keys));

Completed in 698 milliseconds

1 2 3 4 5 6 78 91011>>