HomeSort by relevance Sort by last modified time
    Searched refs:StringKey (Results 1 - 17 of 17) sorted by null

  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/
StringSection.java 38 public interface StringSection<StringKey, StringRef extends StringReference> extends NullableIndexSection<StringKey> {
TypeSection.java 38 public interface TypeSection<StringKey, TypeKey, TypeRef extends TypeReference> extends NullableIndexSection<TypeKey> {
39 @Nonnull StringKey getString(@Nonnull TypeKey key);
ProtoSection.java 37 public interface ProtoSection<StringKey, TypeKey, ProtoKey, TypeListKey> extends IndexSection<ProtoKey> {
38 @Nonnull StringKey getShorty(@Nonnull ProtoKey key);
AnnotationSection.java 37 public interface AnnotationSection<StringKey, TypeKey, AnnotationKey, AnnotationElement, EncodedValue>
43 @Nonnull StringKey getElementName(@Nonnull AnnotationElement element);
FieldSection.java 38 public interface FieldSection<StringKey, TypeKey, FieldRefKey extends FieldReference, FieldKey>
42 @Nonnull StringKey getName(@Nonnull FieldRefKey key);
MethodSection.java 38 public interface MethodSection<StringKey, TypeKey, ProtoKey, MethodRefKey extends MethodReference, MethodKey>
43 @Nonnull StringKey getName(@Nonnull MethodRefKey key);
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,
49 @Nonnull TypeSection<StringKey, TypeKey, ?> typeSection,
62 @Nullable StringKey name,
64 @Nullable StringKey signature) throws IOException {
127 public void writeSetSourceFile(int codeAddress, @Nullable StringKey sourceFile) throws IOException {
EncodedValueWriter.java 42 public abstract class EncodedValueWriter<StringKey, TypeKey, FieldRefKey extends FieldReference,
45 @Nonnull private final StringSection<StringKey, ?> stringSection;
49 @Nonnull private final AnnotationSection<StringKey, TypeKey, ?, AnnotationElement, EncodedValue> annotationSection;
53 @Nonnull StringSection<StringKey, ?> stringSection,
57 @Nonnull AnnotationSection<StringKey, TypeKey, ?, AnnotationElement, EncodedValue> annotationSection) {
135 public void writeString(@Nonnull StringKey value) throws IOException {
ClassSection.java 47 public interface ClassSection<StringKey extends CharSequence, TypeKey extends CharSequence, TypeListKey, ClassKey,
57 @Nullable StringKey getSourceFile(@Nonnull ClassKey key);
76 @Nullable Iterable<? extends StringKey> getParameterNames(@Nonnull MethodKey key);
96 void writeDebugItem(@Nonnull DebugWriter<StringKey, TypeKey> writer, DebugItem debugItem) throws IOException;
DexWriter.java 77 StringKey extends CharSequence, StringRef extends StringReference, TypeKey extends CharSequence,
116 protected final StringSection<StringKey, StringRef> stringSection;
117 protected final TypeSection<StringKey, TypeKey, TypeRef> typeSection;
118 protected final ProtoSection<StringKey, TypeKey, ProtoKey, TypeListKey> protoSection;
119 protected final FieldSection<StringKey, TypeKey, FieldRefKey, FieldKey> fieldSection;
120 protected final MethodSection<StringKey, TypeKey, ProtoKey, MethodRefKey, MethodKey> methodSection;
121 protected final ClassSection<StringKey, TypeKey, TypeListKey, ClassKey, FieldKey, MethodKey, AnnotationSetKey,
125 protected final AnnotationSection<StringKey, TypeKey, AnnotationKey, AnnotationElement, EncodedValue> annotationSection;
129 StringSection<StringKey, StringRef> stringSection,
130 TypeSection<StringKey, TypeKey, TypeRef> typeSection
    [all...]
  /external/glide/library/src/main/java/com/bumptech/glide/load/engine/cache/
StringKey.java 8 public class StringKey implements Key {
11 public StringKey(String key) {
24 StringKey stringKey = (StringKey) o;
26 if (!key.equals(stringKey.key)) {
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
npruntime.cpp 49 // We use StringKey here as the key-type to avoid a string copy to
51 class StringKey {
53 explicit StringKey(const char* str) : m_string(str), m_length(strlen(str)) { }
54 StringKey() : m_string(0), m_length(0) { }
55 explicit StringKey(WTF::HashTableDeletedValueType) : m_string(hashTableDeletedValue()), m_length(0) { }
57 StringKey& operator=(const StringKey& other)
79 inline bool operator==(const StringKey& x, const StringKey& y)
90 // Implement WTF::DefaultHash<StringKey>::Hash interface
    [all...]
  /external/glide/library/src/main/java/com/bumptech/glide/volley/
VolleyDiskCacheWrapper.java 8 import com.bumptech.glide.load.engine.cache.StringKey;
41 InputStream result = diskCache.get(new StringKey(key));
53 diskCache.delete(new StringKey(key));
64 diskCache.put(new StringKey(key), new DiskCache.Writer() {
101 diskCache.delete(new StringKey(key));
  /external/openfst/src/include/fst/
synchronize.h 310 class StringKey{
322 typedef unordered_set<const String*, StringKey, StringEqual> StringSet;
arc-map.h 948 class StringKey {
955 typedef unordered_map<SW, Label, StringKey> Map;
    [all...]
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
synchronize.h 279 class StringKey{
291 typedef std::unordered_set<const String*, StringKey, StringEqual> StringSet;
map.h 831 class StringKey {
838 typedef std::unordered_map<SW, Label, StringKey> Map;

Completed in 163 milliseconds