HomeSort by relevance Sort by last modified time
    Searched defs:keys (Results 101 - 125 of 658) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/antlr/runtime/ObjC/Framework/
ACBTree.h 51 __strong ACBKey **keys; /* pointer to keys */ variable
69 @property (assign) ACBKey **keys; variable
  /external/apache-http/src/org/apache/commons/logging/impl/
WeakHashtable.java 26 * to hold its keys thus allowing them to be reclaimed by the garbage collector.
30 * possible. It therefore does not accept null values or keys.</p>
80 * are used for its keys, it is necessary to use strong references for its values.
129 /* ReferenceQueue we check for gc'd keys */
190 public Enumeration keys() { method in class:WeakHashtable
192 final Enumeration enumer = super.keys();
228 throw new NullPointerException("Null keys are not allowed");
322 * Purges all entries whose wrapped keys
451 // existing keys, normal hashtable operations should never
  /external/apache-xml/src/main/java/org/apache/xalan/transformer/
KeyIterator.java 105 Vector keys = ki.getKeyDeclarations(); local
111 int nDeclarations = keys.size();
116 KeyDeclaration kd = (KeyDeclaration) keys.elementAt(i);
  /external/apache-xml/src/main/java/org/apache/xml/serializer/utils/
StringToIntTable.java 25 * number strings being keys, and the odd number strings being values.
188 * Return array of keys in the table.
192 public final String[] keys() method in class:StringToIntTable
  /external/apache-xml/src/main/java/org/apache/xml/utils/
StringToIntTable.java 25 * number strings being keys, and the odd number strings being values.
181 * Return array of keys in the table.
185 public final String[] keys() method in class:StringToIntTable
  /external/bcc/tools/
tcpsubnet.py 229 # IPv4: build dict of all seen keys
230 keys = ipv4_send_bytes variable
232 if k not in keys:
233 keys[k] = v
245 for k, v in reversed(sorted(keys.items(), key=lambda keys: keys[1].value)):
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x500/style/
AbstractX500NameStyle.java 35 Enumeration keys = paramsMap.keys(); local
36 while (keys.hasMoreElements())
38 Object key = keys.nextElement();
  /external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/asn1/x500/style/
AbstractX500NameStyle.java 37 Enumeration keys = paramsMap.keys(); local
38 while (keys.hasMoreElements())
40 Object key = keys.nextElement();
  /external/cldr/tools/java/org/unicode/cldr/tool/
GenerateBcp47Tests.java 35 Set<String> keys = extensionKeys.getValue(); local
36 for (String key : keys) {
  /external/doclava/src/com/google/doclava/
Hierarchy.java 51 * Set<String> keys = nodes.keySet(); for (String n: keys) { System.out.println("class: " + n);
65 Set<String> keys = nodes.keySet(); local
66 if (keys.size() > 0) {
69 for (String n : keys) {
  /external/fonttools/Lib/fontTools/ttLib/tables/
_t_r_a_k.py 242 def keys(self): member in class:TrackData
243 return self._map.keys()
245 tracks = keys
299 def keys(self): member in class:TrackTableEntry
300 return self._map.keys()
302 sizes = keys
  /external/grpc-grpc/src/core/ext/transport/chttp2/transport/
stream_map.cc 31 map->keys =
41 gpr_free(map->keys);
45 static size_t compact(uint32_t* keys, void** values, size_t count) {
50 keys[out] = keys[i];
63 uint32_t* keys = map->keys; local
66 GPR_ASSERT(count == 0 || keys[count - 1] < key);
72 count = compact(keys, values, count);
78 map->keys = keys = static_cast<uint32_t*>
94 uint32_t* keys = map->keys; local
    [all...]
  /external/guava/guava/src/com/google/common/collect/
ForwardingMultimap.java 87 public Multiset<K> keys() { method in class:ForwardingMultimap
88 return delegate().keys();
Multimap.java 29 * A collection that maps keys to values, similar to {@link Map}, but in which
31 * contents of a multimap either as a map from keys to <i>nonempty</i>
86 * <li>{@link #keys}, {@link #keySet}, {@link #values}, {@link #entries}, which
129 * keys.
149 * as keys in a {@code Multimap}.
171 * keys</i> in the multimap, which is given by {@code keySet().size()} or
298 * Returns a view collection of all <i>distinct</i> keys contained in this
310 * the same size as this multimap, and {@code keys().count(k) ==
317 Multiset<K> keys(); method in interface:Multimap
  /external/guava/guava-testlib/src/com/google/common/collect/testing/google/
MultimapKeysTester.java 49 Multiset<K> keys = multimap().keys(); local
50 assertEquals(2, keys.count(sampleKeys().e0));
51 assertEquals(1, keys.count(sampleKeys().e1));
52 assertEquals(3, keys.size());
53 assertThat(keys).has().allOf(sampleKeys().e0, sampleKeys().e1);
54 assertThat(keys.entrySet()).has().allOf(
61 assertEquals(0, multimap().keys().count(null));
71 Multiset<K> keys = multimap().keys(); local
94 Multiset<K> keys = multimap().keys(); local
    [all...]
MultimapReplaceValuesTester.java 109 List<K> keys = Helpers.copyToList(multimap().keySet()); local
113 for (K k : keys) {
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
CalendarCache.java 26 keys = new long[newSize];
54 keys[index] = key;
63 while (values[index] != EMPTY && keys[index] != key)
76 long[] oldKeys = keys;
123 private long[] keys = new long[arraySize]; field in class:CalendarCache
  /external/icu/icu4c/source/test/perf/unisetperf/draft/
bitset.cpp 36 int64_t keys[0x800]; // 2k member in struct:BMPBitHash
49 * Map at most 1k=0x400 different keys with this data structure.
61 keys[hash]=key;
64 } else if(keys[hash]==key) {
77 * Invert the hash map: Fill an array of length countKeys() with the keys
84 k[i]=keys[reverse[i]];
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
CalendarCache.java 24 keys = new long[newSize];
52 keys[index] = key;
61 while (values[index] != EMPTY && keys[index] != key)
74 long[] oldKeys = keys;
121 private long[] keys = new long[arraySize]; field in class:CalendarCache
  /external/iproute2/tc/
f_flow.c 27 " [hashing mode]: hash keys KEY-LIST ... [ perturb SECS ]\n"
63 static int flow_parse_keys(__u32 *keys, __u32 *nkeys, char *argv)
68 *keys = 0;
78 *keys |= 1 << i;
98 static int get_addend(__u32 *addend, char *argv, __u32 keys)
112 if (keys & (FLOW_KEY_SRC | FLOW_KEY_DST |
139 __u32 keys = 0, nkeys = 0; local
158 } else if (matches(*argv, "keys") == 0) {
160 if (flow_parse_keys(&keys, &nkeys, *argv))
162 addattr32(n, 4096, TCA_FLOW_KEYS, keys);
    [all...]
  /external/libdrm/tests/
drmsl.c 63 unsigned long keys[1000000]; local
75 keys[i] = drmRandom(ranstate);
76 drmSLInsert(list, keys[i], NULL);
92 if (drmSLLookup(list, keys[i], &value))
93 printf("Error %lu %d\n", keys[i], i);
  /external/ltp/pan/
symbol.c 190 * add new keys for sub-trees until key list is exhausted;
196 const char **keys; /* key split into a 2d string array */ local
206 keys = splitstr(key, ",", NULL);
208 if (keys == NULL) {
213 for (kk = (char **)keys, csym = sym;
222 splitstr_free(keys);
227 splitstr_free(keys);
234 splitstr_free(keys);
255 splitstr_free(keys);
268 const char **keys; /* key split into a 2d string array * local
    [all...]
  /external/markdown/markdown/
odict.py 3 A dictionary that keeps its keys in the order in which they're inserted.
18 self.keyOrder = data.keys()
64 def keys(self): member in class:OrderedDict
109 Replace the normal dict.__repr__ with a version that returns the keys
  /external/mesa3d/src/util/
disk_cache.h 39 /* Size of cache keys in bytes. */
62 cache_key *keys; /* sha1 list of shaders that make up the cache item */ member in struct:cache_item_metadata
126 * In all cases, the keys are sequences of 20 bytes. It is anticipated
127 * that callers will compute appropriate SHA-1 signatures for keys,
196 * Note: disk_cache_has_key() will only return true for keys passed to
  /external/opencensus-java/exporters/stats/signalfx/src/main/java/io/opencensus/exporter/stats/signalfx/
SignalFxSessionAdaptor.java 67 List<TagKey> keys = view.getColumns(); local
81 .addAllDimensions(createDimensions(keys, entry.getKey()))
107 List<TagKey> keys, List</*@Nullable*/ TagValue> values) {
109 keys.size() == values.size(), "TagKeys and TagValues don't have the same size.");
110 List<Dimension> dimensions = new ArrayList<>(keys.size());
111 for (ListIterator<TagKey> it = keys.listIterator(); it.hasNext(); ) {

Completed in 1709 milliseconds

1 2 3 45 6 7 8 91011>>