/libcore/ojluni/src/main/java/sun/security/util/ |
KeyUtil.java | 29 import java.security.Key; 47 * A utility class to get key length, valiate keys, etc. 52 * Returns the key size of the given key object in bits. 54 * @param key the key object, cannot be null 55 * @return the key size of the given key object in bits, or -1 if the 56 * key size is not accessible 58 public static final int getKeySize(Key key) [all...] |
DisabledAlgorithmConstraints.java | 32 import java.security.Key; 128 final public boolean permits(Set<CryptoPrimitive> primitives, Key key) { 129 return checkConstraints(primitives, "", key, null); 134 String algorithm, Key key, AlgorithmParameters parameters) { 140 return checkConstraints(primitives, algorithm, key, parameters); 237 String algorithm, Key key, AlgorithmParameters parameters) { 239 // check the key parameter, it cannot be null [all...] |
/external/guice/core/src/com/google/inject/util/ |
Modules.java | 28 import com.google.inject.Key; 66 * modules. If a key is bound in both sets of modules, only the binding from the override modules 86 * modules. If a key is bound in both sets of modules, only the binding from the override modules 187 for(Key exposed : privateElements.getExposedKeys()) { 201 final Set<Key<?>> overriddenKeys = Sets.newHashSet(); 248 void rewrite(Binder binder, PrivateElements privateElements, Set<Key<?>> keysToSkip) { 252 Set<Key<?>> skippedExposes = Sets.newHashSet(); 254 for (Key<?> key : privateElements.getExposedKeys()) { 255 if (keysToSkip.remove(key)) { [all...] |
/external/llvm/include/llvm/IR/ |
Module.h | 151 MDString *Key; 154 : Behavior(B), Key(K), Val(V) {} 408 /// Return the corresponding value if Key appears in module flags, otherwise 410 Metadata *getModuleFlag(StringRef Key) const; 423 void addModuleFlag(ModFlagBehavior Behavior, StringRef Key, Metadata *Val); 424 void addModuleFlag(ModFlagBehavior Behavior, StringRef Key, Constant *Val); 425 void addModuleFlag(ModFlagBehavior Behavior, StringRef Key, uint32_t Val);
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/suggestions/ |
MoreSuggestions.java | 24 import com.android.inputmethod.keyboard.Key; 158 public void markAsEdgeKey(final Key key, final int index) { 161 key.markAsBottomEdge(this); 163 key.markAsTopEdge(this); 168 key.markAsLeftEdge(this); 170 key.markAsRightEdge(this); 198 mPaneView.newLabelPaint(null /* key */), mResources); 222 final Key key = new MoreSuggestionKey(word, info, index, params) local [all...] |
MoreSuggestionsView.java | 23 import com.android.inputmethod.keyboard.Key; 34 * key presses and touch movements. 92 protected void onKeyInput(final Key key, final int x, final int y) { 93 if (!(key instanceof MoreSuggestionKey)) { 94 Log.e(TAG, "Expected key is MoreSuggestionKey, but found " 95 + key.getClass().getName()); 105 final int index = ((MoreSuggestionKey)key).mSuggestedWordIndex;
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/list_update_map_/ |
lu_map_.hpp | 69 template<typename Key, typename Mapped, typename Eq_Fn, \ 73 PB_DS_LU_NAME<Key, Mapped, Eq_Fn, _Alloc, Update_Policy> 76 types_traits<Key, Mapped, _Alloc, false> 80 debug_map_base<Key, Eq_Fn, \ 81 typename _Alloc::template rebind<Key>::other::const_reference> 86 template<typename Key,
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/list_update_map_/ |
lu_map_.hpp | 69 template<typename Key, typename Mapped, typename Eq_Fn, \ 73 PB_DS_LU_NAME<Key, Mapped, Eq_Fn, _Alloc, Update_Policy> 76 types_traits<Key, Mapped, _Alloc, false> 80 debug_map_base<Key, Eq_Fn, \ 81 typename _Alloc::template rebind<Key>::other::const_reference> 86 template<typename Key,
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/list_update_map_/ |
lu_map_.hpp | 69 template<typename Key, typename Mapped, typename Eq_Fn, \ 73 PB_DS_LU_NAME<Key, Mapped, Eq_Fn, _Alloc, Update_Policy> 76 types_traits<Key, Mapped, _Alloc, false> 80 debug_map_base<Key, Eq_Fn, \ 81 typename _Alloc::template rebind<Key>::other::const_reference> 86 template<typename Key,
|
/prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/detail/list_update_map_/ |
lu_map_.hpp | 69 template<typename Key, typename Mapped, typename Eq_Fn, \ 73 PB_DS_LU_NAME<Key, Mapped, Eq_Fn, _Alloc, Update_Policy> 76 types_traits<Key, Mapped, _Alloc, false> 80 debug_map_base<Key, Eq_Fn, \ 81 typename _Alloc::template rebind<Key>::other::const_reference> 86 template<typename Key,
|
/external/apache-harmony/crypto/src/test/api/java.injected/javax/crypto/ |
MacSpiTest.java | 28 import java.security.Key; 135 protected void engineInit(Key key, AlgorithmParameterSpec params)
|
/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/guice/core/src/com/google/inject/ |
Binder.java | 239 <T> LinkedBindingBuilder<T> bind(Key<T> key); 318 * Returns the provider used to obtain instances for the given injection key. 325 <T> Provider<T> getProvider(Key<T> key); 328 * Returns the provider used to obtain instances for the given injection key.
|
/external/guice/core/test/com/google/inject/ |
BinderTestSuite.java | 84 .key(Key.get(AWithProvidedBy.class), InjectsAWithProvidedBy.class) 89 .key(Key.get(AWithImplementedBy.class), InjectsAWithImplementedBy.class) 94 .key(Key.get(ScopedA.class), InjectsScopedA.class) 100 .key(Key.get(AWithProvidedBy.class, named("apple")), 108 .key(Key.get(AWithImplementedBy.class, named("apple")) 306 private Key<?> key = Key.get(A.class); field in class:BinderTestSuite.Builder 334 public Builder key(Key<?> key, Class<? extends Injectable> injectsKey) { method in class:BinderTestSuite.Builder 380 final Key<?> key; field in class:BinderTestSuite.SuccessTest 450 final Key<?> key; field in class:BinderTestSuite.CreationExceptionTest 478 final Key<?> key; field in class:BinderTestSuite.ConfigurationExceptionTest 547 final Key<?> key; field in class:BinderTestSuite.UserExceptionsTest [all...] |
ErrorHandlingTest.java | 127 bind(Key.get(Runnable.class)).to(Key.get(Runnable.class));
|
/external/guice/extensions/jmx/src/com/google/inject/tools/jmx/ |
Manager.java | 22 import com.google.inject.Key; 58 // key/value pairs. 61 Key<?> key = binding.getKey(); local 62 name.append("type=").append(quote(key.getTypeLiteral().toString())); 63 Annotation annotation = key.getAnnotation(); 68 Class<? extends Annotation> annotationType = key.getAnnotationType();
|
/external/guice/extensions/servlet/test/com/google/inject/servlet/ |
FilterDispatchIntegrationTest.java | 27 import com.google.inject.Key; 81 filter("/*").through(Key.get(TestFilter.class)); 84 filter("/index/*").through(Key.get(TestFilter.class)); 85 filter("*.jsp").through(Key.get(TestFilter.class)); 140 filter("*.xml").through(Key.get(TestFilter.class)); 143 filter("/index/*").through(Key.get(TestFilter.class)); 144 filter("*.jsp").through(Key.get(TestFilter.class)); 185 filterRegex("\\w").through(Key.get(TestFilter.class));
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
ICULocaleService.java | 64 * createKey(ULocale.toString(), kind) to create a key, calls getKey, and then 69 Key key = createKey(locale, kind); local 71 return getKey(key); 75 Object result = getKey(key, temp); 153 * A subclass of Key that implements a locale fallback mechanism. 158 * is the default key instantiated by ICULocaleService.</p> 164 public static class LocaleKey extends ICUService.Key { 244 * Return the kind code associated with this key. 304 * If the key has a fallback, modify the key and return true [all...] |
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
NumberFormatServiceShim.java | 21 import android.icu.impl.ICUService.Key; 51 public Object create(Key key, ICUService srvc) { 52 if (!handlesKey(key) || !(key instanceof LocaleKey)) { 56 LocaleKey lkey = (LocaleKey)key; 59 result = srvc.getKey(key, null, this);
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
ICULocaleService.java | 60 * createKey(ULocale.toString(), kind) to create a key, calls getKey, and then 65 Key key = createKey(locale, kind); local 67 return getKey(key); 71 Object result = getKey(key, temp); 149 * A subclass of Key that implements a locale fallback mechanism. 154 * is the default key instantiated by ICULocaleService.</p> 160 public static class LocaleKey extends ICUService.Key { 240 * Return the kind code associated with this key. 300 * If the key has a fallback, modify the key and return true [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
NumberFormatServiceShim.java | 20 import com.ibm.icu.impl.ICUService.Key; 50 public Object create(Key key, ICUService srvc) { 51 if (!handlesKey(key) || !(key instanceof LocaleKey)) { 55 LocaleKey lkey = (LocaleKey)key; 58 result = srvc.getKey(key, null, this);
|
/frameworks/base/services/core/jni/ |
com_android_server_tv_TvKeys.h | 11 struct Key { 17 static Key KEYS[] = {
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/accessibility/ |
MoreKeysKeyboardAccessibilityDelegate.java | 23 import com.android.inputmethod.keyboard.Key; 65 Log.d(TAG, "onHoverEnter: key=" + getHoverKeyOf(event)); 89 final Key lastKey = getLastHoverKey(); 91 Log.d(TAG, "onHoverExit: key=" + getHoverKeyOf(event) + " last=" + lastKey); 108 // exit event selects a key.
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/pat_trie_/ |
pat_trie_.hpp | 74 template<typename Key, typename Mapped, typename Node_And_It_Traits, \ 78 PB_DS_PAT_TRIE_NAME<Key, Mapped, Node_And_It_Traits, _Alloc> 81 types_traits<Key, Mapped, _Alloc, false> 85 debug_map_base<Key, eq_by_less<Key, std::less<Key> >, \ 86 typename _Alloc::template rebind<Key>::other::const_reference> 99 template<typename Key, typename Mapped, typename Node_And_It_Traits,
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/pat_trie_/ |
pat_trie_.hpp | 74 template<typename Key, typename Mapped, typename Node_And_It_Traits, \ 78 PB_DS_PAT_TRIE_NAME<Key, Mapped, Node_And_It_Traits, _Alloc> 81 types_traits<Key, Mapped, _Alloc, false> 85 debug_map_base<Key, eq_by_less<Key, std::less<Key> >, \ 86 typename _Alloc::template rebind<Key>::other::const_reference> 99 template<typename Key, typename Mapped, typename Node_And_It_Traits,
|