HomeSort by relevance Sort by last modified time
    Searched defs:Key (Results 1 - 25 of 425) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /system/keymaster/
key.cpp 19 #include "key.h"
27 Key::Key(const AuthorizationSet& hw_enforced, const AuthorizationSet& sw_enforced,
key.h 30 class Key {
32 virtual ~Key() {}
35 * Return a copy of raw key material, in the specified format.
54 Key(const AuthorizationSet& hw_enforced, const AuthorizationSet& sw_enforced,
  /toolchain/binutils/binutils-2.25/binutils/testsuite/binutils-all/
readelf.s 20 Key to Flags:
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/file/
__init__.py 25 from boto.file.key import Key
28 __all__ = ['Connection', 'Key', 'Bucket']
bucket.py 26 from boto.file.key import Key
32 """Instantiate an anonymous file-based Bucket around a single key.
46 Deletes a key from the bucket.
49 :param key_name: The key name to delete
61 This method returns the single key around which this anonymous Bucket
68 key = Key(self.name, self.contained_key)
69 return SimpleResultSet([key])
72 key_type=Key.KEY_REGULAR_FILE)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/map/
compare.pass.cpp 12 // template <class Key, class T, class Compare = less<Key>,
13 // class Allocator = allocator<pair<const Key, T>>>
21 struct Key {
22 template <typename T> Key(const T&) {}
23 bool operator< (const Key&) const { return false; }
29 std::map<Key, int>::iterator it = std::map<Key, int>().find(Key(0));
30 std::pair<std::map<Key, int>::iterator, bool> result
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/cloudfront/
object.py 22 from boto.s3.key import Key
24 class Object(Key):
  /frameworks/base/services/core/jni/
com_android_server_tv_TvKeys.h 11 struct Key {
17 static Key KEYS[] = {
  /libcore/ojluni/src/main/java/java/security/
Key.java 29 * The Key interface is the top-level interface for all keys. It
30 * defines the functionality shared by all key objects. All keys
37 * <P>This is the key algorithm for that key. The key algorithm is usually
41 * The name of the algorithm of a key is obtained using the
46 * <P>This is an external encoded form for the key used when a standard
47 * representation of the key is needed outside the Java Virtual Machine,
48 * as when transmitting the key to some other party. The key
    [all...]
  /external/glide/library/src/main/java/com/bumptech/glide/load/
Key.java 11 * requirement is not as strict for partial cache key signatures.
13 public interface Key {
  /external/guice/core/src/com/google/inject/
Key.java 33 * Binding key consisting of an injection type and an optional annotation.
36 * <p>For example, {@code Key.get(Service.class, Transactional.class)} will
46 * <p>{@code Key} supports generic types via subclassing just like {@link
55 public class Key<T> {
64 * Constructs a new key. Derives the type from this class's type parameter.
73 * <p>{@code new Key<Foo>(Bar.class) {}}.
76 protected Key(Class<? extends Annotation> annotationType) {
85 * Constructs a new key. Derives the type from this class's type parameter.
94 * <p>{@code new Key<Foo>(new Bar()) {}}.
97 protected Key(Annotation annotation)
    [all...]
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
ClassesKey.java 19 private static final Key FACTORY = (Key)KeyFactory.create(Key.class, KeyFactory.OBJECT_BY_CLASS);
21 interface Key {
  /external/skia/src/core/
SkImageFilterCacheKey.h 11 struct SkImageFilter::Cache::Key {
12 Key(const uint32_t uniqueID, const SkMatrix& matrix,
19 // Assert that Key is tightly-packed, since it is hashed.
20 static_assert(sizeof(Key) == sizeof(uint32_t) + sizeof(SkMatrix) + sizeof(SkIRect) +
32 bool operator==(const Key& other) const {
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.map/
compare.pass.cpp 12 // template <class Key, class T, class Hash = hash<Key>, class Pred = equal_to<Key>,
13 // class Alloc = allocator<pair<const Key, T>>>
21 struct Key {
22 template <typename T> Key(const T&) {}
23 bool operator== (const Key&) const { return true; }
29 struct hash<Key>
31 size_t operator()(Key const &) const {return 0;}
38 std::unordered_map<Key, int>::iterator it
    [all...]
  /packages/inputmethods/LatinIME/tools/dicttool/compat/com/android/inputmethod/keyboard/
Key.java 20 public class Key {
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/bin/
lss3 18 from boto.s3.key import Key
44 if isinstance(k, Key):
48 #If it's not a Key object, it doesn't have a last_modified time, so
65 print(" %s:%s" % (tag.key, tag.value))
79 help='The S3 key where the listing starts after it.')
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/sdb/db/
key.py 22 class Key(object):
47 raise NotImplementedError("Key Names are not currently supported")
56 raise NotImplementedError("Key parents are not currently supported")
  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/
Key.java 66 abstract class Key {
69 * for the type of this key.
78 * The type represented by this key.
98 Key withType(Types types, TypeMirror newType) {
108 * Returns true if the key is valid as an implicit key (that is, if it's valid for a just-in-time
130 // If the key has type arguments, validate that each type argument is declared.
139 // Also validate that the key is not the erasure of a generic type.
151 return MoreObjects.toStringHelper(Key.class)
187 Key forComponentMethod(ExecutableElement componentMethod)
    [all...]
  /external/guice/extensions/servlet/src/com/google/inject/servlet/
FiltersModuleBuilder.java 19 import com.google.inject.Key;
62 through(Key.get(filterKey));
65 public void through(Key<? extends Filter> filterKey) {
77 through(Key.get(filterKey), initParams);
80 public void through(Key<? extends Filter> filterKey,
85 private void through(Key<? extends Filter> filterKey,
97 Key<Filter> filterKey = Key.get(Filter.class, UniqueAnnotations.create());
  /external/libchrome/base/posix/
global_descriptors.h 34 // It maps from an abstract key to a descriptor. If independent modules each
39 typedef uint32_t Key;
41 Descriptor(Key key, int fd);
42 Descriptor(Key key, int fd, base::MemoryMappedFile::Region region);
44 // Globally unique key.
45 Key key; member in struct:base::GlobalDescriptors::Descriptor
53 // Often we want a canonical descriptor for a given Key. In this case, we ad
    [all...]
  /external/libcxx/test/std/containers/associative/map/
compare.pass.cpp 12 // template <class Key, class T, class Compare = less<Key>,
13 // class Allocator = allocator<pair<const Key, T>>>
23 struct Key {
24 template <typename T> Key(const T&) {}
25 bool operator< (const Key&) const { return false; }
30 typedef std::map<Key, int> MapT;
36 m_contains[Key(0)] = 42;
38 Iter it = m_empty.find(Key(0));
40 it = m_contains.find(Key(0))
    [all...]
  /external/libcxx/test/std/containers/unord/unord.map/
compare.pass.cpp 12 // template <class Key, class T, class Hash = hash<Key>, class Pred = equal_to<Key>,
13 // class Alloc = allocator<pair<const Key, T>>>
22 struct Key {
23 template <typename T> Key(const T&) {}
24 bool operator== (const Key&) const { return true; }
30 struct hash<Key>
32 size_t operator()(Key const &) const {return 0;}
39 typedef std::unordered_map<Key, int> MapT
    [all...]
  /external/llvm/include/llvm/MC/
SubtargetFeature.h 49 /// SubtargetFeatureKV - Used to provide key value pairs for feature and
53 const char *Key; // K-V key string
60 return StringRef(Key) < S;
66 /// SubtargetInfoKV - Used to provide key value pairs for CPU and arbitrary
70 const char *Key; // K-V key string
75 return StringRef(Key) < S;
  /system/connectivity/shill/
property_iterator.h 29 // we're using to store key/value pairs for properties. It is intended for use
46 const std::string& Key() const { return it_->first; }
  /packages/apps/MusicFX/src/com/android/musicfx/
ControlPanelEffect.java 61 static enum Key {
167 final boolean isGlobalEnabled = prefs.getBoolean(Key.global_enabled.toString(),
169 editor.putBoolean(Key.global_enabled.toString(), isGlobalEnabled);
173 final boolean isVIEnabled = prefs.getBoolean(Key.virt_enabled.toString(),
176 final int vIStrength = prefs.getInt(Key.virt_strength.toString(),
179 editor.putBoolean(Key.virt_enabled.toString(), isVIEnabled);
180 editor.putInt(Key.virt_strength.toString(), vIStrength);
187 editor.putBoolean(Key.virt_strength_supported.toString(),
199 final boolean isBBEnabled = prefs.getBoolean(Key.bb_enabled.toString(),
201 final int bBStrength = prefs.getInt(Key.bb_strength.toString()
    [all...]

Completed in 540 milliseconds

1 2 3 4 5 6 7 8 91011>>