Home
last modified time | relevance | path

Searched refs:StringKey (Results 1 – 22 of 22) sorted by relevance

/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/
DDebugWriter.java41 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()
DEncodedValueWriter.java44 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()
DClassSection.java47 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
DStringSection.java38 public interface StringSection<StringKey, StringRef extends StringReference> extends NullableIndexS…
DTypeSection.java38 public interface TypeSection<StringKey, TypeKey, TypeRef extends TypeReference> extends NullableInd…
39 @Nonnull StringKey getString(@Nonnull TypeKey key); in getString()
DProtoSection.java37 public interface ProtoSection<StringKey, TypeKey, ProtoKey, TypeListKey> extends IndexSection<Proto…
38 @Nonnull StringKey getShorty(@Nonnull ProtoKey key); in getShorty()
DFieldSection.java38 public interface FieldSection<StringKey, TypeKey, FieldRefKey extends FieldReference, FieldKey>
42 @Nonnull StringKey getName(@Nonnull FieldRefKey key); in getName()
DAnnotationSection.java37 public interface AnnotationSection<StringKey, TypeKey, AnnotationKey, AnnotationElement, EncodedVal…
43 @Nonnull StringKey getElementName(@Nonnull AnnotationElement element); in getElementName()
DMethodSection.java39 public interface MethodSection<StringKey, TypeKey, ProtoRefKey extends MethodProtoReference,
46 @Nonnull StringKey getName(@Nonnull MethodRefKey key); in getName()
DDexWriter.java83StringKey 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/
DMultibindingModule.java23 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"),
DUnwrappedAnnotationKey.java19 import dagger.mapkeys.StringKey;
23 StringKey value(); in value()
DWrappedAnnotationKey.java20 import dagger.mapkeys.StringKey;
24 StringKey value(); in value()
DMultibindingComponent.java19 import dagger.mapkeys.StringKey;
50 Map<StringKey, String> unwrappedAnnotationKeyMap(); in unwrappedAnnotationKeyMap()
/external/jcommander/src/main/java/com/beust/jcommander/
DStringKey.java5 public class StringKey implements IKey { class
9 public StringKey(String name) { in StringKey() method in StringKey
39 StringKey other = (StringKey) obj; in equals()
DJCommander.java553 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/
Dstatistics_recorder.h40 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/
DParentMultibindingModule.java20 import dagger.mapkeys.StringKey;
45 @StringKey("parent key")
51 @StringKey("parent key")
DChildMultibindingModule.java20 import dagger.mapkeys.StringKey;
34 @StringKey("child key")
/external/dagger2/compiler/src/it/functional-tests/src/main/java/test/cycle/
DCycles.java23 import dagger.mapkeys.StringKey;
123 @StringKey("X")
129 @StringKey("Y")
/external/dagger2/compiler/src/it/functional-tests/src/test/java/test/
DMultibindingTest.java19 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/
DStringKey.java28 public @interface StringKey { annotation