/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 | 44 public abstract class EncodedValueWriter<StringKey, TypeKey, FieldRefKey extends FieldReference, 48 @Nonnull private final StringSection<StringKey, ?> stringSection; 52 …@Nonnull private final AnnotationSection<StringKey, TypeKey, ?, AnnotationElement, EncodedValue> a… 56 @Nonnull StringSection<StringKey, ?> stringSection, in EncodedValueWriter() argument 60 …@Nonnull AnnotationSection<StringKey, TypeKey, ?, AnnotationElement, EncodedValue> annotationSecti… in EncodedValueWriter() argument 142 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() 96 …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 | 83 … StringKey extends CharSequence, StringRef extends StringReference, TypeKey extends CharSequence, 92 StringSectionType extends StringSection<StringKey, StringRef>, 93 TypeSectionType extends TypeSection<StringKey, TypeKey, TypeRef>, 94 ProtoSectionType extends ProtoSection<StringKey, TypeKey, ProtoRefKey, TypeListKey>, 95 FieldSectionType extends FieldSection<StringKey, TypeKey, FieldRefKey, FieldKey>, 96 … MethodSectionType extends MethodSection<StringKey, TypeKey, ProtoRefKey, MethodRefKey, MethodKey>, 97 …ClassSectionType extends ClassSection<StringKey, TypeKey, TypeListKey, ClassKey, FieldKey, MethodK… 100 …AnnotationSectionType extends AnnotationSection<StringKey, TypeKey, AnnotationKey, AnnotationEleme… 180 …protected class InternalEncodedValueWriter extends EncodedValueWriter<StringKey, TypeKey, FieldRef… 335 …List<Entry<? extends StringKey, Integer>> stringEntries = Lists.newArrayList(stringSection.getItem… [all …]
|
/external/dagger2/compiler/src/it/functional-tests/src/main/java/test/ |
D | MultibindingModule.java | 23 import dagger.mapkeys.StringKey; 38 @StringKey("foo") 44 @StringKey("bar") 50 @StringKey("foo") 56 @StringKey("bar") 160 @UnwrappedAnnotationKey(@StringKey("foo\n")) 167 value = @StringKey("foo"),
|
D | UnwrappedAnnotationKey.java | 19 import dagger.mapkeys.StringKey; 23 StringKey value(); in value()
|
D | WrappedAnnotationKey.java | 20 import dagger.mapkeys.StringKey; 24 StringKey value(); in value()
|
D | MultibindingComponent.java | 19 import dagger.mapkeys.StringKey; 50 Map<StringKey, String> unwrappedAnnotationKeyMap(); in unwrappedAnnotationKeyMap()
|
/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 | 553 if (m_descriptions.containsKey(new StringKey(name))) { in addDescription() 558 m_descriptions.put(new StringKey(name), pd); in addDescription() 586 m_descriptions.put(new StringKey(name), pd); in addDescription() 1397 aliasMap.put(new StringKey(name), progName); in addCommand() 1399 IKey alias = new StringKey(a); in addCommand() 1458 return FuzzyMap.findInMap(m_descriptions, new StringKey(arg), m_caseSensitiveOptions, in findParameterDescription() 1478 return FuzzyMap.findInMap(aliasMap, new StringKey(name), in findProgramName()
|
/external/libchrome/base/metrics/ |
D | statistics_recorder.h | 40 class StringKey : public StringPiece { 44 StringKey(const std::string& str) : StringPiece(str) {} in StringKey() function 45 StringKey(StringPiece str) : StringPiece(str) {} in StringKey() function 51 bool operator<(const StringKey& rhs) const { 67 typedef std::map<StringKey, HistogramBase*> HistogramMap;
|
/external/dagger2/compiler/src/it/functional-tests/src/main/java/test/subcomponent/ |
D | ParentMultibindingModule.java | 20 import dagger.mapkeys.StringKey; 45 @StringKey("parent key") 51 @StringKey("parent key")
|
D | ChildMultibindingModule.java | 20 import dagger.mapkeys.StringKey; 34 @StringKey("child key")
|
/external/dagger2/compiler/src/it/functional-tests/src/main/java/test/cycle/ |
D | Cycles.java | 23 import dagger.mapkeys.StringKey; 123 @StringKey("X") 129 @StringKey("Y")
|
/external/dagger2/compiler/src/it/functional-tests/src/test/java/test/ |
D | MultibindingTest.java | 19 import dagger.mapkeys.StringKey; 159 static StringKey testStringKey(String value) { in testStringKey() 170 StringKey value, int[] integers, ClassKey[] annotations, Class<? extends Number>[] classes) { in testWrappedAnnotationKey()
|
/external/dagger2/core/src/main/java/dagger/mapkeys/ |
D | StringKey.java | 28 public @interface StringKey { annotation
|