/external/dagger2/javatests/dagger/functional/ |
D | MultibindingModule.java | 27 import dagger.multibindings.StringKey; 41 @StringKey("foo") 48 @StringKey("bar") 55 @StringKey("foo") 62 @StringKey("bar") 191 @UnwrappedAnnotationKey(@StringKey("foo\n")) 199 value = @StringKey("foo"), 230 @StringKey("key") 238 @StringKey("key")
|
D | UnwrappedAnnotationKey.java | 20 import dagger.multibindings.StringKey; 24 StringKey value(); in value()
|
D | WrappedAnnotationKey.java | 21 import dagger.multibindings.StringKey; 25 StringKey value(); in value()
|
D | LazyMaps.java | 24 import dagger.multibindings.StringKey; 52 @StringKey("key")
|
D | MultibindingTest.java | 23 import dagger.multibindings.StringKey; 187 static StringKey testStringKey(String value) { in testStringKey() 198 StringKey value, int[] integers, ClassKey[] annotations, Class<? extends Number>[] classes) { in testWrappedAnnotationKey()
|
D | MultibindingComponent.java | 21 import dagger.multibindings.StringKey; 48 Map<StringKey, String> unwrappedAnnotationKeyMap(); in unwrappedAnnotationKeyMap()
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/ |
D | DebugWriter.java | 41 public class DebugWriter<StringKey extends CharSequence, TypeKey extends CharSequence> { 42 @Nonnull private final StringSection<StringKey, ?> stringSection; 43 @Nonnull private final TypeSection<StringKey, TypeKey, ?> typeSection; 48 DebugWriter(@Nonnull StringSection<StringKey, ?> stringSection, in DebugWriter() argument 49 @Nonnull TypeSection<StringKey, TypeKey, ?> typeSection, in DebugWriter() argument 62 @Nullable StringKey name, in writeStartLocal() 64 @Nullable StringKey signature) throws IOException { in writeStartLocal() 127 …public void writeSetSourceFile(int codeAddress, @Nullable StringKey sourceFile) throws IOException… in writeSetSourceFile()
|
D | EncodedValueWriter.java | 45 public abstract class EncodedValueWriter<StringKey, TypeKey, FieldRefKey extends FieldReference, 49 @Nonnull private final StringSection<StringKey, ?> stringSection; 55 …@Nonnull private final AnnotationSection<StringKey, TypeKey, ?, AnnotationElement, EncodedValue> a… 59 @Nonnull StringSection<StringKey, ?> stringSection, in EncodedValueWriter() argument 65 …@Nonnull AnnotationSection<StringKey, TypeKey, ?, AnnotationElement, EncodedValue> annotationSecti… in EncodedValueWriter() argument 149 public void writeString(@Nonnull StringKey value) throws IOException { in writeString()
|
D | ClassSection.java | 47 public interface ClassSection<StringKey extends CharSequence, TypeKey extends CharSequence, TypeLis… 57 @Nullable StringKey getSourceFile(@Nonnull ClassKey key); in getSourceFile() 76 @Nullable Iterable<? extends StringKey> getParameterNames(@Nonnull MethodKey key); in getParameterNames() 93 …void writeDebugItem(@Nonnull DebugWriter<StringKey, TypeKey> writer, DebugItem debugItem) throws I… in writeDebugItem() argument
|
D | StringSection.java | 38 public interface StringSection<StringKey, StringRef extends StringReference> extends NullableIndexS…
|
D | TypeSection.java | 38 public interface TypeSection<StringKey, TypeKey, TypeRef extends TypeReference> extends NullableInd… 39 @Nonnull StringKey getString(@Nonnull TypeKey key); in getString()
|
D | ProtoSection.java | 37 public interface ProtoSection<StringKey, TypeKey, ProtoKey, TypeListKey> extends IndexSection<Proto… 38 @Nonnull StringKey getShorty(@Nonnull ProtoKey key); in getShorty()
|
D | FieldSection.java | 38 public interface FieldSection<StringKey, TypeKey, FieldRefKey extends FieldReference, FieldKey> 42 @Nonnull StringKey getName(@Nonnull FieldRefKey key); in getName()
|
D | AnnotationSection.java | 37 public interface AnnotationSection<StringKey, TypeKey, AnnotationKey, AnnotationElement, EncodedVal… 43 @Nonnull StringKey getElementName(@Nonnull AnnotationElement element); in getElementName()
|
D | MethodSection.java | 39 public interface MethodSection<StringKey, TypeKey, ProtoRefKey extends MethodProtoReference, 46 @Nonnull StringKey getName(@Nonnull MethodRefKey key); in getName()
|
D | DexWriter.java | 81 … StringKey extends CharSequence, StringRef extends StringReference, TypeKey extends CharSequence, 93 StringSectionType extends StringSection<StringKey, StringRef>, 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, MethodK… 103 …AnnotationSectionType extends AnnotationSection<StringKey, TypeKey, AnnotationKey, AnnotationEleme… 220 …protected class InternalEncodedValueWriter extends EncodedValueWriter<StringKey, TypeKey, FieldRef… 410 …List<Entry<? extends StringKey, Integer>> stringEntries = Lists.newArrayList(stringSection.getItem… [all …]
|
/external/dagger2/java/dagger/example/atm/ |
D | UserCommandsModule.java | 22 import dagger.multibindings.StringKey; 29 @StringKey("deposit") 34 @StringKey("withdraw") 39 @StringKey("logout")
|
D | CommandsModule.java | 24 import dagger.multibindings.StringKey; 31 @StringKey("hello") 36 @StringKey("login")
|
/external/jcommander/src/main/java/com/beust/jcommander/ |
D | StringKey.java | 5 public class StringKey implements IKey { class 9 public StringKey(String name) { in StringKey() method in StringKey 39 StringKey other = (StringKey) obj; in equals()
|
D | JCommander.java | 574 if (descriptions.containsKey(new StringKey(name))) { in addDescription() 579 descriptions.put(new StringKey(name), pd); in addDescription() 607 descriptions.put(new StringKey(name), pd); in addDescription() 1493 aliasMap.put(new StringKey(name), progName); in addCommand() 1495 IKey alias = new StringKey(a); in addCommand() 1554 return FuzzyMap.findInMap(descriptions, new StringKey(arg), in findParameterDescription() 1564 return FuzzyMap.findInMap(aliasMap, new StringKey(name), in findProgramName()
|
/external/dagger2/javatests/dagger/functional/subcomponent/ |
D | MultibindingSubcomponents.java | 26 import dagger.multibindings.StringKey; 98 @StringKey("parent key") 111 @StringKey("parent key") 136 @StringKey("child key") 149 @StringKey("child key") 168 @StringKey("child key") 182 @StringKey("child key")
|
/external/dagger2/javatests/dagger/functional/multipackage/a/ |
D | AModule.java | 25 import dagger.multibindings.StringKey; 49 @StringKey("inaccessible")
|
/external/dagger2/javatests/dagger/functional/cycle/ |
D | Cycles.java | 26 import dagger.multibindings.StringKey; 125 @StringKey("X") 130 @StringKey("Y")
|
/external/dagger2/javatests/dagger/functional/producers/multibindings/ |
D | MultibindingModule.java | 30 import dagger.multibindings.StringKey; 65 @StringKey("a")
|
/external/dagger2/java/dagger/multibindings/ |
D | StringKey.java | 32 public @interface StringKey { annotation
|