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

<<11121314151617181920>>

  /external/guava/guava-testlib/src/com/google/common/collect/testing/
MapInterfaceTest.java 45 * @param <K> the type of keys used by the maps under test
1275 Set<K> keys = map.keySet(); local
1301 Set<K> keys = map.keySet(); local
1327 Set<K> keys = map.keySet(); local
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
MultimapsTest.java 258 assertFalse(unmod.keys().contains("pwnd"));
263 * in its stead. The multimap must support null keys and values.
272 * in its stead. If the multimap does not support null keys or values,
285 unmodifiable.keys(), multimap.keys());
456 assertEquals(map.keySet(), multimapView.keys().elementSet());
457 ASSERT.that(multimapView.keys()).has().item("foo");
    [all...]
  /external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/
AlphabeticIndexTest.java 412 Counter<String> keys = getKeys(bucket); local
415 long localeCount = keys.get(item);
496 Counter<String> keys = new Counter<String>(); local
499 keys.add(key, 1);
501 return keys;
    [all...]
  /libcore/luni/src/test/java/libcore/java/util/prefs/
OldPreferencesTest.java 91 p.keys();
313 String[] keys = pref.keys(); local
314 assertEquals(4, keys.length);
315 for (String key : keys) {
1033 public String[] keys() throws BackingStoreException { method in class:OldPreferencesTest.MockPreferences
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.preferences_3.3.0.v20100503.jar 
org.eclipse.equinox.ds_1.2.1.R36x_v20100803.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.equinox.ds_1.4.101.v20130813-1853.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.equinox.ds_1.4.100.v20130515-2026.jar 
  /art/compiler/dex/quick/
codegen_util.cc 958 const int32_t* keys = reinterpret_cast<const int32_t*>(&table[2]); local
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
NativeDecoderTest.java 507 Set<UUID> keys = map.keySet(); local
508 for (UUID uuid: keys) {
  /dalvik/dx/src/com/android/dx/io/instructions/
InstructionCodec.java 644 int[] keys = new int[size]; local
648 keys[i] = in.readInt();
656 this, opcodeUnit, keys, targets);
662 int[] keys = payload.getKeys(); local
669 for (int key : keys) {
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
Rule.java 555 Set keys = options.keySet(); local
556 for (Iterator it = keys.iterator(); it.hasNext();) {
  /external/dexmaker/src/dx/java/com/android/dx/io/instructions/
InstructionCodec.java 778 int[] keys = new int[size]; local
782 keys[i] = in.readInt();
790 this, opcodeUnit, keys, targets);
796 int[] keys = payload.getKeys(); local
803 for (int key : keys) {
    [all...]
  /external/fonttools/Lib/fontTools/
cffLib.py 41 def keys(self): member in class:CFFFontSet
516 def keys(self): member in class:CharStrings
517 return list(self.charStrings.keys())
556 names = sorted(self.keys())
1129 # The FDSelect glyph data is written out to XML in the charstring keys,
    [all...]
  /external/freetype/src/sfnt/
ttcmap.c 240 /* keys 6 USHORT[256] sub-header keys */
244 /* The `keys' table is used to map charcode high-bytes to sub-headers. */
246 /* table and is computed by finding the maximum of the `keys' table. */
248 /* Note that for any n, `keys[n]' is a byte offset within the `subs' */
292 FT_Byte* keys; /* keys table */ local
306 keys = table + 6;
308 /* parse keys to compute sub-headers count */
309 p = keys;
    [all...]
  /external/icu/icu4c/source/tools/genrb/
reslist.c 768 * If there are no local keys, then use the whole 16-bit space
787 /* all keys have been mapped */
1517 char *keys; local
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
LocaleDisplayNamesImpl.java 354 Iterator<String> keys = locale.getKeywords(); local
355 if (keys != null) {
356 while (keys.hasNext()) {
357 String key = keys.next();
467 return adjustForUsageAndContext(CapitalizationContextUsage.KEY, langData.get("Keys", key));
TimeZoneNamesImpl.java 78 Set<String> keys = mapTimezones.keySet(); local
79 METAZONE_IDS = Collections.unmodifiableSet(keys);
427 private static final String[] KEYS = {"lg", "ls", "ld", "sg", "ss", "sd"};
486 String[] names = new String[KEYS.length];
489 names[i] = table.getStringWithFallback(KEYS[i]);
  /external/jetty/src/java/org/eclipse/jetty/io/nio/
SelectorManager.java 705 final long idle_now=((_lowResourcesConnections>0 && selector.keys().size()>_lowResourcesConnections))
761 for (SelectionKey k: selector.keys())
885 for (SelectionKey key:selector.keys())
979 Set<SelectionKey> keys = selector.keys(); local
    [all...]
  /external/linux-tools-perf/src/tools/perf/
builtin-lock.c 244 struct lock_key keys[] = { variable in typeref:struct:lock_key
260 for (i = 0; keys[i].name; i++) {
261 if (!strcmp(keys[i].name, sort_key)) {
262 compare = keys[i].key;
  /external/openssh/
ssh-agent.c 235 /* send list of supported public keys to 'client' */
494 /* Loop over all identities and clear the keys. */
508 /* removes expired keys and returns number of seconds until the next expiry */
711 struct sshkey **keys = NULL, *k; local
741 count = pkcs11_add_provider(provider, pin, &keys);
743 k = keys[i];
759 keys[i] = NULL;
764 free(keys);
785 /* Skip file--based keys */
    [all...]
  /external/pdfium/third_party/freetype/src/sfnt/
ttcmap.c 240 /* keys 6 USHORT[256] sub-header keys */
244 /* The `keys' table is used to map charcode high-bytes to sub-headers. */
246 /* table and is computed by finding the maximum of the `keys' table. */
248 /* Note that for any n, `keys[n]' is a byte offset within the `subs' */
292 FT_Byte* keys; /* keys table */ local
306 keys = table + 6;
308 /* parse keys to compute sub-headers count */
309 p = keys;
    [all...]
  /external/replicaisland/src/com/replica/replicaisland/
InputGameInterface.java 79 final InputButton[] keys = input.getKeyboard().getKeys(); local
116 // keys or trackball
118 final InputButton left = keys[mLeftKeyCode];
119 final InputButton right = keys[mRightKeyCode];
197 final InputButton jumpKey = keys[mJumpKeyCode];
225 final InputButton attackKey = keys[mAttackKeyCode];
226 final InputButton clickButton = keys[KeyEvent.KEYCODE_DPAD_CENTER]; // special case
  /external/wpa_supplicant_8/src/ap/
ieee802_1x.c 164 * sets this bit for all keys. */
1245 struct radius_ms_mppe_keys *keys; local
    [all...]
  /external/wpa_supplicant_8/src/radius/
radius.c 1112 struct radius_ms_mppe_keys *keys; local
1117 keys = os_zalloc(sizeof(*keys));
1118 if (keys == NULL)
1125 keys->send = decrypt_ms_key(key, keylen,
1128 &keys->send_len);
1129 if (!keys->send) {
1140 keys->recv = decrypt_ms_key(key, keylen,
1143 &keys->recv_len);
1144 if (!keys->recv)
1161 struct radius_ms_mppe_keys *keys; local
    [all...]

Completed in 420 milliseconds

<<11121314151617181920>>