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

<<21222324252627282930>>

  /system/media/camera/docs/
CameraMetadataKeys.mako 18 ## These sections of metadata Key definitions are inserted into the middle of
22 * The key entries below this point are generated from metadata
28 ## Generate a single key and docs
69 public static final Key<${jtype_boxed(entry)}> ${entry.name | jkey_identifier} =
70 new Key<${jtype_boxed(entry)}>("${entry.name}", ${jkey_type_token(entry)});
  /toolchain/binutils/binutils-2.25/binutils/testsuite/binutils-all/
readelf.s 20 Key to Flags:
  /external/dagger2/compiler/src/test/java/dagger/internal/codegen/
KeyTest.java 51 * Tests {@link Key}.
59 private Key.Factory keyFactory;
64 this.keyFactory = new Key.Factory(types, elements);
112 Key key = local
114 assertThat(MoreTypes.equivalence().wrap(key.qualifier().get().getAnnotationType()))
116 assertThat(key.wrappedType()).isEqualTo(MoreTypes.equivalence().wrap(stringType));
124 Key provisionKey =
133 Key injectionKey = keyFactory.forQualifiedType(Optional.<AnnotationMirror>of(qualifier), type);
215 Key intKey = keyFactory.forProvidesMethod((ExecutableType) intMethod.asType(), intMethod)
    [all...]
  /external/google-breakpad/src/processor/
static_map_unittest.cc 46 template<typename Key, typename Value>
49 static char* Serialize(const std::map<Key, Value> &stdmap,
52 sizeof(uint32_t) + sizeof(Key) + sizeof(Value);
69 Key* keys = reinterpret_cast<Key*>(address);
70 address += sizeof(Key) * stdmap.size();
73 typename std::map<Key, Value>::const_iterator iter = stdmap.begin();
240 void FindTester(int test_case, const KeyType &key) {
241 iter_test = test_map[test_case].find(key);
242 iter_std = std_map[test_case].find(key);
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/ov_tree_map_/
ov_tree_map_.hpp 74 template<typename Key, typename Mapped, typename Cmp_Fn, \
78 PB_DS_OV_TREE_NAME<Key, Mapped, Cmp_Fn, Node_And_It_Traits, _Alloc>
81 types_traits<Key, Mapped, _Alloc, false>
85 debug_map_base<Key, eq_by_less<Key, Cmp_Fn>, \
86 typename _Alloc::template rebind<Key>::other::const_reference>
104 template<typename Key, typename Mapped, typename Cmp_Fn,
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/ov_tree_map_/
ov_tree_map_.hpp 74 template<typename Key, typename Mapped, typename Cmp_Fn, \
78 PB_DS_OV_TREE_NAME<Key, Mapped, Cmp_Fn, Node_And_It_Traits, _Alloc>
81 types_traits<Key, Mapped, _Alloc, false>
85 debug_map_base<Key, eq_by_less<Key, Cmp_Fn>, \
86 typename _Alloc::template rebind<Key>::other::const_reference>
104 template<typename Key, typename Mapped, typename Cmp_Fn,
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/ov_tree_map_/
ov_tree_map_.hpp 74 template<typename Key, typename Mapped, typename Cmp_Fn, \
78 PB_DS_OV_TREE_NAME<Key, Mapped, Cmp_Fn, Node_And_It_Traits, _Alloc>
81 types_traits<Key, Mapped, _Alloc, false>
85 debug_map_base<Key, eq_by_less<Key, Cmp_Fn>, \
86 typename _Alloc::template rebind<Key>::other::const_reference>
104 template<typename Key, typename Mapped, typename Cmp_Fn,
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/detail/ov_tree_map_/
ov_tree_map_.hpp 74 template<typename Key, typename Mapped, typename Cmp_Fn, \
78 PB_DS_OV_TREE_NAME<Key, Mapped, Cmp_Fn, Node_And_It_Traits, _Alloc>
81 types_traits<Key, Mapped, _Alloc, false>
85 debug_map_base<Key, eq_by_less<Key, Cmp_Fn>, \
86 typename _Alloc::template rebind<Key>::other::const_reference>
104 template<typename Key, typename Mapped, typename Cmp_Fn,
  /external/guice/core/src/com/google/inject/spi/
Elements.java 29 import com.google.inject.Key;
374 public <T> AnnotatedBindingBuilder<T> bind(Key<T> key) {
376 new BindingBuilder<T>(this, elements, getElementSource(), MoreTypes.canonicalizeKey(key));
381 return bind(Key.get(typeLiteral));
385 return bind(Key.get(type));
392 public <T> Provider<T> getProvider(final Key<T> key) {
393 return getProvider(Dependency.get(key));
403 return getProvider(Key.get(type))
    [all...]
  /development/tools/idegen/src/com/android/idegen/
Module.java 62 protected enum Key {
166 Iterable<String> values = makeFileParser.getValues(Key.LOCAL_SRC_FILES.name());
204 parseDirectDependencies(Key.LOCAL_STATIC_JAVA_LIBRARIES);
205 parseDirectDependencies(Key.LOCAL_JAVA_LIBRARIES);
209 private void parseDirectDependencies(Key key) {
210 Iterable<String> names = makeFileParser.getValues(key.name());
  /external/chromium-trace/catapult/third_party/webapp2/webapp2_extras/appengine/auth/
models.py 83 entity = cls(key=model.Key(cls, value))
84 txn = lambda: entity.put() if not entity.key.get() else None
101 # existing = [entity.key.id() for entity in entities if entity]
106 keys = [model.Key(cls, value) for value in values]
107 entities = [cls(key=key) for key in keys]
108 func = lambda e: e.put() if not e.key.get() else None
125 return model.delete_multi(model.Key(cls, v) for v in values
    [all...]
  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/
ProvisionBinding.java 49 * A value object representing the mechanism by which a {@link Key} can be provided. New instances
69 private final Key.Factory keyFactory;
72 Factory(Elements elements, Types types, Key.Factory keyFactory,
89 * will return a resolved binding, with the key & type resolved to the given type (using
113 Key key = keyFactory.forInjectConstructorWithResolvedType(enclosingCxtorType); local
114 checkArgument(!key.qualifier().isPresent());
127 key,
130 findBindingPackage(key),
131 hasNonDefaultTypeParameters(bindingTypeElement, key.type(), types)
167 Key key = keyFactory.forProvidesMethod(resolvedMethod, providesMethod); local
    [all...]
  /external/guice/extensions/assistedinject/src/com/google/inject/assistedinject/
FactoryProvider.java 29 import com.google.inject.Key;
183 Key<?> implementationKey = Key.get(implementationType);
187 Key<?> returnType = getKey(factoryType.getReturnType(method), method,
197 return new FactoryProvider2<F>(Key.get(factoryType), collector);
  /libcore/ojluni/src/main/java/sun/security/ssl/
SSLAlgorithmConstraints.java 34 import java.security.Key;
142 public boolean permits(Set<CryptoPrimitive> primitives, Key key) {
147 permitted = peerAlgConstraints.permits(primitives, key);
151 permitted = userAlgConstraints.permits(primitives, key);
155 permitted = tlsDisabledAlgConstraints.permits(primitives, key);
159 permitted = x509DisabledAlgConstraints.permits(primitives, key);
166 String algorithm, Key key, AlgorithmParameters parameters) {
172 primitives, algorithm, key, parameters)
    [all...]
  /packages/apps/Camera2/src/com/android/camera/data/
GlideFilmstripManager.java 37 import com.bumptech.glide.load.Key;
130 public final DrawableRequestBuilder<Uri> loadFull(Uri uri, Key key, Size original) {
136 .signature(key)
145 public DrawableRequestBuilder<Uri> loadScreen(Uri uri, Key key, Size original) {
150 .signature(key)
160 public GenericRequestBuilder<Uri, ?, ?, GlideDrawable> loadMediaStoreThumb(Uri uri, Key key) {
165 .signature(key)
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
MoreKeySpec.java 23 import com.android.inputmethod.keyboard.Key;
36 * The more key specification object. The more keys are an array of {@link MoreKeySpec}.
38 * The more keys specification is comma separated "key specification" each of which represents one
39 * "more key".
40 * The key specification might have label or string resource reference in it. These references are
46 // TODO: Should extend the key specification object.
58 throw new KeySpecParser.KeySpecParserError("Empty more key spec");
80 public Key buildKey(final int x, final int y, final int labelFlags,
82 return new Key(mLabel, mIconId, mCode, mOutputText, null /* hintLabel */, labelFlags,
83 Key.BACKGROUND_TYPE_NORMAL, x, y, params.mDefaultKeyWidth, params.mDefaultRowHeight
    [all...]
  /external/guice/core/src/com/google/inject/internal/
Errors.java 27 import com.google.inject.Key;
146 public Errors missingImplementation(Key key) {
147 return addMessage("No implementation for %s was bound.", key);
150 public Errors jitDisabled(Key key) {
151 return addMessage("Explicit bindings are required and %s is not explicitly bound.", key);
154 public Errors jitDisabledInParent(Key<?> key) {
158 key);
    [all...]
  /frameworks/base/core/java/android/inputmethodservice/
KeyboardView.java 30 import android.inputmethodservice.Keyboard.Key;
59 * detecting key presses and touch movements.
78 * Called when the user presses a key. This is sent before the {@link #onKey} is called.
80 * @param primaryCode the unicode of the key being pressed. If the touch is not on a valid
81 * key, the value will be zero.
86 * Called when the user releases a key. This is sent after the {@link #onKey} is called.
88 * @param primaryCode the code of the key that was released
93 * Send a key press to the listener.
94 * @param primaryCode this is the key that was pressed
96 * with the primary code being the first. If the primary key code i
624 Key key = keys[i]; local
692 final Key key = keys[i]; local
774 final Key key = keys[nearestKeyIndices[i]]; local
818 final Key key = mKeys[index]; local
1064 final Key key = mKeys[keyIndex]; local
1379 Key key = mKeys[mRepeatKeyIndex]; local
    [all...]
  /frameworks/base/core/java/android/hardware/camera2/legacy/
LegacyMetadataMapper.java 747 // TODO: check if the underlying key is supported before listing a key as available
751 Key<?> availableKeys[] = new Key<?>[] {
790 List<Key<?>> characteristicsKeys = new ArrayList<>(Arrays.asList(availableKeys));
    [all...]
  /external/pdfium/third_party/lcms2-2.6/src/
cmscgats.c 93 struct _KeyVal* NextSubkey; // If key is a dictionary, points to the next item
94 char* Subkey; // If key is a dictionary, points to the subkey name
687 SYMBOL key; local
711 key = BinSrchKey(it8->id);
712 if (key == SNONE) it8->sy = SIDENT;
713 else it8->sy = key;
    [all...]
  /external/guice/core/test/com/googlecode/guice/
Jsr330Test.java 27 import com.google.inject.Key;
246 bind(B.class).annotatedWith(Names.named("2")).toProvider(Key.get(BProvider.class));
251 injector.getInstance(Key.get(B.class));
252 injector.getInstance(Key.get(B.class, Names.named("1")));
253 injector.getInstance(Key.get(B.class, Names.named("2")));
254 injector.getInstance(Key.get(B.class, Names.named("3")));
316 if(dep.getKey().equals(Key.get(Double.class))) {
318 } else if(dep.getKey().equals(Key.get(Integer.class))) {
409 public <T> com.google.inject.Provider<T> scope(Key<T> key,
    [all...]
  /external/skia/src/gpu/
GrLayerCache.cpp 90 SkTDynamicHash<GrCachedLayer, GrCachedLayer::Key>::Iter iter(&fLayerHash);
116 SkTDynamicHash<GrCachedLayer, GrCachedLayer::Key>::Iter iter(&fLayerHash);
135 const int* key,
140 GrCachedLayer* layer = new GrCachedLayer(pictureID, start, stop, srcIR, dstIR, initialMat, key,
147 const int* key, int keySize) {
149 return fLayerHash.find(GrCachedLayer::Key(pictureID, initialMat, key, keySize));
157 const int* key,
161 GrCachedLayer* layer = fLayerHash.find(GrCachedLayer::Key(pictureID, initialMat, key, keySize))
    [all...]
  /frameworks/base/keystore/java/android/security/keystore/
AndroidKeyStoreCipherSpiBase.java 38 import java.security.Key;
100 protected final void engineInit(int opmode, Key key, SecureRandom random)
106 init(opmode, key, random);
122 protected final void engineInit(int opmode, Key key, AlgorithmParameters params,
128 init(opmode, key, random);
140 protected final void engineInit(int opmode, Key key, AlgorithmParameterSpec params,
146 init(opmode, key, random)
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
KeyboardView.java 99 // The maximum key label width in the proportion to the key width.
113 private final HashSet<Key> mInvalidatedKeys = new HashSet<>();
300 for (final Key key : keyboard.getSortedKeys()) {
301 onDrawKey(key, canvas, paint);
304 for (final Key key : mInvalidatedKeys) {
305 if (!keyboard.hasKey(key)) {
309 // Need to redraw key's background on {@link #mOffscreenBuffer}
    [all...]
  /cts/tests/camera/src/android/hardware/camera2/cts/
CaptureResultTest.java 58 List<CaptureResult.Key<?>> mAllKeys;
127 List<CaptureResult.Key<?>> waiverkeys = getWaiverKeysForCamera();
148 * <li>2. Each key appeared in partial results must be unique across all partial results.
216 Set<CaptureResult.Key<?>> appearedPartialKeys =
217 new HashSet<CaptureResult.Key<?>>();
219 List<CaptureResult.Key<?>> partialKeys = partialResult.getKeys();
221 for (CaptureResult.Key<?> key : partialKeys) {
223 String.format("Key %s appears in multiple partial results",
224 key.getName())
    [all...]

Completed in 641 milliseconds

<<21222324252627282930>>