/frameworks/base/core/java/com/android/internal/widget/ |
PasswordEntryKeyboard.java | 31 * an additional keyboard with symbols. In numeric mode, it shows a 12-key DTMF dialer-like 45 private Key[] mShiftKeys = { null, null }; 47 private Key mEnterKey; 48 private Key mF1Key; 49 private Key mSpaceKey; 87 protected Key createKeyFromXml(Resources res, Row parent, int x, int y, 89 LatinKey key = new LatinKey(res, parent, x, y, parser); local 90 final int code = key.codes[0]; 92 // Log.w(TAG, "Key code for " + key.label + " is not latin-1") [all...] |
/libcore/ojluni/src/main/java/javax/crypto/ |
CipherSpi.java | 32 import java.security.Key; 307 * Initializes this cipher with a key and a source 311 * encryption, decryption, key wrapping or key unwrapping, depending on 315 * derived from the given <code>key</code>, the underlying cipher 318 * initialized for encryption or key wrapping, and raise an 320 * initialized for decryption or key unwrapping. 343 * @param key the encryption key 346 * @exception InvalidKeyException if the given key is inappropriate fo [all...] |
/libcore/support/src/test/java/org/apache/harmony/security/tests/support/ |
TestKeyStoreSpi.java | 8 import java.security.Key; 37 public static final Key KEY = new SecretKey() { 58 aliases.put("keyalias", KEY); 108 public Key engineGetKey(String alias, char[] password) 119 return (Key) aliases.get(alias); 138 Key k = (Key) aliases.get(alias); 197 public void engineSetKeyEntry(String alias, Key key, char[] password [all...] |
MyKeyStoreSpi.java | 29 import java.security.Key; 48 public Key engineGetKey(String alias, char[] password) 68 public void engineSetKeyEntry(String alias, Key key, char[] password, 74 public void engineSetKeyEntry(String alias, byte[] key, Certificate[] chain) 163 public void verify(PublicKey key) { 167 public void verify(PublicKey key, String sigProvider) {
|
/prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/ |
map_entry.h | 46 template <typename Key, typename Value, 63 // reflection api, in which the static type of key and value is unknown. 84 // fields. However, in order to decide the in-memory type of key/value, we need 108 template <typename Key, typename Value, 113 // Provide utilities to parse/serialize key/value. Provide utilities to 115 typedef MapTypeHandler<kKeyFieldType, Key> KeyTypeHandler; 126 Key, Value, kKeyFieldType, kValueFieldType, default_enum_value> EntryType; 130 Key, Value, kKeyFieldType, kValueFieldType, default_enum_value> 142 virtual inline const KeyMapEntryAccessorType& key() const { function in class:google::protobuf::internal::MapEntry 143 return entry_lite_.key(); [all...] |
map_entry_lite.h | 41 template <typename Key, typename Value, 46 template <typename Key, typename Value, 59 template <typename Key, typename Value, 64 // Provide utilities to parse/serialize key/value. Provide utilities to 66 typedef MapTypeHandler<kKeyFieldType, Key> KeyTypeHandler; 102 virtual inline const KeyMapEntryAccessorType& key() const { function in class:google::protobuf::internal::MapEntryLite 139 // 4) missing key/value: missed key/value will have default value. caller 140 // should take this entry as if key/value is set to default value. 173 size += has_key() ? kTagSize + KeyTypeHandler::ByteSize(key()) : 0 309 inline const KeyMapEntryAccessorType& key() const { return key_; } function in class:google::protobuf::internal::MapEntryLite::MapEntryWrapper 343 inline const KeyMapEntryAccessorType& key() const { return key_; } function in class:google::protobuf::internal::MapEntryLite::MapEnumEntryWrapper [all...] |
/toolchain/binutils/binutils-2.25/gold/ |
stringpool.h | 64 // There is a key associated with every string in the pool. If you 65 // add strings to the Stringpool in the same order, then the key for 69 // linker (e.g., the symbol table) use the key value instead of the 82 // offset of any string (or any key) in the stringpool in the string 177 // The type of a key into the stringpool. As described above, a key 179 // is never a valid key value. 180 typedef size_t Key; 218 // *PKEY to the key for the string. 220 add(const Stringpool_char* s, bool copy, Key* pkey) [all...] |
dynobj.h | 619 Stringpool::Key); 624 Stringpool::Key); 641 typedef std::pair<Stringpool::Key, Stringpool::Key> Key; 646 operator()(const Key& k) const 653 operator()(const Key& k1, const Key& k2) const 657 typedef Unordered_map<Key, Version_base*, Version_table_hash,
|
/libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/ |
SealedObjectTest.java | 34 import java.security.Key; 104 Key key = kg.generateKey(); local 110 cipher.init(Cipher.ENCRYPT_MODE, key, ips); 115 cipher.init(Cipher.ENCRYPT_MODE, key, ips); 158 Key key = kg.generateKey(); local 161 cipher.init(Cipher.ENCRYPT_MODE, key); 173 Key key = kg.generateKey() local 203 Key key = kg.generateKey(); local 247 Key key = kg.generateKey(); local 294 Key key = kg.generateKey(); local 329 Key key = kg.generateKey(); local [all...] |
/packages/apps/Launcher3/src/com/android/launcher3/ |
LauncherBackupHelper.java | 49 import com.android.launcher3.backup.nano.BackupProtos.Key; 84 // Journal key is such that it is always smaller than any dynamically generated 85 // key (any Base64 encoded string). 145 private final ArrayList<Key> mKeys; 171 mKeys = new ArrayList<Key>(); 189 if (journal.key != null) { 190 for (Key key : journal.key) { 191 mExistingKeys.add(keyToBackupKey(key)); 381 Key key = backupKeyToKey(backupKey); local 465 Key key = getKey(Key.FAVORITE, id); local 518 Key key = getKey(Key.SCREEN, id); local 578 Key key = null; local 672 Key key = null; local 746 Key key = new Key(); local 759 Key key = new Key(); local 774 Key key = Key.parseFrom(Base64.decode(backupKey, Base64.DEFAULT)); local [all...] |
/external/clang/lib/Serialization/ |
Module.cpp | 53 template<typename Key, typename Offset, unsigned InitialCapacity> 56 const ContinuousRangeMap<Key, Offset, InitialCapacity> &Map) { 60 typedef ContinuousRangeMap<Key, Offset, InitialCapacity> MapType;
|
/external/clang/test/Index/ |
index-templates.cpp | 91 template<typename Key, typename Value, 92 typename Comparison = compare<Pair<Key, Value> >, 93 typename Allocator = allocator<Pair<Key, Value> > >
|
/external/guice/core/src/com/google/inject/internal/ |
ProvidedByInternalFactory.java | 22 import com.google.inject.Key; 38 private final Key<? extends Provider<T>> providerKey; 45 Key<? extends Provider<T>> providerKey) {
|
/external/guice/core/test/com/google/inject/spi/ |
ModuleRewriterTest.java | 26 import com.google.inject.Key; 106 assertEquals("A", injector.getInstance(Key.get(String.class, Names.named("2")))); 112 assertEquals("A", replayedInjector.getInstance(Key.get(String.class, Names.named("2"))));
|
/external/guice/extensions/dagger-adapter/test/com/google/inject/daggeradapter/ |
DaggerAdapterTest.java | 25 import com.google.inject.Key; 82 assertEquals(ImmutableSet.of(3, 5), i.getInstance(new Key<Set<Integer>>() {})); 97 assertEquals(ImmutableSet.of(13, 3, 5, 8), i.getInstance(new Key<Set<Integer>>() {}));
|
/external/guice/extensions/grapher/src/com/google/inject/grapher/ |
ShortNameFactory.java | 21 import com.google.inject.Key; 51 public String getAnnotationName(Key<?> key) { 52 Annotation annotation = key.getAnnotation(); 53 Class<? extends Annotation> annotationType = key.getAnnotationType(); 69 public String getClassName(Key<?> key) { 70 TypeLiteral<?> typeLiteral = key.getTypeLiteral();
|
/external/llvm/lib/MC/ |
MCSubtargetInfo.cpp | 83 return strcmp(LHS.Key, RHS.Key) < 0; 90 if (Found == ProcSchedModels+NumProcs || StringRef(Found->Key) != CPU) {
|
/external/skia/src/gpu/text/ |
GrTextBlobCache.h | 45 const GrAtlasTextBlob::Key& key, 52 cacheBlob->setupKey(key, blurRec, paint); 57 GrAtlasTextBlob* find(const GrAtlasTextBlob::Key& key) { 58 return fCache.find(key); 62 fCache.remove(blob->key()); 108 fCache.remove(lruBlob->key()); 137 SkTDynamicHash<GrAtlasTextBlob, GrAtlasTextBlob::Key> fCache;
|
/ndk/tests/device/test-gnustl-full/unit/ |
find_test.cpp | 51 struct Key 90 Key keys[10] = { {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0} }; 91 Key const* k = find(keys + 0, keys + 10, 5);
|
/ndk/tests/device/test-stlport/unit/ |
find_test.cpp | 51 struct Key 90 Key keys[10] = { {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0} }; 91 Key const* k = find(keys + 0, keys + 10, 5);
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/emoji/ |
EmojiCategory.java | 29 import com.android.inputmethod.keyboard.Key; 381 final Key[][] sortedKeys = sortKeysIntoPages( 387 for (final Key emojiKey : sortedKeys[pageId]) { 408 private static Comparator<Key> EMOJI_KEY_COMPARATOR = new Comparator<Key>() { 410 public int compare(final Key lhs, final Key rhs) { 430 private static Key[][] sortKeysIntoPages(final List<Key> inKeys, final int maxPageCount) { 431 final ArrayList<Key> keys = new ArrayList<>(inKeys) [all...] |
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/ |
NonDistinctMultitouchHelper.java | 22 import com.android.inputmethod.keyboard.Key; 32 private Key mOldKey; 73 // Inject an artifact up event for the old key. 81 // Send a down event for the latest pointer if the key is different from the previous 82 // key. 85 final Key newKey = mainTracker.getKeyOn(x, y); 87 // Inject an artifact down event for the new key. 88 // An artifact up event for the new key will usually be injected as a single-touch. 92 // Inject an artifact up event for the new key also.
|
/packages/apps/MusicFX/src/com/android/musicfx/ |
ActivityMusic.java | 281 mAudioSession, ControlPanelEffect.Key.eq_num_presets); 285 mCallingPackageName, mAudioSession, ControlPanelEffect.Key.eq_preset_name, i); 305 mAudioSession, ControlPanelEffect.Key.global_enabled, isChecked); 342 mAudioSession, ControlPanelEffect.Key.virt_strength, progress); 350 mAudioSession, ControlPanelEffect.Key.virt_enabled, true); 360 mAudioSession, ControlPanelEffect.Key.virt_enabled, false); 371 mAudioSession, ControlPanelEffect.Key.virt_enabled, isChecked); 404 mAudioSession, ControlPanelEffect.Key.bb_strength, progress); 412 mAudioSession, ControlPanelEffect.Key.bb_enabled, true); 422 mAudioSession, ControlPanelEffect.Key.bb_enabled, false) [all...] |
/external/guice/core/test/com/google/inject/ |
ProvisionListenerTest.java | 325 ImmutableSet.of(Key.get(Interface.class), Key.get(String.class, named("constant"))), 330 assertEquals(of(Key.get(Foo.class)), capturer.getAndClear()); 332 // provider key binding -- notifies about provider & the object, always 333 assertNotNull(injector.getInstance(Key.get(Foo.class, named("pk")))); 334 assertEquals(of(Key.get(FooP.class), Key.get(Foo.class, named("pk"))), capturer.getAndClear()); 335 assertNotNull(injector.getInstance(Key.get(Foo.class, named("pk")))); 336 assertEquals(of(Key.get(FooP.class), Key.get(Foo.class, named("pk"))), capturer.getAndClear()) [all...] |
/external/apache-harmony/security/src/test/impl/java.injected/java/security/ |
Signature_Impl1Test.java | 68 private class MyKey implements Key {
|