HomeSort by relevance Sort by last modified time
    Searched refs:Key (Results 376 - 400 of 1431) sorted by null

<<11121314151617181920>>

  /external/chromium-trace/catapult/dashboard/dashboard/models/
stoppage_alert.py 24 The key for a StoppageAlert is of the form:
42 return self.key.id()
46 return utils.TestKey(self.key.parent().string_id())
51 return ndb.Key('Row', self.revision, parent=test_container)
65 logging.warning('No Row with key %s', self.row)
80 return ndb.Key(
96 parent=ndb.Key('StoppageAlertParent', test.test_path),
106 test.stoppage_alert = new_alert.key
  /external/clang/lib/Serialization/
MultiOnDiskHashTable.h 145 const internal_key_type &Key = InfoObj.ReadKey(LocalPtr, L.first);
146 data_type_builder ValueBuilder(Merged->Data[Key]);
147 InfoObj.ReadDataInto(Key, LocalPtr + L.first, L.second,
221 internal_key_type Key = Info::GetInternalKey(EKey);
222 auto KeyHash = Info::ComputeHash(Key);
225 auto It = M->Data.find(Key);
234 auto It = HT.find_hashed(Key, KeyHash);
236 HT.getInfoObj().ReadDataInto(Key, It.getDataPtr(), It.getDataLen(),
265 const internal_key_type &Key = InfoObj.ReadKey(LocalPtr, L.first);
266 InfoObj.ReadDataInto(Key, LocalPtr + L.first, L.second, ResultBuilder)
    [all...]
  /external/conscrypt/src/platform/java/org/conscrypt/
TrustedCertificateKeyStoreSpi.java 21 import java.security.Key;
36 public Key engineGetKey(String alias, char[] password) {
63 String alias, Key key, char[] password, Certificate[] chain) {
68 public void engineSetKeyEntry(String alias, byte[] key, Certificate[] chain) {
  /external/google-breakpad/src/processor/
map_serializers-inl.h 54 template<typename Key, typename Value>
55 size_t StdMapSerializer<Key, Value>::SizeOf(
56 const std::map<Key, Value> &m) const {
61 typename std::map<Key, Value>::const_iterator iter;
69 template<typename Key, typename Value>
70 char *StdMapSerializer<Key, Value>::Write(const std::map<Key, Value> &m,
86 dest += sizeof(Key) * m.size();
89 typename std::map<Key, Value>::const_iterator iter;
99 template<typename Key, typename Value
    [all...]
  /external/guice/core/src/com/google/inject/internal/
BoundProviderFactory.java 21 import com.google.inject.Key;
34 final Key<? extends javax.inject.Provider<? extends T>> providerKey;
39 Key<? extends javax.inject.Provider<? extends T>> providerKey,
InheritingState.java 26 import com.google.inject.Key;
50 private final Map<Key<?>, Binding<?>> explicitBindingsMutable = Maps.newLinkedHashMap();
51 private final Map<Key<?>, Binding<?>> explicitBindings
74 @SuppressWarnings("unchecked") // we only put in BindingImpls that match their key types
75 public <T> BindingImpl<T> getExplicitBinding(Key<T> key) {
76 Binding<?> binding = explicitBindings.get(key);
77 return binding != null ? (BindingImpl<T>) binding : parent.getExplicitBinding(key);
80 public Map<Key<?>, Binding<?>> getExplicitBindingsThisLevel() {
84 public void putBinding(Key<?> key, BindingImpl<?> binding)
    [all...]
InternalContext.java 22 import com.google.inject.Key;
58 public <T> ConstructionContext<T> getConstructionContext(Object key) {
60 = (ConstructionContext<T>) constructionContexts.get(key);
63 constructionContexts.put(key, constructionContext);
87 public void pushState(Key<?> key, Object source) {
88 state.add(key, source);
102 if (evenEntry instanceof Key) {
103 dependency = Dependency.get((Key<?>) evenEntry);
  /external/mesa3d/src/mesa/main/
hash.c 8 * \note key=0 is illegal.
53 GLuint Key; /**< the entry's key */
64 GLuint MaxKey; /**< highest key inserted so far */
127 _mesa_HashLookup_unlocked(struct _mesa_HashTable *table, GLuint key)
133 assert(key);
135 pos = HASH_FUNC(key);
138 if (entry->Key == key) {
151 * \param key the key
460 GLuint key; local
    [all...]
  /frameworks/base/core/java/android/hardware/camera2/impl/
CameraMetadataNative.java 79 public static class Key<T> {
89 * <p>Use the CameraCharacteristics.Key, CaptureResult.Key, or CaptureRequest.Key
92 public Key(String name, Class<T> type) {
94 throw new NullPointerException("Key needs a valid name");
107 * <p>Use the CameraCharacteristics.Key, CaptureResult.Key, or CaptureRequest.Key
111 public Key(String name, TypeReference<T> typeReference)
    [all...]
  /packages/apps/MusicFX/src/com/android/musicfx/
ControlPanelReceiver.java 69 ControlPanelEffect.Key.global_enabled.toString(),
88 ControlPanelEffect.Key.global_enabled, value);
98 audioSession, ControlPanelEffect.Key.global_enabled);
  /external/guice/extensions/throwingproviders/test/com/google/inject/throwingproviders/
ThrowingProviderTest.java 32 import com.google.inject.Key;
114 injector.getInstance(Key.get(remoteProviderOfString));
143 Key<RemoteProvider<String>> key = annotation != null ? local
144 Key.get(remoteProviderOfString, annotation) :
145 Key.get(remoteProviderOfString);
146 RemoteProvider<String> remoteProvider = injector.getInstance(key);
168 injector.getInstance(Key.get(remoteProviderOfString));
197 injector.getInstance(Key.get(remoteProviderOfString, NotExceptionScoping.class));
263 injector.getInstance(Key.get(remoteProviderOfString, Names.named("a"))).get())
592 Key<RemoteProvider<List<String>>> key local
610 Key<RemoteProvider<List<String>>> key local
    [all...]
  /external/skia/src/core/
SkTDynamicHash.h 16 // static const Key& GetKey(const T&) { ... }
17 // static uint32_t Hash(const Key&) { ... }
20 typename Key,
89 // Return the entry with this key if we have it, otherwise nullptr.
90 T* find(const Key& key) const {
91 int index = this->firstIndex(key);
98 if (Deleted() != candidate && GetKey(*candidate) == key) {
107 // Add an entry with this key. We require that no entry with newEntry's key is already present
208 const Key& key = GetKey(*newEntry); local
    [all...]
  /frameworks/native/include/input/
KeyCharacterMap.h 40 * Describes a mapping from Android key codes to characters.
42 * and key modifier semantics.
68 // Substitute key code and meta state for fallback action.
74 /* Loads a key character map from a file. */
77 /* Loads a key character map from its string contents. */
81 /* Combines a base key character map and an overlay. */
85 /* Returns an empty key character map. */
91 /* Gets the primary character for this key as in the label physically printed on it.
95 /* Gets the Unicode character for the number or symbol generated by the key
101 /* Gets the Unicode character generated by the key and meta key modifiers
    [all...]
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
Antlr.Runtime.Collections.pas 104 function GetItem(const Key: TKey): TValue;
105 procedure SetItem(const Key: TKey; const Value: TValue);
108 procedure Add(const Key: TKey; const Value: TValue);
109 procedure Remove(const Key: TKey);
112 function TryGetValue(const Key: TKey; out Value: TValue): Boolean;
113 procedure AddOrSetValue(const Key: TKey; const Value: TValue);
114 function ContainsKey(const Key: TKey): Boolean;
121 property Items[const Key: TKey]: TValue read GetItem write SetItem; default;
168 procedure THashList<TKey, TValue>.Add(const Key: TKey; const Value: TValue);
170 FDictionary.Add(Key, Value)
    [all...]
  /external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/
ExemptionMechanismTest.java 21 import java.security.Key;
106 * Test for <code>isCryptoAllowed(Key key)</code> method
120 Key key = new MyExemptionMechanismSpi().new tmpKey("Proba", new byte[0]); local
122 assertFalse(em.isCryptoAllowed(key));
124 em.init(key);
125 assertFalse(em.isCryptoAllowed(key));
128 assertTrue(em.isCryptoAllowed(key));
130 Key key1 = new MyExemptionMechanismSpi().new tmpKey("Proba"
153 Key key = new MyExemptionMechanismSpi().new tmpKey("Proba", new byte[0]); local
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/dh/
KeyFactorySpi.java 5 import java.security.Key;
31 Key key,
35 if (spec.isAssignableFrom(DHPrivateKeySpec.class) && key instanceof DHPrivateKey)
37 DHPrivateKey k = (DHPrivateKey)key;
41 else if (spec.isAssignableFrom(DHPublicKeySpec.class) && key instanceof DHPublicKey)
43 DHPublicKey k = (DHPublicKey)key;
48 return super.engineGetKeySpec(key, spec);
51 protected Key engineTranslateKey(
52 Key key
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/dsa/
KeyFactorySpi.java 5 import java.security.Key;
28 Key key,
32 if (spec.isAssignableFrom(DSAPublicKeySpec.class) && key instanceof DSAPublicKey)
34 DSAPublicKey k = (DSAPublicKey)key;
38 else if (spec.isAssignableFrom(DSAPrivateKeySpec.class) && key instanceof java.security.interfaces.DSAPrivateKey)
40 java.security.interfaces.DSAPrivateKey k = (java.security.interfaces.DSAPrivateKey)key;
45 return super.engineGetKeySpec(key, spec);
48 protected Key engineTranslateKey(
49 Key key
    [all...]
  /external/chromium-trace/catapult/dashboard/dashboard/
put_entities_task.py 28 keys = [ndb.Key(urlsafe=k) for k in urlsafe_keys]
  /external/dagger2/compiler/src/test/java/dagger/internal/codegen/
BindingFieldTest.java 49 private Key.Factory keyFactory;
54 this.keyFactory = new Key.Factory(types, elements);
64 Key key = keyFactory.forInjectConstructorWithResolvedType( local
66 TypeName xClass = TypeNames.forTypeMirror(key.type());
68 BindingKey.create(BindingKey.Kind.CONTRIBUTION, key), "test")
73 BindingKey.create(BindingKey.Kind.MEMBERS_INJECTION, key), "test")
80 Key key = keyFactory.forInjectConstructorWithResolvedType( local
83 BindingKey.create(BindingKey.Kind.CONTRIBUTION, key), "foo").name()
    [all...]
  /external/glide/library/src/main/java/com/bumptech/glide/load/engine/cache/
DiskLruCacheWrapper.java 10 import com.bumptech.glide.load.Key;
64 public File get(Key key) {
65 String safeKey = safeKeyGenerator.getSafeKey(key);
69 //because we will always put the same value at the same key so our input streams will still represent
84 public void put(Key key, Writer writer) {
85 String safeKey = safeKeyGenerator.getSafeKey(key);
107 public void delete(Key key) {
    [all...]
  /external/guice/extensions/servlet/src/com/google/inject/servlet/
InternalServletModule.java 23 import com.google.inject.Key;
106 return GuiceFilter.getRequest(Key.get(HttpServletRequest.class));
110 return GuiceFilter.getResponse(Key.get(HttpServletResponse.class));
114 return GuiceFilter.getRequest(Key.get(HttpSession.class)).getSession();
  /external/guice/extensions/servlet/test/com/google/inject/servlet/
MultiModuleDispatchIntegrationTest.java 10 import com.google.inject.Key;
55 filter("*.jsp").through(Key.get(TestFilter.class));
63 filter("/*").through(Key.get(TestFilter.class));
66 filter("/index/*").through(Key.get(TestFilter.class));
ServletPipelineRequestDispatcherTest.java 32 import com.google.inject.Key;
60 private static final Key<HttpServlet> HTTP_SERLVET_KEY = Key.get(HttpServlet.class);
68 Key.get(HttpServlet.class), UriPatternType.get(UriPatternType.SERVLET, pattern),
95 expect(injector.getBinding(Key.get(HttpServlet.class)))
101 final Key<ServletDefinition> servetDefsKey = Key
131 Key.get(HttpServlet.class), UriPatternType.get(UriPatternType.SERVLET, pattern),
165 expect(injector.getBinding(Key.get(HttpServlet.class)))
171 final Key<ServletDefinition> servetDefsKey = Ke
    [all...]
TransferRequestIntegrationTest.java 23 import com.google.inject.Key;
84 ImmutableMap<Key<?>, Object> seedMap = ImmutableMap.of();
109 ImmutableMap<Key<?>, Object> seedMap = ImmutableMap.of();
120 ImmutableMap<Key<?>, Object> seedMap = ImmutableMap.of();
  /external/llvm/lib/MC/
MCRegisterInfo.cpp 65 DwarfLLVMRegPair Key = { RegNum, 0 };
66 const DwarfLLVMRegPair *I = std::lower_bound(M, M+Size, Key);
76 DwarfLLVMRegPair Key = { RegNum, 0 };
77 const DwarfLLVMRegPair *I = std::lower_bound(M, M+Size, Key);

Completed in 1353 milliseconds

<<11121314151617181920>>