Searched defs:key (Results 226 - 250 of 3586) sorted by relevance

1234567891011>>

/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/normalizer/
H A DIntStringHashtable.java28 public void put(int key, String value) { argument
30 table.remove(new Integer(key));
32 table.put(new Integer(key), value);
36 public String get(int key) { argument
37 String value = table.get(new Integer(key));
H A DLongHashtable.java27 public void put(long key, int value) { argument
29 table.remove(new Long(key));
31 table.put(new Long(key), new Integer(value));
35 public int get(long key) { argument
36 Integer value = table.get(new Long(key));
/external/icu/android_icu4j/src/main/tests/android/icu/dev/util/
H A DImmutableEntry.java24 ImmutableEntry(K key, V value) { argument
25 k = key;
/external/icu/icu4c/source/i18n/
H A Drbt_rule.h37 * exactly (the key) and optional context. Context must match if it
38 * is specified. Context may be specified before the key, after the
39 * key, or both. The key, preceding context, and following context
68 * The match that must occur before the key, or null if there is no
74 * The matcher object for the key. If null, then the key is empty.
76 StringMatcher *key; member in class:TransliterationRule
79 * The match that must occur after the key, or null if there is no
85 * The object that performs the replacement if the key,
[all...]
/external/icu/icu4c/source/test/intltest/
H A Dsfwdchit.cpp22 // and for any key whose computed hash code is kInvalidHashCode.
97 UHashTok key; local
98 key.pointer = fStart;
99 ((SimpleFwdCharIterator *)this)->fHashCode = uhash_hashUChars(key);
/external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/impl/
H A DICUCache.java17 // NULL object, which may be used for a cache key
21 public void put(K key, V value); argument
22 public V get(Object key); argument
H A DSimpleCache.java42 public V get(Object key) { argument
47 return map.get(key);
53 public void put(K key, V value) { argument
68 map.put(key, value);
/external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/impl/locale/
H A DExtension.java16 protected Extension(char key) { argument
17 _key = key;
20 Extension(char key, String value) { argument
21 _key = key;
/external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/text/
H A DCollationKey.java35 * the key is created, binary comparisons are fast. This approach is
90 final java.text.CollationKey key; field in class:CollationKey
96 this.key = delegate;
154 // * @param key array of bytes that represent the collation order of argument
159 // public CollationKey(String source, byte key[])
165 // * CollationKey constructor that forces key to release its internal byte
166 // * array for adoption. key will have a null byte array after this
169 // * @param key RawCollationKey object that represents the collation order of
175 // public CollationKey(String source, RawCollationKey key)
189 return key
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DICUCache.java17 // NULL object, which may be used for a cache key
21 public void put(K key, V value); argument
22 public V get(Object key); argument
H A DSimpleCache.java43 public V get(Object key) { argument
48 return map.get(key);
55 public void put(K key, V value) { argument
70 map.put(key, value);
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/locale/
H A DExtension.java16 protected Extension(char key) { argument
17 _key = key;
20 Extension(char key, String value) { argument
21 _key = key;
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/number/
H A DLocalizedNumberFormatter.java36 LocalizedNumberFormatter(NumberFormatterSettings<?> parent, int key, Object value) { argument
37 super(parent, key, value);
152 LocalizedNumberFormatter create(int key, Object value) { argument
153 return new LocalizedNumberFormatter(this, key, value);
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DRbnfLenientScanner.java49 * @param key The string to search "str" for
55 * the same as the length of "key")
59 int[] findText(String str, String key, int startingAt); argument
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/
H A DIntHashtable.java25 public void put(int key, int value) { argument
27 table.remove(new Integer(key));
29 table.put(new Integer(key), new Integer(value));
33 public int get(int key) { argument
34 Integer value = table.get(new Integer(key));
H A DIntStringHashtable.java25 public void put(int key, String value) { argument
27 table.remove(new Integer(key));
29 table.put(new Integer(key), value);
33 public String get(int key) { argument
34 String value = table.get(new Integer(key));
H A DLongHashtable.java24 public void put(long key, int value) { argument
26 table.remove(new Long(key));
28 table.put(new Long(key), new Integer(value));
32 public int get(long key) { argument
33 Integer value = table.get(new Long(key));
/external/iproute2/examples/bpf/
H A Dbpf_tailcall.c58 int key = 0, *val; local
60 val = map_lookup_elem(&map_sh, &key);
73 int key = 0, *val; local
75 val = map_lookup_elem(&map_sh, &key);
88 int key = 0, *val; local
90 val = map_lookup_elem(&map_sh, &key);
101 int key = 0, *val; local
104 val = map_lookup_elem(&map_sh, &key);
/external/jacoco/org.jacoco.core/src/org/jacoco/core/runtime/
H A DSystemPropertiesRuntime.java31 private final String key; field in class:SystemPropertiesRuntime
38 this.key = KEYPREFIX + Integer.toHexString(hashCode());
48 mv.visitLdcInsn(key);
68 System.getProperties().put(key, data);
72 System.getProperties().remove(key);
/external/kernel-headers/original/uapi/asm-generic/
H A Dipcbuf.h21 __kernel_key_t key; member in struct:ipc64_perm
/external/ksoap2/ksoap2-j2se/src/main/java/org/ksoap2/transport/
H A DHttpsServiceConnectionSEIgnoringConnectionClose.java15 public void setRequestProperty(String key, String value) { argument
18 if ("Connection".equalsIgnoreCase(key) && "close".equalsIgnoreCase(value)) {
21 super.setRequestProperty(key, value);
/external/libbrillo/brillo/
H A Dmap_utils.h45 // Given an STL map, returns a vector of key-value pairs from the map.
56 // Given an STL map, returns the value associated with a given key or a default
57 // value if the key is not present in the map.
61 typename T::key_type key,
63 typename T::const_iterator it = map.find(key);
59 GetOrDefault( const T& map, typename T::key_type key, const typename T::mapped_type& def) argument
/external/libchrome/base/posix/
H A Dglobal_descriptors.h35 // It maps from an abstract key to a descriptor. If independent modules each
46 Descriptor(Key key, int fd);
47 Descriptor(Key key, int fd, base::MemoryMappedFile::Region region);
49 // Globally unique key.
50 Key key; member in struct:base::GlobalDescriptors::Descriptor
59 // the following constant to the key value:
65 // Get a descriptor given a key. It is a fatal error if the key is not known.
66 int Get(Key key) const;
68 // Get a descriptor given a key
[all...]
/external/libcups/cups/
H A Dppd-attr.c33 ppd_attr_t key, /* Search key */ local
51 memset(&key, 0, sizeof(key));
52 strlcpy(key.name, name, sizeof(key.name));
58 if ((attr = (ppd_attr_t *)cupsArrayFind(ppd->sorted_attrs, &key)) != NULL)
/external/libdrm/
H A Dxf86drmHash.h33 unsigned long key; member in struct:HashBucket

Completed in 637 milliseconds

1234567891011>>