HomeSort by relevance Sort by last modified time
    Searched refs:Key (Results 501 - 525 of 1431) sorted by null

<<21222324252627282930>>

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/rsa/
KeyFactorySpi.java 5 import java.security.Key;
32 Key key,
36 if (spec.isAssignableFrom(RSAPublicKeySpec.class) && key instanceof RSAPublicKey)
38 RSAPublicKey k = (RSAPublicKey)key;
42 else if (spec.isAssignableFrom(RSAPrivateKeySpec.class) && key instanceof java.security.interfaces.RSAPrivateKey)
44 java.security.interfaces.RSAPrivateKey k = (java.security.interfaces.RSAPrivateKey)key;
48 else if (spec.isAssignableFrom(RSAPrivateCrtKeySpec.class) && key instanceof RSAPrivateCrtKey)
50 RSAPrivateCrtKey k = (RSAPrivateCrtKey)key;
60 return super.engineGetKeySpec(key, spec)
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/util/
BaseCipherSpi.java 5 import java.security.Key;
74 Key key)
76 return key.getEncoded().length;
111 Key key)
114 byte[] encoded = key.getEncoded();
117 throw new InvalidKeyException("Cannot wrap key, null encoding.");
137 protected Key engineUnwrap(
195 throw new InvalidKeyException("Invalid key encoding.")
    [all...]
  /external/chromium-trace/catapult/dashboard/dashboard/
list_monitored_tests.py 33 sheriff = ndb.Key('Sheriff', sheriff_name)
report_test.py 54 t = ndb.Key('Master', m, 'Bot', b, 'Test', t).get()
126 state = ndb.Key(page_state.PageState, state_id).get()
166 state = ndb.Key(page_state.PageState, state_id).get()
206 state = ndb.Key(page_state.PageState, state_id).get()
  /external/chromium-trace/catapult/dashboard/dashboard/models/
bug_data.py 24 Keys for Bug entities will be in the form ndb.Key('Bug', <bug_id>).
54 bug = ndb.Key('Bug', int(bug_id)).get()
  /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/clang/lib/AST/
ItaniumCXXABI.cpp 66 QualType Key =
69 Key = Context.getCanonicalType(Key);
70 return ++ManglingNumbers[Key->castAs<FunctionProtoType>()];
  /external/clang/test/SemaCXX/
PR11358.cpp 22 template <typename Key, typename Value>
  /external/glide/library/src/main/java/com/bumptech/glide/load/engine/
EngineJob.java 6 import com.bumptech.glide.load.Key;
31 private final Key key; field in class:EngineJob
50 public EngineJob(Key key, ExecutorService diskCacheService, ExecutorService sourceService, boolean isCacheable,
52 this(key, diskCacheService, sourceService, isCacheable, listener, DEFAULT_FACTORY);
55 public EngineJob(Key key, ExecutorService diskCacheService, ExecutorService sourceService, boolean isCacheable,
57 this.key = key;
    [all...]
  /external/guice/core/src/com/google/inject/
PrivateModule.java 112 /** Makes the binding for {@code key} available to other modules and the injector. */
113 protected final <T> void expose(Key<T> key) {
114 binder().expose(key);
153 * @see Binder#bind(Key)
155 protected final <T> LinkedBindingBuilder<T> bind(Key<T> key) {
156 return binder().bind(key);
234 * Instructs Guice to require a binding to the given key.
236 protected final void requireBinding(Key<?> key)
    [all...]
  /external/guice/core/src/com/google/inject/internal/
InstanceBindingImpl.java 22 import com.google.inject.Key;
39 public InstanceBindingImpl(InjectorImpl injector, Key<T> key, Object source,
42 super(injector, key, source, internalFactory, Scoping.EAGER_SINGLETON);
48 public InstanceBindingImpl(Object source, Key<T> key, Scoping scoping,
50 super(source, key, scoping);
82 public BindingImpl<T> withKey(Key<T> key) {
83 return new InstanceBindingImpl<T>(getSource(), key, getScoping(), injectionPoints, instance)
    [all...]
ProviderInstanceBindingImpl.java 22 import com.google.inject.Key;
40 public ProviderInstanceBindingImpl(InjectorImpl injector, Key<T> key,
44 super(injector, key, source, internalFactory, scoping);
49 public ProviderInstanceBindingImpl(Object source, Key<T> key, Scoping scoping,
51 super(source, key, scoping);
89 public BindingImpl<T> withKey(Key<T> key) {
91 getSource(), key, getScoping(), injectionPoints, providerInstance)
    [all...]
  /external/guice/core/test/com/google/inject/
IntegrationTest.java 41 Foo foo = injector.getInstance(Key.get(Foo.class));
  /external/guice/extensions/assistedinject/test/com/google/inject/assistedinject/
FactoryModuleBuilderTest.java 30 import com.google.inject.Key;
321 Foo.Factory<String> factory = injector.getInstance(Key.get(new TypeLiteral<Foo.Factory<String>>() {}));
331 install(new FactoryModuleBuilder().build(Key.get(Foo.Factory.class)));
339 Foo.Factory.class.getName() + " cannot be used as a key; It is not fully specified.",
423 Set<Key<?>> expectedKeys = ImmutableSet.<Key<?>>of(
424 Key.get(Integer.class),
425 Key.get(Double.class),
426 Key.get(Float.class),
427 Key.get(String.class, named("dog"))
    [all...]
  /external/guice/extensions/servlet/test/com/google/inject/servlet/
ServletTest.java 36 import com.google.inject.Key;
72 private static final Key<HttpServletRequest> HTTP_REQ_KEY = Key.get(HttpServletRequest.class);
73 private static final Key<HttpServletResponse> HTTP_RESP_KEY = Key.get(HttpServletResponse.class);
74 private static final Key<Map<String, String[]>> REQ_PARAMS_KEY
75 = new Key<Map<String, String[]>>(RequestParameters.class) {};
77 private static final Key<InRequest> IN_REQUEST_NULL_KEY = Key.get(InRequest.class, Null.class);
78 private static final Key<InSession> IN_SESSION_KEY = Key.get(InSession.class)
111 Key<?> key = Key.get(String.class, Names.named("foo")); local
    [all...]
VarargsServletDispatchIntegrationTest.java 26 import com.google.inject.Key;
71 serve("*.html", "/o/*", "/index/*", "*.jsp").with(Key.get(NeverServlet.class));
111 serve("*.html", "/*", "/index/*", "*.jsp").with(Key.get(NeverServlet.class));
153 serve("*.html", "/y/*", "/index/*", "*.jsp").with(Key.get(NeverServlet.class));
  /external/guice/jdk8-tests/test/com/google/inject/jdk8/
Java8LanguageFeatureBindingTest.java 24 import com.google.inject.Key;
56 Predicate<Object> predicate = injector.getInstance(new Key<Predicate<Object>>() {});
72 Callable<String> callable = injector.getInstance(new Key<Callable<String>>() {});
92 injector.getInstance(new Key<Callable<String>>() {});
  /external/lzma/CPP/Common/
CommandLineParser.h 26 const char *Key;
  /frameworks/base/keystore/java/android/security/keystore/
AndroidKeyStoreKeyFactorySpi.java 23 import java.security.Key;
44 protected <T extends KeySpec> T engineGetKeySpec(Key key, Class<T> keySpecClass)
46 if (key == null) {
47 throw new InvalidKeySpecException("key == null");
48 } else if ((!(key instanceof AndroidKeyStorePrivateKey))
49 && (!(key instanceof AndroidKeyStorePublicKey))) {
51 "Unsupported key type: " + key.getClass().getName()
55 // key is an Android Keystore private or public ke
    [all...]
  /frameworks/native/services/surfaceflinger/RenderEngine/
Program.h 39 Program(const ProgramCache::Key& needs, const char* vertex, const char* fragment);
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/layout/expected/
ExpectedKeyOutput.java 19 import com.android.inputmethod.keyboard.Key;
27 * This class represents an expected output of a key.
47 abstract boolean hasSameKeyOutput(final Key key);
83 boolean hasSameKeyOutput(final Key key) {
84 return mCode == key.getCode();
138 boolean hasSameKeyOutput(final Key key) {
139 return key.getCode() == Constants.CODE_OUTPUT_TEX
    [all...]
ExpectedKeyVisual.java 19 import com.android.inputmethod.keyboard.Key;
27 * This class represents an expected visual outlook of a key.
45 abstract boolean hasSameKeyVisual(final Key key);
86 boolean hasSameKeyVisual(final Key key) {
87 // If the actual key has an icon as its visual, a label has to be null.
88 // See {@link KeyboardView#onDrawKeyTopVisuals(Key,Canvas,Paint,KeyDrawParams).
89 return mIconId == key.getIconId() && key.getLabel() == null
    [all...]
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
Keyboard.java 53 * &lt;Key android:keyLabel="A" /&gt;
66 private static final String TAG_KEY = "Key";
104 /** Default key width */
107 /** Default key height */
116 /** Key instance for the shift key, if present */
117 private Key mShiftKey;
119 /** Key index for the shift key, if present */
122 /** Current key width, while loading the keyboard *
585 final Key key = new Key(row); local
712 final Key key = mKeys.get(i); local
763 Key key = null; local
    [all...]
  /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; }
  /system/keymaster/
aes_key.h 39 UniquePtr<Key>* key) const override;

Completed in 939 milliseconds

<<21222324252627282930>>