Home
last modified time | relevance | path

Searched defs:key (Results 1 – 25 of 3628) sorted by relevance

12345678910>>...146

/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/
DClassSection.java51 @Nullable Map.Entry<? extends ClassKey, Integer> getClassEntryByType(@Nullable TypeKey key); in getClassEntryByType()
53 @Nonnull TypeKey getType(@Nonnull ClassKey key); in getType()
54 int getAccessFlags(@Nonnull ClassKey key); in getAccessFlags()
55 @Nullable TypeKey getSuperclass(@Nonnull ClassKey key); in getSuperclass()
56 @Nullable TypeListKey getSortedInterfaces(@Nonnull ClassKey key); in getSortedInterfaces()
57 @Nullable StringKey getSourceFile(@Nonnull ClassKey key); in getSourceFile()
58 @Nullable Collection<? extends EncodedValue> getStaticInitializers(@Nonnull ClassKey key); in getStaticInitializers()
60 @Nonnull Collection<? extends FieldKey> getSortedStaticFields(@Nonnull ClassKey key); in getSortedStaticFields()
61 @Nonnull Collection<? extends FieldKey> getSortedInstanceFields(@Nonnull ClassKey key); in getSortedInstanceFields()
62 @Nonnull Collection<? extends FieldKey> getSortedFields(@Nonnull ClassKey key); in getSortedFields()
[all …]
DMethodSection.java40 @Nonnull TypeKey getDefiningClass(@Nonnull MethodRefKey key); in getDefiningClass()
41 @Nonnull ProtoKey getPrototype(@Nonnull MethodRefKey key); in getPrototype()
42 @Nonnull ProtoKey getPrototype(@Nonnull MethodKey key); in getPrototype()
43 @Nonnull StringKey getName(@Nonnull MethodRefKey key); in getName()
44 int getMethodIndex(@Nonnull MethodKey key); in getMethodIndex()
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
DShadowBundle.java34 public void remove(String key) { in remove()
39 public Object get(String key) { in get()
44 public void putString(String key, String value) { in putString()
49 public String getString(String key) { in getString()
55 public String getString(String key, String defaultValue) { in getString()
64 public void putLong(String key, long value) { in putLong()
69 public long getLong(String key) { in getLong()
74 public long getLong(String key, long defaultValue) { in getLong()
80 public void putInt(String key, int value) { in putInt()
85 public int getInt(String key) { in getInt()
[all …]
DShadowContentValues.java47 public void put(String key, String value) { in put()
57 public void put(String key, Byte value) { in put()
62 public void put(String key, Short value) { in put()
67 public void put(String key, Integer value) { in put()
72 public void put(String key, Long value) { in put()
77 public void put(String key, Float value) { in put()
82 public void put(String key, Double value) { in put()
87 public void put(String key, Boolean value) { in put()
92 public void put(String key, byte[] value) { in put()
97 public void putNull(String key) { in putNull()
[all …]
/external/chromium_org/net/android/java/src/org/chromium/net/
DAndroidKeyStore.java28 byte[] getRSAKeyModulus(AndroidPrivateKey key); in getRSAKeyModulus()
41 byte[] getDSAKeyParamQ(AndroidPrivateKey key); in getDSAKeyParamQ()
51 byte[] getECKeyOrder(AndroidPrivateKey key); in getECKeyOrder()
62 byte[] getPrivateKeyEncodedBytes(AndroidPrivateKey key); in getPrivateKeyEncodedBytes()
94 byte[] rawSignDigestWithPrivateKey(AndroidPrivateKey key, byte[] message); in rawSignDigestWithPrivateKey()
104 int getPrivateKeyType(AndroidPrivateKey key); in getPrivateKeyType()
138 long getOpenSSLHandleForPrivateKey(AndroidPrivateKey key); in getOpenSSLHandleForPrivateKey()
151 Object getOpenSSLEngineForPrivateKey(AndroidPrivateKey key); in getOpenSSLEngineForPrivateKey()
157 void releaseKey(AndroidPrivateKey key); in releaseKey()
DDefaultAndroidKeyStore.java35 DefaultAndroidPrivateKey(PrivateKey key, DefaultAndroidKeyStore store) { in DefaultAndroidPrivateKey()
55 public byte[] getRSAKeyModulus(AndroidPrivateKey key) { in getRSAKeyModulus()
65 public byte[] getDSAKeyParamQ(AndroidPrivateKey key) { in getDSAKeyParamQ()
76 public byte[] getECKeyOrder(AndroidPrivateKey key) { in getECKeyOrder()
87 public byte[] getPrivateKeyEncodedBytes(AndroidPrivateKey key) { in getPrivateKeyEncodedBytes()
93 public byte[] rawSignDigestWithPrivateKey(AndroidPrivateKey key, in rawSignDigestWithPrivateKey()
133 public int getPrivateKeyType(AndroidPrivateKey key) { in getPrivateKeyType()
145 private Object getOpenSSLKeyForPrivateKey(AndroidPrivateKey key) { in getOpenSSLKeyForPrivateKey()
204 public long getOpenSSLHandleForPrivateKey(AndroidPrivateKey key) { in getOpenSSLHandleForPrivateKey()
245 public Object getOpenSSLEngineForPrivateKey(AndroidPrivateKey key) { in getOpenSSLEngineForPrivateKey()
[all …]
/external/apache-xml/src/main/java/org/apache/xalan/templates/
DOutputProperties.java118 public void setProperty(QName key, String value) in setProperty()
130 public void setProperty(String key, String value) in setProperty()
153 public String getProperty(QName key) in getProperty()
167 public String getProperty(String key) in getProperty()
182 public void setBooleanProperty(QName key, boolean value) in setBooleanProperty()
194 public void setBooleanProperty(String key, boolean value) in setBooleanProperty()
210 public boolean getBooleanProperty(QName key) in getBooleanProperty()
226 public boolean getBooleanProperty(String key) in getBooleanProperty()
238 public void setIntProperty(QName key, int value) in setIntProperty()
250 public void setIntProperty(String key, int value) in setIntProperty()
[all …]
/external/chromium_org/base/test/android/javatests/src/org/chromium/base/test/util/
DInMemorySharedPreferences.java40 public String getString(String key, String defValue) { in getString()
51 public Set<String> getStringSet(String key, Set<String> defValues) { in getStringSet()
61 public int getInt(String key, int defValue) { in getInt()
71 public long getLong(String key, long defValue) { in getLong()
81 public float getFloat(String key, float defValue) { in getFloat()
91 public boolean getBoolean(String key, boolean defValue) { in getBoolean()
101 public boolean contains(String key) { in contains()
133 public SharedPreferences.Editor putString(String key, String value) { in putString()
142 public SharedPreferences.Editor putStringSet(String key, Set<String> values) { in putStringSet()
151 public SharedPreferences.Editor putInt(String key, int value) { in putInt()
[all …]
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/background/mathmaps/symbols/
Dmath_delimiters.json9 "key": "0028" string
18 "key": "0029" string
27 "key": "005B" string
36 "key": "005D" string
45 "key": "007B" string
54 "key": "007D" string
62 "key": "2045" string
70 "key": "2046" string
78 "key": "2308" string
86 "key": "2309" string
[all …]
Dmath_symbols.json10 "key": "0021" string
18 "key": "0022" string
28 "key": "0023" string
37 "key": "0024" string
46 "key": "0025" string
54 "key": "0026" string
63 "key": "0027" string
71 "key": "002A" string
80 "key": "002B" string
88 "key": "002C" string
[all …]
Dmath_geometry.json9 "key": "2500" string
18 "key": "2501" string
27 "key": "2502" string
36 "key": "2503" string
45 "key": "2504" string
54 "key": "2505" string
63 "key": "2506" string
72 "key": "2507" string
81 "key": "2508" string
90 "key": "2509" string
[all …]
Dother_stars.json8 "key": "23E8" string
16 "key": "2605" string
24 "key": "2606" string
33 "key": "26AA" string
42 "key": "26AB" string
51 "key": "2705" string
60 "key": "2713" string
69 "key": "2714" string
77 "key": "2715" string
85 "key": "2716" string
[all …]
Dmath_arrows.json9 "key": "2190" string
18 "key": "2191" string
27 "key": "2192" string
36 "key": "2193" string
44 "key": "2194" string
52 "key": "2195" string
61 "key": "2196" string
70 "key": "2197" string
79 "key": "2198" string
88 "key": "2199" string
[all …]
Dmath_angles.json8 "key": "22BE" string
16 "key": "237C" string
24 "key": "27C0" string
32 "key": "299B" string
40 "key": "299C" string
48 "key": "299D" string
56 "key": "299E" string
64 "key": "299F" string
72 "key": "29A0" string
80 "key": "29A1" string
[all …]
Dmath_whitespace.json9 "key": "0020" string
19 "key": "00A0" string
28 "key": "00AD" string
37 "key": "2000" string
46 "key": "2001" string
55 "key": "2002" string
64 "key": "2003" string
73 "key": "2004" string
82 "key": "2005" string
91 "key": "2006" string
[all …]
/external/openssl/crypto/ec/
Dec_key.c385 int EC_KEY_set_public_key_affine_coordinates(EC_KEY *key, BIGNUM *x, BIGNUM *y) in EC_KEY_set_public_key_affine_coordinates()
461 const EC_GROUP *EC_KEY_get0_group(const EC_KEY *key) in EC_KEY_get0_group()
466 int EC_KEY_set_group(EC_KEY *key, const EC_GROUP *group) in EC_KEY_set_group()
474 const BIGNUM *EC_KEY_get0_private_key(const EC_KEY *key) in EC_KEY_get0_private_key()
479 int EC_KEY_set_private_key(EC_KEY *key, const BIGNUM *priv_key) in EC_KEY_set_private_key()
487 const EC_POINT *EC_KEY_get0_public_key(const EC_KEY *key) in EC_KEY_get0_public_key()
492 int EC_KEY_set_public_key(EC_KEY *key, const EC_POINT *pub_key) in EC_KEY_set_public_key()
500 unsigned int EC_KEY_get_enc_flags(const EC_KEY *key) in EC_KEY_get_enc_flags()
505 void EC_KEY_set_enc_flags(EC_KEY *key, unsigned int flags) in EC_KEY_set_enc_flags()
510 int EC_KEY_get_nonce_from_hash(const EC_KEY *key) in EC_KEY_get_nonce_from_hash()
[all …]
/external/chromium_org/third_party/libaddressinput/src/java/test/com/android/i18n/addressinput/
DLookupKeyTest.java49 LookupKey key = new LookupKey.Builder(KeyType.DATA).build(); in testRootKey() local
57 LookupKey key = new LookupKey.Builder(US_KEY).build(); in testDataKeys() local
65 LookupKey key = new LookupKey.Builder(KeyType.EXAMPLES).build(); in testExampleRootKeys() local
74 LookupKey key = new LookupKey.Builder(KeyType.EXAMPLES).setAddressData(address).build(); in testExampleKeys() local
97 LookupKey key = new LookupKey.Builder(KeyType.DATA).setAddressData(address).build(); in testFallbackToCountry() local
117 LookupKey key = new LookupKey.Builder(KeyType.DATA).setAddressData(address).build(); in testNonUsAddress() local
134 LookupKey key = new LookupKey.Builder(KeyType.DATA).setAddressData(address).build(); in testGetKeyForUpperLevelFieldWithDataKey() local
157 LookupKey key = new LookupKey.Builder("examples/US/latin/_default").build(); in testGetKeyForUpperLevelFieldWithExampleKey() local
174 LookupKey key = new LookupKey.Builder(KeyType.DATA).setAddressData(address).build(); in testGetParentKey() local
207 LookupKey key = new LookupKey.Builder(RANDOM_COUNTRY_KEY).build(); in testWeDontVerifyKeyName() local
[all …]
/external/chromium_org/third_party/WebKit/Source/core/dom/
DDocumentOrderedMap.cpp44 inline bool keyMatchesId(const AtomicString& key, const Element& element) in keyMatchesId()
49 inline bool keyMatchesMapName(const AtomicString& key, const Element& element) in keyMatchesMapName()
54 inline bool keyMatchesLowercasedMapName(const AtomicString& key, const Element& element) in keyMatchesLowercasedMapName()
59 inline bool keyMatchesLabelForAttribute(const AtomicString& key, const Element& element) in keyMatchesLabelForAttribute()
69 void DocumentOrderedMap::add(const AtomicString& key, Element* element) in add()
85 void DocumentOrderedMap::remove(const AtomicString& key, Element* element) in remove()
110 inline Element* DocumentOrderedMap::get(const AtomicString& key, const TreeScope* scope) const in get() argument
134 Element* DocumentOrderedMap::getElementById(const AtomicString& key, const TreeScope* scope) const in getElementById() argument
139 …rWillBeMember<Element> >& DocumentOrderedMap::getAllElementsById(const AtomicString& key, const Tr… in getAllElementsById() argument
167 Element* DocumentOrderedMap::getElementByMapName(const AtomicString& key, const TreeScope* scope) c… in getElementByMapName() argument
[all …]
/external/robolectric/src/main/java/com/xtremelabs/robolectric/tester/android/content/
DTestSharedPreferences.java33 public String getString(String key, String defValue) { in getString()
37 private Object getValue(String key, Object defValue) { in getValue()
49 public int getInt(String key, int defValue) { in getInt()
54 public long getLong(String key, long defValue) { in getLong()
59 public float getFloat(String key, float defValue) { in getFloat()
64 public boolean getBoolean(String key, boolean defValue) { in getBoolean()
69 public boolean contains(String key) { in contains()
103 public Editor putString(String key, String value) { in putString()
110 public Editor putInt(String key, int value) { in putInt()
117 public Editor putLong(String key, long value) { in putLong()
[all …]
/external/chromium_org/base/prefs/
Dtesting_pref_store.cc19 bool TestingPrefStore::GetValue(const std::string& key, in GetValue()
24 bool TestingPrefStore::GetMutableValue(const std::string& key, in GetMutableValue()
45 void TestingPrefStore::SetValue(const std::string& key, base::Value* value) { in SetValue()
52 void TestingPrefStore::SetValueSilently(const std::string& key, in SetValueSilently()
58 void TestingPrefStore::RemoveValue(const std::string& key) { in RemoveValue()
93 void TestingPrefStore::NotifyPrefValueChanged(const std::string& key) { in NotifyPrefValueChanged()
106 void TestingPrefStore::ReportValueChanged(const std::string& key) { in ReportValueChanged()
110 void TestingPrefStore::SetString(const std::string& key, in SetString()
115 void TestingPrefStore::SetInteger(const std::string& key, int value) { in SetInteger()
119 void TestingPrefStore::SetBoolean(const std::string& key, bool value) { in SetBoolean()
[all …]
Dpref_value_map.cc18 bool PrefValueMap::GetValue(const std::string& key, in GetValue()
30 bool PrefValueMap::GetValue(const std::string& key, base::Value** value) { in GetValue()
41 bool PrefValueMap::SetValue(const std::string& key, base::Value* value) { in SetValue()
57 bool PrefValueMap::RemoveValue(const std::string& key) { in RemoveValue()
93 bool PrefValueMap::GetBoolean(const std::string& key, in GetBoolean()
99 void PrefValueMap::SetBoolean(const std::string& key, bool value) { in SetBoolean()
103 bool PrefValueMap::GetString(const std::string& key, in GetString()
109 void PrefValueMap::SetString(const std::string& key, in SetString()
114 bool PrefValueMap::GetInteger(const std::string& key, int* value) const { in GetInteger() argument
119 void PrefValueMap::SetInteger(const std::string& key, const int value) { in SetInteger()
[all …]
/external/lldb/include/lldb/Core/
DThreadSafeSTLMap.h58 Erase (const _Key& key) in Erase()
65 EraseNoLock (const _Key& key) in EraseNoLock()
71 GetValueForKey (const _Key& key, _Tp &value) const in GetValueForKey()
80 GetValueForKeyNoLock (const _Key& key, _Tp &value) const in GetValueForKeyNoLock()
92 GetFirstKeyForValue (const _Tp &value, _Key& key) const in GetFirstKeyForValue()
99 GetFirstKeyForValueNoLock (const _Tp &value, _Key& key) const in GetFirstKeyForValueNoLock()
114 LowerBound (const _Key& key, in LowerBound()
124 LowerBoundNoLock (const _Key& key, in LowerBoundNoLock()
145 lower_bound_unsafe (const _Key& key) in lower_bound_unsafe()
151 SetValueForKey (const _Key& key, const _Tp &value) in SetValueForKey()
[all …]
/external/google-tv-pairing-protocol/java/src/com/google/polo/json/
DJSONObject.java177 String key; in JSONObject() local
327 String key = ""; in populateInternalMap() local
436 public JSONObject accumulate(String key, Object value) in accumulate()
464 public JSONObject append(String key, Object value) in append()
513 public Object get(String key) throws JSONException { in get()
531 public boolean getBoolean(String key) throws JSONException { in getBoolean()
554 public double getDouble(String key) throws JSONException { in getDouble()
576 public int getInt(String key) throws JSONException { in getInt()
591 public JSONArray getJSONArray(String key) throws JSONException { in getJSONArray()
609 public JSONObject getJSONObject(String key) throws JSONException { in getJSONObject()
[all …]
/external/chromium_org/chrome/browser/chromeos/login/screens/
Dscreen_context.cc33 bool ScreenContext::SetBoolean(const KeyType& key, bool value) { in SetBoolean()
37 bool ScreenContext::SetInteger(const KeyType& key, int value) { in SetInteger()
41 bool ScreenContext::SetDouble(const KeyType& key, double value) { in SetDouble()
45 bool ScreenContext::SetString(const KeyType& key, const std::string& value) { in SetString()
49 bool ScreenContext::SetString(const KeyType& key, const base::string16& value) { in SetString()
53 bool ScreenContext::SetStringList(const KeyType& key, const StringList& value) { in SetStringList()
57 bool ScreenContext::SetString16List(const KeyType& key, in SetString16List()
66 bool ScreenContext::GetBoolean(const KeyType& key, bool default_value) const { in GetBoolean() argument
74 int ScreenContext::GetInteger(const KeyType& key, int default_value) const { in GetInteger() argument
82 double ScreenContext::GetDouble(const KeyType& key, in GetDouble()
[all …]
/external/guava/guava-tests/test/com/google/common/util/concurrent/
DAtomicLongMapTest.java53 String key = "key"; in testIncrementAndGet() local
69 String key = "key"; in testIncrementAndGet_zero() local
86 String key = "key"; in testGetAndIncrement() local
102 String key = "key"; in testGetAndIncrement_zero() local
119 String key = "key"; in testDecrementAndGet() local
135 String key = "key"; in testDecrementAndGet_zero() local
152 String key = "key"; in testGetAndDecrement() local
168 String key = "key"; in testGetAndDecrement_zero() local
185 String key = "key"; in testAddAndGet() local
202 String key = "key"; in testAddAndGet_zero() local
[all …]

12345678910>>...146