/system/keymaster/ |
key.cpp | 19 #include "key.h" 27 Key::Key(const AuthorizationSet& hw_enforced, const AuthorizationSet& sw_enforced,
|
key.h | 27 class Key { 29 virtual ~Key() {} 32 * Return a copy of raw key material, in the key's preferred binary format. 37 * Return a copy of raw key material, in the specified format. 46 Key(const AuthorizationSet& hw_enforced, const AuthorizationSet& sw_enforced,
|
/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>>> 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...] |
/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...] |
/libcore/luni/src/main/java/java/security/ |
Key.java | 23 * {@code Key} is the common interface for all keys. 28 public interface Key extends Serializable { 36 * Returns the name of the algorithm of this key. If the algorithm is 39 * @return the name of the algorithm of this key or {@code null} if the 45 * Returns the name of the format used to encode this key, or {@code null} 48 * @return the name of the format used to encode this key, or {@code null} 54 * Returns the encoded form of this key, or {@code null} if encoding is not 55 * supported by this key. 57 * @return the encoded form of this key, or {@code null} if encoding is not 58 * supported by this 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/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>>> 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...] |
/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 {
|
/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/llvm/include/llvm/MC/ |
SubtargetFeature.h | 31 /// SubtargetFeatureKV - Used to provide key value pairs for feature and 35 const char *Key; // K-V key string 42 return StringRef(Key) < S; 48 /// SubtargetInfoKV - Used to provide key value pairs for CPU and arbitrary 52 const char *Key; // K-V key string 57 return StringRef(Key) < S;
|
/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...] |
/frameworks/compile/mclinker/include/mcld/LD/ |
BranchIsland.h | 98 /** \class Key 99 * \brief Key to recognize a stub in the island. 102 class Key { 104 Key(const Stub* pPrototype, const LDSymbol* pSymbol, Stub::SWord pAddend) 107 ~Key() {} 116 size_t operator()(const Key& KEY) const { 117 llvm::StringRef sym_name(KEY.symbol()->name()); 119 return (size_t((uintptr_t)KEY.prototype())) ^ str_hasher(sym_name) ^ 120 KEY.addend() [all...] |
/external/clang/lib/AST/ |
ItaniumCXXABI.cpp | 66 QualType Key = 69 Key = Context.getCanonicalType(Key); 70 return ++ManglingNumbers[Key->castAs<FunctionProtoType>()];
|
/external/clang/tools/diagtool/ |
DiagnosticNames.cpp | 53 DiagnosticRecord Key = {nullptr, DiagID, 0}; 58 Key, orderByID);
|
/external/eigen/demos/opengl/ |
icosphere.cpp | 63 typedef unsigned long long Key; 64 std::map<Key,int> edgeMap; 81 Key edgeKey = Key(e0) | (Key(e1)<<32); 82 std::map<Key,int>::iterator it = edgeMap.find(edgeKey);
|
/external/marisa-trie/lib/marisa/ |
key.h | 7 class Key { 9 Key() : str_(), weight_(0.0), id_(0), terminal_(0) {} 45 inline bool operator<(const Key<T> &lhs, const T &rhs) { 50 inline bool operator<(const T &lhs, const Key<T> &rhs) { 55 inline bool operator<(const Key<T> &lhs, const Key<T> &rhs) { 60 inline bool operator==(const Key<T> &lhs, const Key<T> &rhs) {
|
/external/marisa-trie/v0_1_5/lib/marisa_alpha/ |
key.h | 9 class Key { 11 Key() : str_(), weight_(0.0), id_(0), terminal_(0) {} 47 inline bool operator<(const Key<T> &lhs, const T &rhs) { 52 inline bool operator<(const T &lhs, const Key<T> &rhs) { 57 inline bool operator<(const Key<T> &lhs, const Key<T> &rhs) { 62 inline bool operator==(const Key<T> &lhs, const Key<T> &rhs) {
|
/frameworks/av/drm/mediadrm/plugins/clearkey/tests/ |
AesCtrDecryptorUnittest.cpp | 31 typedef uint8_t Key[kBlockSize]; 33 status_t attemptDecrypt(const Key& key, const Iv& iv, const uint8_t* source, 37 keyVector.appendArray(key, kBlockSize); 45 void attemptDecryptExpectingSuccess(const Key& key, const Iv& iv, 52 ASSERT_EQ(android::OK, attemptDecrypt(key, iv, encrypted, outputBuffer, 65 Key key = { local 101 attemptDecryptExpectingSuccess<kTotalSize>(key, iv, encrypted, decrypted 110 Key key = { local 156 Key key = { local 202 Key key = { local 251 Key key = { local 305 Key key = { local 360 Key key = { local [all...] |
/external/marisa-trie/tools/ |
marisa-build.cc | 15 typedef std::pair<std::string, double> Key; 40 void read_keys(std::istream *input, std::vector<Key> *keys) { 41 Key key; local 47 key.second = std::strtod(&line[delim_pos + 1], &end_of_value); 51 key.second = 1.0; 54 key.second = 1.0; 56 key.first = line; 57 keys->push_back(key); 62 std::vector<Key> keys [all...] |
/external/marisa-trie/v0_1_5/tools/ |
marisa_alpha-build.cc | 15 typedef std::pair<std::string, double> Key; 40 void read_keys(std::istream *input, std::vector<Key> *keys) { 41 Key key; local 47 key.second = std::strtod(&line[delim_pos + 1], &end_of_value); 51 key.second = 1.0; 54 key.second = 1.0; 56 key.first = line; 57 keys->push_back(key); 62 std::vector<Key> keys [all...] |
/external/openfst/src/include/fst/ |
generic-register.h | 29 // a) be such as can be stored as a key in a map<> 43 typedef KeyType Key; 53 void SetEntry(const KeyType &key, 57 register_table_.insert(make_pair(key, entry)); 60 EntryType GetEntry(const KeyType &key) const { 61 const EntryType *entry = LookupEntry(key); 65 return LoadEntryFromSharedObject(key); 74 virtual EntryType LoadEntryFromSharedObject(const KeyType &key) const { 75 string so_filename = ConvertKeyToSoFilename(key); 86 const EntryType *entry = this->LookupEntry(key); [all...] |
/external/openssh/ |
key.h | 1 /* $OpenBSD: key.h,v 1.47 2015/01/28 22:36:00 djm Exp $ */ 31 typedef struct sshkey Key; 63 void key_add_private(Key *); 64 Key *key_new_private(int); 65 void key_free(Key *); 66 Key *key_demote(const Key *); 67 int key_write(const Key *, FILE *); 68 int key_read(Key *, char **); 70 Key *key_generate(int, u_int) [all...] |
/external/skia/src/gpu/ |
GrAADistanceFieldPathRenderer.h | 49 struct Key { 53 bool operator==(const Key& other) const { 57 Key fKey; 64 static inline const Key& GetKey(const PathData& data) { 68 static inline uint32_t Hash(Key key) { 69 return SkChecksum::Murmur3(reinterpret_cast<const uint32_t*>(&key), sizeof(key)); 75 typedef SkTDynamicHash<PathData, PathData::Key> PathCache;
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/pool/ |
TypeListPool.java | 37 import org.jf.dexlib2.writer.pool.TypeListPool.Key; 44 public class TypeListPool extends BaseNullableOffsetPool<Key<? extends Collection<? extends CharSequence>>> 45 implements TypeListSection<CharSequence, Key<? extends Collection<? extends CharSequence>>> { 54 Key<? extends Collection<? extends CharSequence>> key = new Key<Collection<? extends CharSequence>>(types); local 55 Integer prev = internedItems.put(key, 0); 65 public Collection<? extends CharSequence> getTypes(Key<? extends Collection<? extends CharSequence>> typesKey) { 72 @Override public int getNullableItemOffset(@Nullable Key<? extends Collection<? extends CharSequence>> key) { [all...] |