HomeSort by relevance Sort by last modified time
    Searched defs:intern (Results 1 - 25 of 123) sorted by null

1 2 3 4 5

  /external/llvm/lib/Support/
StringPool.cpp 25 PooledStringPtr StringPool::intern(StringRef Key) { function in class:StringPool
  /external/guava/guava/src/com/google/common/collect/
Interner.java 22 * Provides equivalent behavior to {@link String#intern} for other immutable
34 * instance. That is, {@code intern(a).equals(a)} always holds, and {@code
35 * intern(a) == intern(b)} if and only if {@code a.equals(b)}. Note that
36 * {@code intern(a)} is permitted to return one instance now and a different
43 E intern(E sample); method in interface:Interner
  /external/jsilver/src/com/google/clearsilver/jsilver/data/
NativeStringInternStrategy.java 20 * Implementation of {@link StringInternStrategy} using Java String Pool and {@link String#intern()}
26 public String intern(String value) { method in class:NativeStringInternStrategy
27 return value.intern();
NoOpStringInternStrategy.java 25 public String intern(String value) { method in class:NoOpStringInternStrategy
StringInternStrategy.java 33 * that value == intern(value) will never be true.
38 String intern(String value); method in interface:StringInternStrategy
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/pool/
AnnotationSetPool.java 49 public void intern(@Nonnull Set<? extends Annotation> annotationSet) { method in class:AnnotationSetPool
54 annotationPool.intern(annotation);
StringPool.java 42 public void intern(@Nonnull CharSequence string) { method in class:StringPool
48 intern(string);
TypePool.java 48 public void intern(@Nonnull CharSequence type) { method in class:TypePool
52 stringPool.intern(typeString);
58 intern(type);
ClassPool.java 87 public void intern(@Nonnull ClassDef classDef) { method in class:ClassPool
95 typePool.intern(poolClassDef.getType());
97 typeListPool.intern(poolClassDef.getInterfaces());
107 fieldPool.intern(field);
114 annotationSetPool.intern(field.getAnnotations());
124 methodPool.intern(method);
127 annotationSetPool.intern(method.getAnnotations());
130 annotationSetPool.intern(parameter.getAnnotations());
134 annotationSetPool.intern(poolClassDef.getAnnotations());
149 stringPool.intern((StringReference)reference)
    [all...]
DexPool.java 88 ((ClassPool)dexPool.classSection).intern(classDef); method
159 typePool.intern(annotationEncodedValue.getType());
161 stringPool.intern(element.getName());
171 stringPool.intern(((StringEncodedValue)encodedValue).getValue());
174 typePool.intern(((TypeEncodedValue)encodedValue).getValue());
177 fieldPool.intern(((EnumEncodedValue)encodedValue).getValue());
180 fieldPool.intern(((FieldEncodedValue)encodedValue).getValue());
183 methodPool.intern(((MethodEncodedValue)encodedValue).getValue());
FieldPool.java 50 public void intern(@Nonnull FieldReference field) { method in class:FieldPool
53 typePool.intern(field.getDefiningClass());
54 stringPool.intern(field.getName());
55 typePool.intern(field.getType());
MethodPool.java 52 public void intern(@Nonnull MethodReference method) { method in class:MethodPool
55 typePool.intern(method.getDefiningClass());
56 protoPool.intern(method);
57 stringPool.intern(method.getName());
  /dalvik/dexgen/src/com/android/dexgen/rop/
StdField.java 48 this(CstType.intern(field.getDeclaringClass()),
51 CstType.intern(field.getType()).getDescriptor()),
64 this(CstType.intern(definingClass),
66 new CstNat(new CstUtf8(name), CstType.intern(type).getDescriptor()),
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
FieldIdsSection.java 95 * @param field {@code non-null;} the reference to intern
98 public FieldIdItem intern(CstFieldRef field) { method in class:FieldIdsSection
MethodIdsSection.java 95 * @param method {@code non-null;} the reference to intern
98 public MethodIdItem intern(CstBaseMethodRef method) { method in class:MethodIdsSection
ProtoIdsSection.java 87 * @param prototype {@code non-null;} the prototype to intern
90 public ProtoIdItem intern(Prototype prototype) { method in class:ProtoIdsSection
TypeIdsSection.java 100 * @param type {@code non-null;} the type to intern
103 public TypeIdItem intern(Type type) { method in class:TypeIdsSection
123 * @param type {@code non-null;} the type to intern
126 public TypeIdItem intern(CstType type) { method in class:TypeIdsSection
  /dalvik/dx/src/com/android/dx/dex/file/
FieldIdsSection.java 95 * @param field {@code non-null;} the reference to intern
98 public synchronized FieldIdItem intern(CstFieldRef field) { method in class:FieldIdsSection
MethodIdsSection.java 95 * @param method {@code non-null;} the reference to intern
98 public synchronized MethodIdItem intern(CstBaseMethodRef method) { method in class:MethodIdsSection
ProtoIdsSection.java 86 * @param prototype {@code non-null;} the prototype to intern
89 public ProtoIdItem intern(Prototype prototype) { method in class:ProtoIdsSection
StringIdsSection.java 96 * @param string {@code non-null;} the string to intern, as a regular Java
100 public StringIdItem intern(String string) { method in class:StringIdsSection
101 return intern(new StringIdItem(new CstString(string)));
107 * @param string {@code non-null;} the string to intern, as a constant
110 public StringIdItem intern(CstString string) { method in class:StringIdsSection
111 return intern(new StringIdItem(string));
117 * @param string {@code non-null;} the string to intern
120 public StringIdItem intern(StringIdItem string) { method in class:StringIdsSection
143 public void intern(CstNat nat) { method in class:StringIdsSection
144 intern(nat.getName())
    [all...]
TypeIdsSection.java 106 * @param type {@code non-null;} the type to intern
109 public TypeIdItem intern(Type type) { method in class:TypeIdsSection
129 * @param type {@code non-null;} the type to intern
132 public synchronized TypeIdItem intern(CstType type) { method in class:TypeIdsSection
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
FieldIdsSection.java 95 * @param field {@code non-null;} the reference to intern
98 public FieldIdItem intern(CstFieldRef field) { method in class:FieldIdsSection
MethodIdsSection.java 95 * @param method {@code non-null;} the reference to intern
98 public MethodIdItem intern(CstBaseMethodRef method) { method in class:MethodIdsSection
ProtoIdsSection.java 87 * @param prototype {@code non-null;} the prototype to intern
90 public ProtoIdItem intern(Prototype prototype) { method in class:ProtoIdsSection

Completed in 723 milliseconds

1 2 3 4 5