HomeSort by relevance Sort by last modified time
    Searched refs:key (Results 151 - 175 of 15685) sorted by null

1 2 3 4 5 67 8 91011>>

  /libcore/ojluni/src/main/java/sun/security/util/
KeyUtil.java 29 import java.security.Key;
40 * A utility class to get key length, valiate keys, etc.
45 * Returns the key size of the given key object in bits.
47 * @param key the key object, cannot be null
48 * @return the key size of the given key object in bits, or -1 if the
49 * key size is not accessible
51 public static final int getKeySize(Key key)
    [all...]
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/layout/
Symbols.java 38 builder.replaceKeyOfLabel(DOUBLE_QUOTE, key("\"", joinMoreKeys(
40 builder.replaceKeyOfLabel(SINGLE_QUOTE, key("'", joinMoreKeys(
60 // Variations of the "currency" key on the 2nd row.
67 public static final ExpectedKey DOLLAR_SIGN = key("$");
68 public static final ExpectedKey CENT_SIGN = key("\u00A2");
69 public static final ExpectedKey POUND_SIGN = key("\u00A3");
70 public static final ExpectedKey YEN_SIGN = key("\u00A5");
71 public static final ExpectedKey EURO_SIGN = key("\u20AC");
72 public static final ExpectedKey PESO_SIGN = key("\u20B1");
73 public static final ExpectedKey CURRENCY_DOLLAR = key("$"
    [all...]
Hebrew.java 87 private static final ExpectedKey HEBREW_ALPHABET_KEY = key(
90 private static final ExpectedKey CURRENCY_NEW_SHEQEL = key("\u20AA",
93 ",", "?", "!", "#", key(")", "("), key("(", ")"), "/", ";",
97 ",", "'", "#", key(")", "("), key("(", ")"), "/", ";",
111 key("'", joinMoreKeys("1", "\"")),
112 key("-", joinMoreKeys("2", "_")),
114 key("\u05E7", moreKey("3")),
116 key("\u05E8", moreKey("4"))
    [all...]
  /external/selinux/libsepol/src/
avtab.c 92 avtab_insert_node(avtab_t * h, int hvalue, avtab_ptr_t prev, avtab_key_t * key,
102 newnode->key = *key;
104 if (key->specified & AVTAB_XPERMS) {
135 int avtab_insert(avtab_t * h, avtab_key_t * key, avtab_datum_t * datum)
140 key->specified & ~(AVTAB_ENABLED | AVTAB_ENABLED_OLD);
145 hvalue = avtab_hash(key, h->mask);
148 if (key->source_type == cur->key.source_type &&
149 key->target_type == cur->key.target_type &
440 avtab_key_t key; local
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/
ClassSection.java 51 @Nullable Map.Entry<? extends ClassKey, Integer> getClassEntryByType(@Nullable TypeKey key);
53 @Nonnull TypeKey getType(@Nonnull ClassKey key);
54 int getAccessFlags(@Nonnull ClassKey key);
55 @Nullable TypeKey getSuperclass(@Nonnull ClassKey key);
56 @Nullable TypeListKey getInterfaces(@Nonnull ClassKey key);
57 @Nullable StringKey getSourceFile(@Nonnull ClassKey key);
58 @Nullable Collection<? extends EncodedValue> getStaticInitializers(@Nonnull ClassKey key);
60 @Nonnull Collection<? extends FieldKey> getSortedStaticFields(@Nonnull ClassKey key);
61 @Nonnull Collection<? extends FieldKey> getSortedInstanceFields(@Nonnull ClassKey key);
62 @Nonnull Collection<? extends FieldKey> getSortedFields(@Nonnull ClassKey key);
    [all...]
  /packages/apps/Dialer/java/com/android/dialer/common/
PerAccountSharedPreferences.java 27 * essentially store the shared preference by appending the phone account id to the key.
64 public Editor putBoolean(String key, boolean value) {
65 editor.putBoolean(getKey(key), value);
69 public Editor putFloat(String key, float value) {
70 editor.putFloat(getKey(key), value);
74 public Editor putInt(String key, int value) {
75 editor.putInt(getKey(key), value);
79 public Editor putLong(String key, long value) {
80 editor.putLong(getKey(key), value);
84 public Editor putString(String key, String value)
    [all...]
  /development/apps/Development/src/com/android/development/
ColumnData.java 25 key = k;
28 public String key; field in class:ColumnData
  /external/clang/test/SemaObjC/
format-strings-system.h 8 #define NSLocalizedString(key) GetLocalizedString(key)
  /external/dagger2/util/
mvn-deploy.sh 3 echo "usage $0 <ssl-key> [<param> ...]"
6 key=$1
9 #validate key
10 keystatus=$(gpg --list-keys | grep ${key} | awk '{print $1}')
12 echo "Could not find public key with label ${key}"
20 -Dgpg.skip=false -Dgpg.keyname=${key} \
  /external/guava/guava/src/com/google/common/base/
StandardSystemProperty.java 118 private final String key; field in class:StandardSystemProperty
120 private StandardSystemProperty(String key) {
121 this.key = key;
125 * Returns the key used to lookup this system property.
127 public String key() { method in class:StandardSystemProperty
128 return key;
137 return System.getProperty(key);
144 return key() + "=" + value();
  /external/guava/guava/src/com/google/common/collect/
ForwardingConcurrentMap.java 42 public V putIfAbsent(K key, V value) {
43 return delegate().putIfAbsent(key, value);
47 public boolean remove(Object key, Object value) {
48 return delegate().remove(key, value);
52 public V replace(K key, V value) {
53 return delegate().replace(key, value);
57 public boolean replace(K key, V oldValue, V newValue) {
58 return delegate().replace(key, oldValue, newValue);
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
CacheBase.java 15 * implements the createInstance() method, and call get() with the key and the data.
19 * @param <K> Cache lookup key type
28 * Retrieves an instance from the cache. Calls createInstance(key, data) if the cache
29 * does not already contain an instance with this key.
30 * Ignores data if the cache already contains an instance with this key.
31 * @param key Cache lookup key for the requested instance
35 public abstract V getInstance(K key, D data);
37 * Creates an instance for the key and data. Must be overridden.
38 * @param key Cache lookup key for the requested instanc
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
CacheBase.java 14 * implements the createInstance() method, and call get() with the key and the data.
18 * @param <K> Cache lookup key type
26 * Retrieves an instance from the cache. Calls createInstance(key, data) if the cache
27 * does not already contain an instance with this key.
28 * Ignores data if the cache already contains an instance with this key.
29 * @param key Cache lookup key for the requested instance
33 public abstract V getInstance(K key, D data);
35 * Creates an instance for the key and data. Must be overridden.
36 * @param key Cache lookup key for the requested instanc
    [all...]
  /external/ltp/testcases/cve/
cve-2016-7042.c 38 static key_serial_t key; variable
45 key = add_key("user", "ltptestkey", "a", 1, KEY_SPEC_SESSION_KEYRING);
46 if (key == -1)
47 tst_brk(TBROK, "Failed to add key");
49 if (keyctl(KEYCTL_UPDATE, key, "b", 1))
50 tst_brk(TBROK, "Failed to update key");
62 if (keyctl(KEYCTL_UNLINK, key, KEY_SPEC_SESSION_KEYRING))
63 tst_brk(TBROK, "Failed to unlink key");
64 key = 0;
75 if (key > 0 && keyctl(KEYCTL_UNLINK, key, KEY_SPEC_SESSION_KEYRING)
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_ff_gs.c 49 struct brw_ff_gs_prog_key *key)
58 c.key = *key;
81 switch (key->primitive) {
108 gen6_sol_program(&c, key, num_verts, check_edge_flag);
114 switch (key->primitive) {
116 brw_ff_gs_quads( &c, key );
119 brw_ff_gs_quad_strip( &c, key );
144 &c.key, sizeof(c.key),
239 struct brw_ff_gs_prog_key key; local
    [all...]
  /external/mesa3d/src/mesa/main/
hash.h 42 extern void *_mesa_HashLookup(struct _mesa_HashTable *table, GLuint key);
44 extern void _mesa_HashInsert(struct _mesa_HashTable *table, GLuint key, void *data);
46 extern void _mesa_HashRemove(struct _mesa_HashTable *table, GLuint key);
52 extern void *_mesa_HashLookupLocked(struct _mesa_HashTable *table, GLuint key);
55 GLuint key, void *data);
57 extern void _mesa_HashRemoveLocked(struct _mesa_HashTable *table, GLuint key);
61 void (*callback)(GLuint key, void *data, void *userData),
66 void (*callback)(GLuint key, void *data, void *userData),
  /external/mesa3d/src/util/
disk_cache.h 54 * name (or "key"). This is provided via disk_cache_put() and
57 * o The ability to store a key alone and check later whether the
58 * key was previously stored. This is provided via disk_cache_put_key()
81 * Store an item in the cache under the name \key.
90 disk_cache_put(struct disk_cache *cache, cache_key key,
94 * Retrieve an item previously stored in the cache with the name <key>.
107 disk_cache_get(struct disk_cache *cache, cache_key key, size_t *size);
110 * Store the name \key within the cache, (without any associated data).
112 * Later this key can be checked with disk_cache_has_key(), (unless the key
    [all...]
  /external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/test/
StubResourceBundle.groovy 20 * and allow dynamic adding or changing of map contents. Automatically define default value for key if no entry
21 * exists for the key.
31 void put(String key, String value) {
32 map.put(key, value)
35 Object handleGetObject(String key) {
37 return map[key] ?: "key=$key arg0={0} arg1={1}".toString()
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/scanner/
SimpleKeyTest.java 23 SimpleKey key = new SimpleKey(1, false, 5, 3, 2, null); local
24 assertTrue(key.toString().contains("SimpleKey"));
  /external/tensorflow/tensorflow/compiler/xla/service/
hlo_module_config.cc 42 string key = local
44 StrAppend(&key, "::(");
50 StrAppend(&key, tensorflow::str_util::Join(params, ", "), ") => ",
55 StrAppend(&key, "forcing recompile ", counter++);
58 StrAppend(&key, "::replica_count=", replica_count());
60 StrAppend(&key, debug_options_.DebugString());
62 StrAppend(&key, "::intra_op_parallelism_threads=",
65 return key;
  /external/tensorflow/tensorflow/contrib/verbs/
verbs_util.h 27 static string AppendStepidToKey(const string& key, int64 step_id);
28 static void GetKeyAndStepId(const string& key_with_step_id, string& key,
  /external/tensorflow/tensorflow/core/platform/default/
strong_hash.h 24 inline uint64 StrongKeyedHash(const uint64 (&key)[2], const string& s) {
25 return highwayhash::StringHasher<highwayhash::SipHashState>()(key, s);
  /external/wpa_supplicant_8/src/crypto/
aes-encblock.c 18 * @key: Key for AES
23 int aes_128_encrypt_block(const u8 *key, const u8 *in, u8 *out)
26 ctx = aes_encrypt_init(key, 16);
  /frameworks/wilhelm/tools/hashgen/
part8.c 1 if (key <= MAX_HASH_VALUE) {
2 int MPH = hash_to_MPH[key];
  /libcore/luni/src/main/java/libcore/icu/
CollationKeyICU.java 20 * The key.
22 private final android.icu.text.CollationKey key; field in class:CollationKeyICU
24 public CollationKeyICU(String source, android.icu.text.CollationKey key) {
26 this.key = key;
33 otherKey = ((CollationKeyICU) other).key;
39 return key.compareTo(otherKey);
61 * @return hash value of collation key. Hash value is never 0.
66 return key.hashCode();
71 return key.toByteArray()
    [all...]

Completed in 2010 milliseconds

1 2 3 4 5 67 8 91011>>