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

<<21222324252627282930>>

  /external/skia/src/core/
SkImageFilter.cpp 222 Cache::Key key(fUniqueID, context.ctm(), context.clipBounds(),
225 if (context.cache()->get(key, result, offset)) {
236 context.cache()->set(key, *result, *offset);
238 fCacheKeys.push_back(key);
519 SkTDynamicHash<Value, Key>::Iter iter(&fLookup);
528 Value(const Key& key, const SkBitmap& bitmap, const SkIPoint& offset)
529 : fKey(key), fBitmap(bitmap), fOffset(offset) {}
530 Value(const Key& key, SkSpecialImage* image, const SkIPoint& offset
    [all...]
  /external/llvm/include/llvm/IR/
ValueMap.h 13 // key is RAUWed from V1 to V2, the old mapping V1->target is removed, and a new
15 // overwritten. When a key is deleted, its mapping is removed.
127 /// Return 1 if the specified key is in the map, 0 otherwise.
139 /// lookup - Return the entry for the specified key, or a default
146 // Inserts key,value pair into the map if the key isn't already in the map.
147 // If the key is already in the map, it returns false and doesn't update the
180 value_type& FindAndConstruct(const KeyT &Key) {
181 return Map.FindAndConstruct(Wrap(Key));
184 ValueT &operator[](const KeyT &Key) {
    [all...]
  /external/llvm/utils/TableGen/
CodeGenRegisters.h 402 // A key representing the parts of a register class used for forming
403 // sub-classes. Note the ordering provided by this key is not the same as
405 struct Key {
410 Key(const CodeGenRegister::Vec *M, unsigned S = 0, unsigned A = 0)
413 Key(const CodeGenRegisterClass &RC)
419 bool operator<(const Key&) const;
423 CodeGenRegisterClass(CodeGenRegBank&, StringRef Name, Key Props);
467 unsigned Order; // Cache the sort key.
504 typedef std::map<CodeGenRegisterClass::Key, CodeGenRegisterClass*> RCKeyMap;
  /external/v8/src/
interface-descriptors.h 137 enum Key {
151 CallInterfaceDescriptor(Isolate* isolate, CallDescriptors::Key key)
152 : data_(isolate->call_descriptor_data(key)) {}
201 void Initialize(Isolate* isolate, CallDescriptors::Key key) {
203 CallInterfaceDescriptorData* d = isolate->call_descriptor_data(key);
218 explicit name(Isolate* isolate) : base(isolate, key()) { \
219 Initialize(isolate, key()); \
224 name(Isolate* isolate, CallDescriptors::Key key) : base(isolate, key) {}
    [all...]
  /frameworks/base/services/core/java/com/android/server/am/
PendingIntentRecord.java 46 final Key key; field in class:PendingIntentRecord
57 final static class Key {
74 Key(int _t, String _p, ActivityRecord _a, String _w,
117 Key other = (Key)otherObj;
174 return "Key{" + typeName() + " pkg=" + packageName
196 PendingIntentRecord(ActivityManagerService _owner, Key _k, int _u) {
198 key = _k;
244 if ((key.flags&PendingIntent.FLAG_ONE_SHOT) != 0)
    [all...]
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/form/
MultiPagedForm.java 48 private enum Key {
134 Log.w(TAG, "Intent result extras didn't have the result summary key!");
432 Key key = getKeyFromKey(action.getKey());
433 if (key != null) {
434 switch (key) {
461 private Key getKeyFromKey(String key) {
463 return Key.valueOf(key);
    [all...]
  /external/llvm/include/llvm/Support/
YAMLTraits.h 555 void mapRequired(const char* Key, T& Val) {
556 this->processKey(Key, Val, true);
561 mapOptional(const char* Key, T& Val) {
562 // omit key/value instead of outputting empty sequence
565 this->processKey(Key, Val, false);
569 void mapOptional(const char* Key, Optional<T> &Val) {
570 processKeyWithDefault(Key, Val, Optional<T>(), /*Required=*/false);
575 mapOptional(const char* Key, T& Val) {
576 this->processKey(Key, Val, false);
580 void mapOptional(const char* Key, T& Val, const T& Default)
    [all...]
  /cts/tests/camera/src/android/hardware/camera2/cts/helpers/
CameraMetadataGetter.java 84 key = k;
88 public String key; field in class:CameraMetadataGetter.MetadataEntry
126 cameraInfo.append("\"camera" + id + "\":"); // Key
435 if (keyObj.getClass() == CaptureResult.Key.class
437 return ((CaptureResult.Key) keyObj).getName();
438 } else if (keyObj.getClass() == CaptureRequest.Key.class) {
439 return ((CaptureRequest.Key) keyObj).getName();
440 } else if (keyObj.getClass() == CameraCharacteristics.Key.class) {
441 return ((CameraCharacteristics.Key) keyObj).getName();
444 throw new IllegalArgumentException("Invalid key object")
    [all...]
  /cts/tests/tests/keystore/src/android/keystore/cts/
TestUtils.java 31 import java.security.Key;
77 * Asserts the the key algorithm and algorithm-specific parameters of the two keys in the
85 * Asserts the the key algorithm and public algorithm-specific parameters of the two provided
94 assertTrue("EC public key must be instanceof ECKey: "
97 assertTrue("EC private key must be instanceof ECKey: "
101 "Private key must have the same EC parameters as public key",
104 assertTrue("RSA public key must be instance of RSAKey: "
107 assertTrue("RSA private key must be instance of RSAKey: "
110 assertEquals("Private and public key must have the same RSA modulus"
    [all...]
  /external/apache-harmony/crypto/src/test/impl/java/org/apache/harmony/crypto/tests/javax/crypto/
Cipher_ImplTest.java 24 import java.security.Key;
46 private Key key = null; field in class:Cipher_ImplTest
68 key = tkp.getPrivate();
247 c.init(Cipher.DECRYPT_MODE, key);
276 c.init(Cipher.DECRYPT_MODE, key);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/util/
BaseMac.java 5 import java.security.Key;
57 Key key,
63 if (key == null)
65 throw new InvalidKeyException("key is null");
68 if (key instanceof PKCS12Key)
75 k = (SecretKey)key;
115 else if (key instanceof BCPBEKey)
117 BCPBEKey k = (BCPBEKey)key;
134 param = new ParametersWithIV(new KeyParameter(key.getEncoded()), ((IvParameterSpec)params).getIV())
194 Object key = keys.next(); local
    [all...]
  /external/chromium-trace/catapult/dashboard/dashboard/
associate_alerts.py 67 alert_keys = [ndb.Key(urlsafe=k) for k in urlsafe_keys.split(',')]
116 alert_keys = [ndb.Key(urlsafe=k) for k in urlsafe_keys.split(',')]
change_internal_only.py 36 master_name = bot.key.parent().string_id()
37 bot_name = bot.key.string_id()
60 test: An urlsafe Key for a Test entity.
111 bot_key = ndb.Key('Master', master, 'Bot', bot)
151 test_key = ndb.Key(urlsafe=test_key_urlsafe)
  /external/conscrypt/src/main/java/org/conscrypt/
OpenSSLMac.java 22 import java.security.Key;
39 * The secret key used in this keyed MAC.
64 protected void engineInit(Key key, AlgorithmParameterSpec params) throws InvalidKeyException,
66 if (!(key instanceof SecretKey)) {
67 throw new InvalidKeyException("key must be a SecretKey");
74 keyBytes = key.getEncoded();
76 throw new InvalidKeyException("key cannot be encoded");
  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/
ComponentGenerator.java 43 private final Key.Factory keyFactory;
50 Key.Factory keyFactory,
  /external/dagger2/compiler/src/test/java/dagger/internal/codegen/
DependencyRequestMapperTest.java 53 private Key.Factory keyFactory;
59 this.keyFactory = new Key.Factory(types, elements);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.jdt.debug_3.6.1.v20100715_r361/
plugin.properties 18 descriptionMapEntry=Key and Value
  /external/glide/library/src/main/java/com/bumptech/glide/load/engine/prefill/
BitmapPreFillRunner.java 9 import com.bumptech.glide.load.Key;
147 private static class UniqueKey implements Key {
  /external/guice/core/src/com/google/inject/internal/
MembersInjectorImpl.java 21 import com.google.inject.Key;
72 final Key<T> key, // possibly null!
83 context.pushState(key, source);
  /external/skia/tests/
ImageCacheTest.cpp 14 struct TestingKey : public SkResourceCache::Key {
22 TestingRec(const TestingKey& key, uint32_t value) : fKey(key), fValue(value) {}
27 const Key& getKey() const override { return fKey; }
47 TestingKey key(i);
50 REPORTER_ASSERT(reporter, !cache.find(key, TestingRec::Visitor, &value));
53 cache.add(new TestingRec(key, i));
55 REPORTER_ASSERT(reporter, cache.find(key, TestingRec::Visitor, &value));
62 TestingKey key(i);
63 cache.add(new TestingRec(key, i))
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/pool/
PoolClassDef.java 46 @Nonnull final TypeListPool.Key<List<String>> interfaces;
59 interfaces = new TypeListPool.Key<List<String>>(ImmutableList.copyOf(classDef.getInterfaces()));
  /external/v8/src/ast/
scopeinfo.h 55 struct Key {
103 Key keys_[kLength];
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/
DataSaverTile.java 61 || Prefs.getBoolean(mContext, Prefs.Key.QS_DATA_SAVER_DIALOG_SHOWN, false)) {
80 Prefs.putBoolean(mContext, Prefs.Key.QS_DATA_SAVER_DIALOG_SHOWN, true);
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/
CipherOutputStream1Test.java 30 import java.security.Key;
199 Key key = kg.generateKey(); local
202 c.init(Cipher.ENCRYPT_MODE, key);
  /libcore/ojluni/src/main/java/java/security/
Identity.java 38 * <p>All Identity objects have a name and a public key. Names are
41 * key of the Identity are unique within that scope.
44 * public key). The Principal names specified in these certificates need
45 * not be the same, only the key.
74 * The public key for this identity.
154 * Returns this identity's public key.
156 * @return the public key for this identity.
165 * Sets this identity's public key. The old key and all of this
170 * as its argument to see if it's ok to set the public key
459 String key = ""; local
    [all...]

Completed in 990 milliseconds

<<21222324252627282930>>