HomeSort by relevance Sort by last modified time
    Searched refs:intern (Results 76 - 100 of 209) sorted by null

1 2 34 5 6 7 8 9

  /external/smali/dexlib/src/main/java/org/jf/dexlib/
EncodedArrayItem.java 67 return dexFile.EncodedArraysSection.intern(encodedArrayItem);
  /libcore/luni/src/main/java/org/xml/sax/helpers/
NamespaceSupport.java 346 * @see java.lang.String#intern */
615 prefix = prefix.intern();
616 uri = uri.intern();
670 name[2] = qName.intern();
704 name[1] = local.intern();
  /dalvik/dx/src/com/android/dx/dex/file/
DexFile.java 441 * @param cst {@code non-null;} constant to possibly intern
445 stringIds.intern((CstString) cst);
447 typeIds.intern((CstType) cst);
449 methodIds.intern((CstBaseMethodRef) cst);
451 fieldIds.intern((CstFieldRef) cst);
453 fieldIds.intern(((CstEnumRef) cst).getFieldRef());
FieldIdsSection.java 95 * @param field {@code non-null;} the reference to intern
98 public FieldIdItem intern(CstFieldRef field) { method in class:FieldIdsSection
MemberIdItem.java 56 stringIds.intern(getRef().getNat().getName());
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
TypeListItem.java 71 typeIds.intern(list.getType(i));
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
DexFile.java 441 * @param cst {@code non-null;} constant to possibly intern
445 stringIds.intern((CstString) cst);
447 typeIds.intern((CstType) cst);
449 methodIds.intern((CstBaseMethodRef) cst);
451 fieldIds.intern((CstFieldRef) cst);
453 fieldIds.intern(((CstEnumRef) cst).getFieldRef());
FieldIdsSection.java 95 * @param field {@code non-null;} the reference to intern
98 public FieldIdItem intern(CstFieldRef field) { method in class:FieldIdsSection
MemberIdItem.java 56 stringIds.intern(getRef().getNat().getName());
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
TypeListItem.java 71 typeIds.intern(list.getType(i));
  /dalvik/dexgen/src/com/android/dexgen/rop/cst/
CstUtf8.java 185 this.string = string.intern();
200 this.string = utf8BytesToString(bytes).intern();
  /dalvik/dx/src/com/android/dx/rop/cst/
CstString.java 185 this.string = string.intern();
200 this.string = utf8BytesToString(bytes).intern();
  /external/dexmaker/src/dx/java/com/android/dx/rop/cst/
CstString.java 185 this.string = string.intern();
200 this.string = utf8BytesToString(bytes).intern();
  /libcore/luni/src/main/java/java/io/
ObjectStreamField.java 43 // Cached version of intern'ed type String
110 this.typeString = signature.replace('.', '/').intern();
249 typeString = str.intern();
  /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
MemberIdItem.java 58 stringIds.intern(getRef().getNat().getName());
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
TypeListItem.java 71 typeIds.intern(list.getType(i));
  /dalvik/dexgen/src/com/android/dexgen/rop/code/
RegisterSpec.java 36 /** {@code non-null;} intern table for instances */
53 * Intern the given triple as an instance of this class.
61 private static RegisterSpec intern(int reg, TypeBearer type, method in class:RegisterSpec
86 return intern(reg, type, null);
106 return intern(reg, type, local);
124 return intern(reg, type, local);
  /dalvik/dx/src/com/android/dx/rop/code/
RegisterSpec.java 36 /** {@code non-null;} intern table for instances */
56 * Intern the given triple as an instance of this class.
64 private static RegisterSpec intern(int reg, TypeBearer type, method in class:RegisterSpec
91 return intern(reg, type, null);
111 return intern(reg, type, local);
129 return intern(reg, type, local);

Completed in 2961 milliseconds

1 2 34 5 6 7 8 9