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

<<11121314151617181920>>

  /external/v8/test/mjsunit/
dehoisted-array-index.js 32 // Key is HParameter
43 // Key is HChange, used by either dehoised or non-dehoisted
60 // Key is HMul(-i ==> i * (-1))
76 // Key is HPhi, used only by dehoisted
89 // Key is HPhi, but used by both dehoisted and non-dehoisted
107 // Key is HPhi, but used by either dehoisted or non-dehoisted
126 // Key is HPhi, but not induction variable
141 // Key is return value of function
155 // Sign extension of key makes AssertZeroExtended fail in DoBoundsCheck
  /frameworks/base/media/mca/filterfw/native/base/
utilities.h 58 // Given an STL container consisting of (key, value) pairs, STLDeleteValues
71 // If the key is present a const pointer to the associated value is returned,
76 const typename Collection::value_type::first_type& key) {
77 typename Collection::const_iterator it = collection.find(key);
123 // If the key is present a const pointer to the associated value is returned,
125 // This function does not distinguish between a missing key and a key mapped
130 const typename Collection::value_type::first_type& key) {
131 typename Collection::const_iterator it = collection.find(key);
138 // Test to see if a set, map, hash_set or hash_map contains a particular key
    [all...]
  /frameworks/base/media/mca/filterpacks/native/base/
utilities.h 58 // Given an STL container consisting of (key, value) pairs, STLDeleteValues
71 // If the key is present a const pointer to the associated value is returned,
76 const typename Collection::value_type::first_type& key) {
77 typename Collection::const_iterator it = collection.find(key);
123 // If the key is present a const pointer to the associated value is returned,
125 // This function does not distinguish between a missing key and a key mapped
130 const typename Collection::value_type::first_type& key) {
131 typename Collection::const_iterator it = collection.find(key);
138 // Test to see if a set, map, hash_set or hash_map contains a particular key
    [all...]
  /packages/apps/Camera2/src/com/android/camera/one/v2/core/
RequestTemplate.java 44 private final CaptureRequest.Key<T> key; field in class:RequestTemplate.Parameter
47 private Parameter(CaptureRequest.Key<T> key, Supplier<T> value) {
48 this.key = key;
53 builder.setParam(key, value.get());
69 public <T> RequestTemplate setParam(CaptureRequest.Key<T> key, T value) {
70 return setParam(key, Suppliers.ofInstance(value))
    [all...]
  /system/keymaster/include/keymaster/
asymmetric_key_factory.h 36 UniquePtr<Key>* key) const override;
40 UniquePtr<AsymmetricKey>* key) const = 0;
  /system/keymaster/
operation.h 32 class Key;
54 virtual Operation* CreateOperation(const Key& key, const AuthorizationSet& begin_params,
79 bool GetAndValidatePadding(const AuthorizationSet& begin_params, const Key& key,
81 bool GetAndValidateDigest(const AuthorizationSet& begin_params, const Key& key,
  /external/guice/extensions/throwingproviders/src/com/google/inject/throwingproviders/
ThrowingProviderBinder.java 27 import com.google.inject.Key;
148 private Key<P> interfaceKey;
167 Key<P> getKey() {
199 Key<P> targetKey = Key.get(interfaceType, UniqueAnnotations.create());
205 return to(Key.get(targetType));
221 final Key<? extends T> typeKey;
222 // If we found an injection point, then bind the cxtor to a unique key
228 typeKey = Key.get(cxtorLiteral, UniqueAnnotations.create());
230 typeProvider = binder.getProvider((Key<T>) typeKey)
    [all...]
  /external/llvm/include/llvm/Support/
OnDiskHashTable.h 32 /// payload and computes the hash for a given key. This should provide the
45 /// /// Calculate the hash for Key
46 /// static hash_value_type ComputeHash(key_type_ref Key);
47 /// /// Return the lengths, in bytes, of the given Key/Data pair.
49 /// EmitKeyDataLength(raw_ostream &Out, key_type_ref Key, data_type_ref Data);
50 /// /// Write Key to Out. KeyLen is the length from EmitKeyDataLength.
51 /// static void EmitKey(raw_ostream &Out, key_type_ref Key,
54 /// static void EmitData(raw_ostream &Out, key_type_ref Key,
64 typename Info::key_type Key;
69 Item(typename Info::key_type_ref Key, typename Info::data_type_ref Data
    [all...]
  /external/skia/tests/
ImageFilterCacheTest.cpp 36 SkImageFilter::Cache::Key key1(0, SkMatrix::I(), clip, image->uniqueID(), image->subset());
37 SkImageFilter::Cache::Key key2(0, SkMatrix::I(), clip, subset->uniqueID(), subset->subset());
61 SkImageFilter::Cache::Key key0(0, SkMatrix::I(), clip1, image->uniqueID(), image->subset());
62 SkImageFilter::Cache::Key key1(1, SkMatrix::I(), clip1, image->uniqueID(), image->subset());
63 SkImageFilter::Cache::Key key2(0, SkMatrix::MakeTrans(5, 5), clip1,
65 SkImageFilter::Cache::Key key3(0, SkMatrix::I(), clip2, image->uniqueID(), image->subset());
66 SkImageFilter::Cache::Key key4(0, SkMatrix::I(), clip1, subset->uniqueID(), subset->subset());
85 SkImageFilter::Cache::Key key1(0, SkMatrix::I(), clip, image->uniqueID(), image->subset());
86 SkImageFilter::Cache::Key key2(1, SkMatrix::I(), clip, image->uniqueID(), image->subset());
110 SkImageFilter::Cache::Key key1(0, SkMatrix::I(), clip, image->uniqueID(), image->subset())
    [all...]
  /external/v8/src/
splay-tree-inl.h 22 bool SplayTree<Config, Allocator>::Insert(const Key& key,
26 root_ = new(allocator_) Node(key, Config::NoValue());
28 // Splay on the key to move the last node on the search path
29 // for the key to the root of the tree.
30 Splay(key);
31 // Ignore repeated insertions with the same key.
32 int cmp = Config::Compare(key, root_->key_);
38 Node* node = new(allocator_) Node(key, Config::NoValue());
62 bool SplayTree<Config, Allocator>::FindInternal(const Key& key)
    [all...]
  /external/apache-harmony/crypto/src/test/api/java.injected/javax/crypto/
KeyAgreementSpiTest.java 26 import java.security.Key;
75 Key key = null; local
77 kaSpi.engineInit(key, new SecureRandom());
83 kaSpi.engineInit(key, params, new SecureRandom());
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/util/
BaseKeyFactorySpi.java 3 import java.security.Key;
31 throw new InvalidKeySpecException("encoded key spec not recognised");
36 throw new InvalidKeySpecException("key spec not recognised");
52 throw new InvalidKeySpecException("encoded key spec not recognised");
57 throw new InvalidKeySpecException("key spec not recognised");
62 Key key,
66 if (spec.isAssignableFrom(PKCS8EncodedKeySpec.class) && key.getFormat().equals("PKCS#8"))
68 return new PKCS8EncodedKeySpec(key.getEncoded());
70 else if (spec.isAssignableFrom(X509EncodedKeySpec.class) && key.getFormat().equals("X.509")
    [all...]
  /external/chromium-trace/catapult/dashboard/dashboard/models/
anomaly_config_test.py 49 test.overridden_anomaly_config = ndb.Key('AnomalyConfig', 'Non-existent')
52 'No AnomalyConfig fetched from key %s for test %s',
53 ndb.Key('AnomalyConfig', 'Non-existent'), 'M/b/foo/bar')
54 self.assertIsNone(test.key.get().overridden_anomaly_config)
  /external/chromium-trace/catapult/dashboard/dashboard/
short_uri.py 27 state = ndb.Key(page_state.PageState, state_id).get()
48 if not ndb.Key(page_state.PageState, state_id).get():
  /external/clang/tools/diagtool/
DiagnosticNames.cpp 53 DiagnosticRecord Key = {nullptr, DiagID, 0};
58 Key, orderByID);
  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/
KeyVariableNamer.java 28 * Suggests a variable name for a type based on a {@link Key}. Prefer
34 enum KeyVariableNamer implements Function<Key, String> {
38 public String apply(Key key) {
41 if (key.qualifier().isPresent()) {
43 builder.append(key.qualifier().get().getAnnotationType().asElement().getSimpleName());
46 key.type().accept(new SimpleTypeVisitor6<Void, StringBuilder>() {
  /external/glide/library/src/main/java/com/bumptech/glide/load/engine/
CacheLoader.java 5 import com.bumptech.glide.load.Key;
20 public <Z> Resource<Z> load(Key key, ResourceDecoder<File, Z> decoder, int width, int height) {
21 File fromCache = diskCache.get(key);
38 diskCache.delete(key);
  /external/glide/library/src/main/java/com/bumptech/glide/signature/
MediaStoreSignature.java 3 import com.bumptech.glide.load.Key;
13 public class MediaStoreSignature implements Key {
  /external/guice/core/src/com/google/inject/internal/
BindingBuilder.java 24 import com.google.inject.Key;
39 * Bind a non-constant key.
46 public BindingBuilder(Binder binder, List<Element> elements, Object source, Key<T> key) {
47 super(binder, elements, source, key);
61 return to(Key.get(implementation));
65 return to(Key.get(implementation));
68 public BindingBuilder<T> to(Key<? extends T> linkedKey) {
124 return toProvider(Key.get(providerType));
129 return toProvider(Key.get(providerType))
    [all...]
DeferredLookups.java 20 import com.google.inject.Key;
52 public <T> Provider<T> getProvider(Key<T> key) {
53 ProviderLookup<T> lookup = new ProviderLookup<T>(key, key);
InternalInjectorCreator.java 23 import com.google.inject.Key;
231 Key<?> linkedBinding = ((LinkedBindingImpl<?>) binding).getLinkedKey();
249 public Map<Key<?>, Binding<?>> getBindings() {
252 public Map<Key<?>, Binding<?>> getAllBindings() {
255 public <T> Binding<T> getBinding(Key<T> key) {
256 return this.delegateInjector.getBinding(key);
261 public <T> Binding<T> getExistingBinding(Key<T> key) {
262 return this.delegateInjector.getExistingBinding(key);
    [all...]
  /external/guice/core/src/com/google/inject/spi/
TypeEncounter.java 19 import com.google.inject.Key;
59 * Returns the provider used to obtain instances for the given injection key. The returned
63 <T> Provider<T> getProvider(Key<T> key);
  /external/llvm/lib/MC/
SubtargetFeature.cpp 78 if (F == A.end() || StringRef(F->Key) != S) return nullptr;
88 MaxLen = std::max(MaxLen, std::strlen(I.Key));
103 errs() << format(" %-*s - %s.\n", MaxCPULen, CPU.Key, CPU.Desc);
109 errs() << format(" %-*s - %s.\n", MaxFeatLen, Feature.Key, Feature.Desc);
242 assert(strcmp(CPUTable[i - 1].Key, CPUTable[i].Key) < 0 &&
246 assert(strcmp(FeatureTable[i - 1].Key, FeatureTable[i].Key) < 0 &&
  /external/lzma/CPP/7zip/Crypto/
7zAes.cpp 40 Key[pos] = Salt[pos];
42 Key[pos++] = Password[i];
44 Key[pos] = 0;
61 Sha256_Final(&sha, Key);
65 bool CKeyInfoCache::Find(CKeyInfo &key)
70 if (key.IsEqualTo(cached))
73 key.Key[j] = cached.Key[j];
82 void CKeyInfoCache::Add(CKeyInfo &key)
    [all...]
  /external/skia/bench/
ImageCacheBench.cpp 13 class TestKey : public SkResourceCache::Key {
25 TestRec(const TestKey& key, intptr_t value) : fKey(key), fValue(value) {}
27 const Key& getKey() const override { return fKey; }
63 TestKey key(-1);
66 SkDEBUGCODE(bool found =) fCache.find(key, TestRec::Visitor, nullptr);

Completed in 226 milliseconds

<<11121314151617181920>>