HomeSort by relevance Sort by last modified time
    Searched refs:Key (Results 201 - 225 of 373) sorted by null

1 2 3 4 5 6 7 891011>>

  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/list_update_map_/
lu_map_.hpp 61 template<typename Key, typename Mapped, class Eq_Fn, \
73 PB_DS_CLASS_NAME<Key, Mapped, Eq_Fn, Allocator, Update_Policy>
76 types_traits<Key, Mapped, Allocator, false>
80 debug_map_base<Key, Eq_Fn, \
81 typename Allocator::template rebind<Key>::other::const_reference>
98 template<typename Key,
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/list_update_map_/
lu_map_.hpp 61 template<typename Key, typename Mapped, class Eq_Fn, \
73 PB_DS_CLASS_NAME<Key, Mapped, Eq_Fn, Allocator, Update_Policy>
76 types_traits<Key, Mapped, Allocator, false>
80 debug_map_base<Key, Eq_Fn, \
81 typename Allocator::template rebind<Key>::other::const_reference>
98 template<typename Key,
  /external/apache-harmony/crypto/src/test/api/java.injected/javax/crypto/
MacSpiTest.java 28 import java.security.Key;
136 protected void engineInit(Key key, AlgorithmParameterSpec params)
CipherSpiTest.java 27 import java.security.Key;
82 * Test for <code>engineGetKeySize(Key)</code> method
95 * Test for <code>engineWrap(Key)</code> method
254 protected void engineInit(int opmode, Key key, SecureRandom random)
258 protected void engineInit(int opmode, Key key,
263 protected void engineInit(int opmode, Key key, AlgorithmParameters params,
  /external/webkit/Tools/TestResultServer/model/
datastorefile.py 46 def get(cls, key):
47 return db.get(key)
49 def get_data(self, key):
50 return db.get(key)
60 data_keys = db.ListProperty(db.Key)
63 new_data_keys = db.ListProperty(db.Key)
72 for key in keys:
73 data_entry = DataEntry.get(key)
99 key = keys[0]
100 data_entry = DataEntry.get(key)
    [all...]
  /libcore/support/src/test/java/tests/security/
AlgorithmParameterSymmetricHelper.java 22 import java.security.Key;
61 Key key = generator.generateKey(); local
79 cipher.init(Cipher.ENCRYPT_MODE, key, parameters);
96 cipher.init(Cipher.DECRYPT_MODE, key, parameters);
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/pat_trie_/
pat_trie_.hpp 73 template<typename Key, typename Mapped, typename Node_And_It_Traits, \
85 PB_DS_CLASS_NAME<Key, Mapped, Node_And_It_Traits, Allocator>
88 types_traits<Key, Mapped, Allocator, false>
92 debug_map_base<Key, eq_by_less<Key, \
93 std::less<Key> >, typename Allocator::template rebind<Key>::other::const_reference>
111 template<typename Key,
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/pat_trie_/
pat_trie_.hpp 73 template<typename Key, typename Mapped, typename Node_And_It_Traits, \
85 PB_DS_CLASS_NAME<Key, Mapped, Node_And_It_Traits, Allocator>
88 types_traits<Key, Mapped, Allocator, false>
92 debug_map_base<Key, eq_by_less<Key, \
93 std::less<Key> >, typename Allocator::template rebind<Key>::other::const_reference>
111 template<typename Key,
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/pat_trie_/
pat_trie_.hpp 73 template<typename Key, typename Mapped, typename Node_And_It_Traits, \
85 PB_DS_CLASS_NAME<Key, Mapped, Node_And_It_Traits, Allocator>
88 types_traits<Key, Mapped, Allocator, false>
92 debug_map_base<Key, eq_by_less<Key, \
93 std::less<Key> >, typename Allocator::template rebind<Key>::other::const_reference>
111 template<typename Key,
  /external/clang/lib/CodeGen/
CodeGenTypes.cpp 120 const Type *Key = CGT.getContext().getTagDeclType(RD).getTypePtr();
123 if (CGT.isRecordLayoutComplete(Key)) return true;
126 if (CGT.isRecordBeingLaidOut(Key))
579 const Type *Key = Context.getTagDeclType(RD).getTypePtr();
581 llvm::StructType *&Entry = RecordDeclTypes[Key];
603 bool InsertResult = RecordsBeingLaidOut.insert(Key); (void)InsertResult;
618 CGRecordLayouts[Key] = Layout;
621 bool EraseResult = RecordsBeingLaidOut.erase(Key); (void)EraseResult;
642 const Type *Key = Context.getTagDeclType(RD).getTypePtr();
644 const CGRecordLayout *Layout = CGRecordLayouts.lookup(Key);
    [all...]
  /external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
MyKeyStore.java 28 import java.security.Key;
62 public Key engineGetKey(String alias, char[] password)
65 return (Key) Keys.get(alias);
91 public void engineSetKeyEntry(String alias, Key key, char[] password,
96 Keys.put(alias, key);
103 public void engineSetKeyEntry(String alias, byte[] key, Certificate[] chain)
105 if (key == null) {
106 throw new KeyStoreException("Not Supported for null key");
115 alias, alias, key);
    [all...]
  /external/llvm/include/llvm/Support/
DebugLoc.h 31 /// not equal to the tombstone key or DebugLoc().
39 /// is not equal to the empty key or DebugLoc().
108 static unsigned getHashValue(const DebugLoc &Key);
  /external/skia/gpu/src/
GrTextureCache.cpp 21 GrTextureEntry::GrTextureEntry(const GrTextureKey& key, GrTexture* texture)
22 : fKey(key), fTexture(texture) {
129 class GrTextureCache::Key {
134 Key(const GrTextureKey& key) : fKey(key) {}
138 static bool LT(const T& entry, const Key& key) {
139 return entry.key() < key.fKey
    [all...]
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/
MyKeyStore.java 29 import java.security.Key;
63 public Key engineGetKey(String alias, char[] password)
66 return (Key) Keys.get(alias);
92 public void engineSetKeyEntry(String alias, Key key, char[] password,
97 Keys.put(alias, key);
104 public void engineSetKeyEntry(String alias, byte[] key, Certificate[] chain)
106 if (key == null) {
107 throw new KeyStoreException("Not Supported for null key");
116 alias, alias, key);
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/accessibility/
KeyCodeDescriptionMapper.java 23 import com.android.inputmethod.keyboard.Key;
36 // Map of key labels to spoken description resource IDs
39 // Map of key codes to spoken description resource IDs
42 // Map of shifted key codes to spoken description resource IDs
45 // Map of shift-locked key codes to spoken description resource IDs
64 // Manual label substitutions for key labels with no string resource
111 * key based on the current keyboard state.
113 * The order of precedence for key descriptions is:
115 * <li>Manually-defined based on the key label</li>
116 * <li>Automatic or manually-defined based on the key code</li
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
MiniKeyboard.java 46 public int mRightKeys; // includes default key.
64 * @param keyWidth mini keyboard key width in pixel, including horizontal gap.
66 * @param coordXInParent coordinate x of the popup key in parent keyboard.
85 final int numRightKeys = numColumns - numLeftKeys; // including default key.
101 // unless the parent key is on the left edge.
107 // unless the parent key is on the right edge.
131 // Return key position according to column count (0 is default).
139 int right = 1; // include default position key.
143 // Assign right key if available.
151 // Assign left key if available
265 final Key key = new Key(mResources, params, moreKeySpec, params.getX(n, row), local
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/rb_tree_map_/
rb_tree_.hpp 71 template<typename Key, typename Mapped, typename Cmp_Fn, \
91 PB_DS_CLASS_NAME<Key, Mapped, Cmp_Fn, Node_And_It_Traits, Allocator>
94 PB_DS_BASE_CLASS_NAME<Key, Mapped, Cmp_Fn, Node_And_It_Traits, Allocator>
108 template<typename Key,
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/splay_tree_/
splay_tree_.hpp 95 template<typename Key, typename Mapped, typename Cmp_Fn, \
115 PB_DS_CLASS_NAME<Key, Mapped, Cmp_Fn, Node_And_It_Traits, Allocator>
118 PB_DS_BASE_CLASS_NAME<Key, Mapped, Cmp_Fn, Node_And_It_Traits, Allocator>
133 template<typename Key, typename Mapped, typename Cmp_Fn,
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/rb_tree_map_/
rb_tree_.hpp 71 template<typename Key, typename Mapped, typename Cmp_Fn, \
91 PB_DS_CLASS_NAME<Key, Mapped, Cmp_Fn, Node_And_It_Traits, Allocator>
94 PB_DS_BASE_CLASS_NAME<Key, Mapped, Cmp_Fn, Node_And_It_Traits, Allocator>
108 template<typename Key,
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/splay_tree_/
splay_tree_.hpp 95 template<typename Key, typename Mapped, typename Cmp_Fn, \
115 PB_DS_CLASS_NAME<Key, Mapped, Cmp_Fn, Node_And_It_Traits, Allocator>
118 PB_DS_BASE_CLASS_NAME<Key, Mapped, Cmp_Fn, Node_And_It_Traits, Allocator>
133 template<typename Key, typename Mapped, typename Cmp_Fn,
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/rb_tree_map_/
rb_tree_.hpp 71 template<typename Key, typename Mapped, typename Cmp_Fn, \
91 PB_DS_CLASS_NAME<Key, Mapped, Cmp_Fn, Node_And_It_Traits, Allocator>
94 PB_DS_BASE_CLASS_NAME<Key, Mapped, Cmp_Fn, Node_And_It_Traits, Allocator>
108 template<typename Key,
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/splay_tree_/
splay_tree_.hpp 95 template<typename Key, typename Mapped, typename Cmp_Fn, \
115 PB_DS_CLASS_NAME<Key, Mapped, Cmp_Fn, Node_And_It_Traits, Allocator>
118 PB_DS_BASE_CLASS_NAME<Key, Mapped, Cmp_Fn, Node_And_It_Traits, Allocator>
133 template<typename Key, typename Mapped, typename Cmp_Fn,
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/ov_tree_map_/
ov_tree_map_.hpp 62 template<typename Key, typename Mapped, class Cmp_Fn, \
80 PB_DS_OV_TREE_CLASS_NAME<Key, Mapped, Cmp_Fn, Node_And_It_Traits, Allocator>
83 types_traits<Key, Mapped, Allocator, false>
87 debug_map_base<Key, eq_by_less<Key, Cmp_Fn>, \
88 typename Allocator::template rebind<Key>::other::const_reference>
111 template<typename Key, typename Mapped, class Cmp_Fn,
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/ov_tree_map_/
ov_tree_map_.hpp 62 template<typename Key, typename Mapped, class Cmp_Fn, \
80 PB_DS_OV_TREE_CLASS_NAME<Key, Mapped, Cmp_Fn, Node_And_It_Traits, Allocator>
83 types_traits<Key, Mapped, Allocator, false>
87 debug_map_base<Key, eq_by_less<Key, Cmp_Fn>, \
88 typename Allocator::template rebind<Key>::other::const_reference>
111 template<typename Key, typename Mapped, class Cmp_Fn,
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/ov_tree_map_/
ov_tree_map_.hpp 62 template<typename Key, typename Mapped, class Cmp_Fn, \
80 PB_DS_OV_TREE_CLASS_NAME<Key, Mapped, Cmp_Fn, Node_And_It_Traits, Allocator>
83 types_traits<Key, Mapped, Allocator, false>
87 debug_map_base<Key, eq_by_less<Key, Cmp_Fn>, \
88 typename Allocator::template rebind<Key>::other::const_reference>
111 template<typename Key, typename Mapped, class Cmp_Fn,

Completed in 2970 milliseconds

1 2 3 4 5 6 7 891011>>