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

1 23 4 5 6 7 8 9

  /external/apache-xml/src/main/java/org/apache/xml/utils/
NamespaceSupport2.java 243 * @see java.lang.String#intern */
545 prefix = prefix.intern();
546 uri = uri.intern();
609 name[1] = qName.intern();
627 name[1] = local.intern();
628 name[2] = qName.intern();
  /external/dexmaker/src/dx/java/com/android/dx/rop/type/
Prototype.java 27 /** {@code non-null;} intern table mapping string descriptors to instances */
53 public static Prototype intern(String descriptor) { method in class:Prototype
96 Type.intern(descriptor.substring(startAt, at));
112 * Helper for {@link #intern} which returns an empty array to
168 public static Prototype intern(String descriptor, Type definer, method in class:Prototype
170 Prototype base = intern(descriptor);
205 // ...and intern it.
206 return intern(sb.toString());
382 * Puts the given instance in the intern table if it's not already
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
ProtoIdItem.java 119 typeIds.intern(prototype.getReturnType());
120 stringIds.intern(shortForm);
123 parameterTypes = typeLists.intern(parameterTypes);
ClassDefItem.java 137 typeIds.intern(thisClass);
146 byteData.intern(new EncodedArrayItem(staticValues));
151 typeIds.intern(superclass);
155 interfaces = typeLists.intern(interfaces);
159 stringIds.intern(sourceFile);
164 annotationsDirectory = wordData.intern(annotationsDirectory);
DexFile.java 420 * @param cst {@code non-null;} constant to possibly intern
424 stringIds.intern((CstString) cst);
426 stringIds.intern((CstUtf8) cst);
428 typeIds.intern((CstType) cst);
430 methodIds.intern((CstBaseMethodRef) cst);
432 fieldIds.intern((CstFieldRef) cst);
434 fieldIds.intern(((CstEnumRef) cst).getFieldRef());
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
TypeIdItem.java 55 file.getStringIds().intern(getDefiningClass().getDescriptor());
  /dalvik/dx/src/com/android/dx/dex/file/
ProtoIdItem.java 116 typeIds.intern(prototype.getReturnType());
117 stringIds.intern(shortForm);
120 parameterTypes = typeLists.intern(parameterTypes);
ClassDefItem.java 135 typeIds.intern(thisClass);
144 byteData.intern(new EncodedArrayItem(staticValues));
149 typeIds.intern(superclass);
153 interfaces = typeLists.intern(interfaces);
157 stringIds.intern(sourceFile);
162 annotationsDirectory = wordData.intern(annotationsDirectory);
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
TypeIdItem.java 53 file.getStringIds().intern(getDefiningClass().getDescriptor());
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
ProtoIdItem.java 116 typeIds.intern(prototype.getReturnType());
117 stringIds.intern(shortForm);
120 parameterTypes = typeLists.intern(parameterTypes);
ClassDefItem.java 135 typeIds.intern(thisClass);
144 byteData.intern(new EncodedArrayItem(staticValues));
149 typeIds.intern(superclass);
153 interfaces = typeLists.intern(interfaces);
157 stringIds.intern(sourceFile);
162 annotationsDirectory = wordData.intern(annotationsDirectory);
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
TypeIdItem.java 53 file.getStringIds().intern(getDefiningClass().getDescriptor());
  /external/tagsoup/src/org/ccil/cowan/tagsoup/
ElementType.java 79 return ("urn:x-prefix:" + prefix).intern();
94 return name.substring(colon+1).intern();
198 name = name.intern();
  /external/smali/dexlib/src/main/java/org/jf/dexlib/
TypeIdItem.java 67 return dexFile.TypeIdsSection.intern(typeIdItem);
85 return dexFile.TypeIdsSection.intern(typeIdItem);
  /libcore/luni/src/main/java/org/xml/sax/helpers/
ParserAdapter.java 490 contentHandler.startElement("", "", qName.intern(),
561 attQName.intern(), type, value);
564 attQName.intern(), type, value);
615 contentHandler.endElement("", "", qName.intern());
752 parts[2] = qName.intern();
932 return qAtts.getName(i).intern();
944 return qAtts.getType(i).intern();
1014 return qAtts.getType(qName).intern();
  /dalvik/dexgen/src/com/android/dexgen/rop/cst/
CstBaseMethodRef.java 50 this.prototype = Prototype.intern(descriptor);
CstNat.java 144 return Type.intern(descriptor.getString());
  /dalvik/dx/src/com/android/dx/rop/cst/
CstBaseMethodRef.java 50 this.prototype = Prototype.intern(descriptor);
CstNat.java 144 return Type.intern(descriptor.getString());
  /external/dexmaker/src/dx/java/com/android/dx/rop/cst/
CstBaseMethodRef.java 50 this.prototype = Prototype.intern(descriptor);
CstNat.java 144 return Type.intern(descriptor.getString());
  /external/llvm/include/llvm/Support/
StringPool.h 13 // To intern a string:
16 // PooledStringPtr Str = Pool.intern("wakka wakka");
40 /// StringPool - An interned string pool. Use the intern method to add a
64 /// intern - Adds a string to the pool and returns a reference-counted
67 PooledStringPtr intern(StringRef Str);

Completed in 1566 milliseconds

1 23 4 5 6 7 8 9