HomeSort by relevance Sort by last modified time
    Searched refs:typeKey (Results 1 - 25 of 39) sorted by null

1 2

  /external/guice/extensions/multibindings/src/com/google/inject/multibindings/
OptionalBinder.java 297 private final Key<T> typeKey;
321 private RealOptionalBinder(Binder binder, Key<T> typeKey) {
323 this.typeKey = checkNotNull(typeKey);
324 TypeLiteral<T> literal = typeKey.getTypeLiteral();
325 this.optionalKey = typeKey.ofType(optionalOf(literal));
326 this.optionalJavaxProviderKey = typeKey.ofType(optionalOfJavaxProvider(literal));
327 this.optionalProviderKey = typeKey.ofType(optionalOfProvider(literal));
329 String name = RealElement.nameOf(typeKey);
330 this.defaultKey = Key.get(typeKey.getTypeLiteral(), new DefaultImpl(name))
    [all...]
  /external/oj-libjdwp/src/share/back/
StackFrameImpl.c 54 FrameNumber fnum, jint slot, jbyte typeKey)
59 if (isObjectTag(typeKey)) {
79 (void)outStream_writeByte(out, typeKey);
80 switch (typeKey) {
147 FrameNumber fnum, jint slot, jbyte typeKey)
152 if (isObjectTag(typeKey)) {
160 switch (typeKey) {
254 jbyte typeKey;
260 typeKey = inStream_readByte(in);
265 serror = writeVariableValue(env, out, thread, fnum, slot, typeKey);
    [all...]
inStream.c 419 jbyte typeKey = inStream_readByte(stream);
425 if (isObjectTag(typeKey)) {
428 switch (typeKey) {
466 *typeKeyPtr = typeKey;
outStream.c 332 jbyte typeKey, jvalue value)
334 if (typeKey == JDWP_TAG(OBJECT)) {
337 (void)outStream_writeByte(out, typeKey);
339 if (isObjectTag(typeKey)) {
342 switch (typeKey) {
outStream.h 79 jbyte typeKey, jvalue value);
eventHelper.c 66 char typeKey; /* Not used for method entry events */
67 /* If typeKey is 0, then no return value is needed */
466 if (command->typeKey) {
474 if (command->typeKey) {
475 (void)outStream_writeValue(env, out, command->typeKey, command->returnValue);
476 if (isObjectTag(command->typeKey) &&
    [all...]
ArrayReferenceImpl.c 271 jbyte typeKey;
280 typeKey = componentSignature[0];
282 (void)outStream_writeByte(out, typeKey);
285 if (isObjectTag(typeKey)) {
288 switch (typeKey) {
ThreadReferenceImpl.c 575 jbyte typeKey;
589 typeKey = inStream_readByte(in);
594 if (isObjectTag(typeKey)) {
599 switch (typeKey) {
util.c 357 jbyte typeKey;
365 typeKey = signature[0];
372 if ((typeKey != JDWP_TAG(OBJECT)) && (typeKey != JDWP_TAG(ARRAY))) {
373 (void)outStream_writeByte(out, typeKey);
376 switch (typeKey) {
433 jbyte typeKey;
440 typeKey = signature[0];
447 if ((typeKey != JDWP_TAG(OBJECT)) && (typeKey != JDWP_TAG(ARRAY)))
    [all...]
ReferenceTypeImpl.c 258 jbyte typeKey;
264 * the same typeKey, so just compute it once.
266 typeKey = specificTypeKey(env, batch.objects[0]);
272 (void)outStream_writeByte(out, typeKey);
  /external/icu/android_icu4j/src/main/java/android/icu/text/
BreakIteratorFactory.java 142 String typeKey = (typeKeyExt == null)? KIND_NAMES[kind]: KIND_NAMES[kind] + typeKeyExt;
143 String brkfname = rb.getStringWithFallback("boundaries/" + typeKey);
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
BreakIteratorFactory.java 141 String typeKey = (typeKeyExt == null)? KIND_NAMES[kind]: KIND_NAMES[kind] + typeKeyExt;
142 String brkfname = rb.getStringWithFallback("boundaries/" + typeKey);
  /external/autotest/frontend/client/src/autotest/tko/
ParameterizedFieldListPresenter.java 138 String typeKey = baseKey + "_type";
140 if (!arguments.containsKey(typeKey) || !arguments.containsKey(valueKey)) {
144 String typeName = arguments.get(typeKey), value = arguments.get(valueKey);
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
FrameType.java 414 String typeKey = FrameType.keyValueForType(elementId, dimensions, accessHints, clazz);
415 FrameType type = mTypeCache.get(typeKey);
418 mTypeCache.put(typeKey, type);
  /external/guice/extensions/throwingproviders/src/com/google/inject/throwingproviders/
ThrowingProviderBinder.java 221 final Key<? extends T> typeKey;
228 typeKey = Key.get(cxtorLiteral, UniqueAnnotations.create());
229 binder.bind(typeKey).toConstructor((Constructor) cxtor).in(Scopes.NO_SCOPE);
230 typeProvider = binder.getProvider((Key<T>) typeKey);
234 typeKey = null;
261 return ImmutableSet.<Dependency<?>>of(Dependency.get(typeKey));
  /external/icu/icu4c/source/i18n/
plurrule.cpp 663 const char *typeKey;
666 typeKey = "locales";
669 typeKey = "locales_ordinals";
676 LocalUResourceBundlePointer locRes(ures_getByKey(rb.getAlias(), typeKey, NULL, &errCode));
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/
DexWriter.java 84 StringKey extends CharSequence, StringRef extends StringReference, TypeKey extends CharSequence,
94 TypeSectionType extends TypeSection<StringKey, TypeKey, TypeRef>,
95 ProtoSectionType extends ProtoSection<StringKey, TypeKey, ProtoRefKey, TypeListKey>,
96 FieldSectionType extends FieldSection<StringKey, TypeKey, FieldRefKey, FieldKey>,
97 MethodSectionType extends MethodSection<StringKey, TypeKey, ProtoRefKey, MethodRefKey, MethodKey>,
98 ClassSectionType extends ClassSection<StringKey, TypeKey, TypeListKey, ClassKey, FieldKey, MethodKey,
100 TypeListSectionType extends TypeListSection<TypeKey, TypeListKey>,
101 AnnotationSectionType extends AnnotationSection<StringKey, TypeKey, AnnotationKey, AnnotationElement,
181 protected class InternalEncodedValueWriter extends EncodedValueWriter<StringKey, TypeKey, FieldRefKey, MethodRefKey,
223 for (Entry<? extends TypeKey, Integer> typeReference: typeSection.getItems())
    [all...]
  /prebuilts/tools/common/m2/repository/com/google/dagger/dagger-compiler/2.6/
dagger-compiler-2.6.jar 
  /prebuilts/tools/common/m2/repository/com/google/dagger/dagger-compiler/2.7/
dagger-compiler-2.7.jar 
  /prebuilts/tools/common/m2/repository/org/jboss/forge/roaster/roaster-jdt/2.18.7.Final/
roaster-jdt-2.18.7.Final.jar 
  /prebuilts/tools/common/m2/repository/org/smali/dexlib2/2.1.3/
dexlib2-2.1.3.jar 
  /prebuilts/tools/common/m2/repository/xhtmlrenderer/xhtmlrenderer/R8rc1/
xhtmlrenderer-R8rc1.jar 
  /external/guice/extensions/struts2/lib/
core-3.1.1.jar 
  /external/icu/tools/srcgen/currysrc/libs/
org.eclipse.jdt.core_3.11.0.v20150602-1242.jar 
  /prebuilts/devtools/tools/lib/
ecj-4.4.jar 

Completed in 4697 milliseconds

1 2