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

1 2

  /external/llvm/lib/Support/
StringPool.cpp 25 PooledStringPtr StringPool::intern(StringRef Key) { function in class:StringPool
  /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
  /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()),
  /bionic/libc/bionic/
pthread_internal.h 44 int intern; member in struct:pthread_internal_t
  /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
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());
StringIdsSection.java 102 * @param string {@code non-null;} the string to intern, as a regular Java
106 public StringIdItem intern(String string) { method in class:StringIdsSection
108 return intern(new StringIdItem(utf8));
114 * @param string {@code non-null;} the string to intern, as a {@link CstString}
117 public StringIdItem intern(CstString string) { method in class:StringIdsSection
119 return intern(new StringIdItem(utf8));
125 * @param string {@code non-null;} the string to intern, as a constant
128 public StringIdItem intern(CstUtf8 string) { method in class:StringIdsSection
129 return intern(new StringIdItem(string));
135 * @param string {@code non-null;} the string to intern
138 public StringIdItem intern(StringIdItem string) { method in class:StringIdsSection
161 public void intern(CstNat nat) { method in class:StringIdsSection
    [all...]
MixedItemSection.java 190 * @param item {@code non-null;} the item to intern
193 public <T extends OffsettedItem> T intern(T item) { method in class:MixedItemSection
  /dalvik/dx/src/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
StringIdsSection.java 97 * @param string {@code non-null;} the string to intern, as a regular Java
101 public StringIdItem intern(String string) { method in class:StringIdsSection
102 return intern(new StringIdItem(new CstString(string)));
108 * @param string {@code non-null;} the string to intern, as a constant
111 public StringIdItem intern(CstString string) { method in class:StringIdsSection
112 return intern(new StringIdItem(string));
118 * @param string {@code non-null;} the string to intern
121 public StringIdItem intern(StringIdItem string) { method in class:StringIdsSection
144 public void intern(CstNat nat) { method in class:StringIdsSection
145 intern(nat.getName())
    [all...]
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
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());
MixedItemSection.java 190 * @param item {@code non-null;} the item to intern
193 public <T extends OffsettedItem> T intern(T item) { method in class:MixedItemSection
  /frameworks/base/core/java/android/content/
IntentFilter.java 443 mActions.add(action.intern());
521 mDataTypes.add(str.intern());
526 mDataTypes.add(type.intern());
587 mDataSchemes.add(scheme.intern());
638 mHost = mWild ? host.substring(1).intern() : host;
724 if (port != null) port = port.intern();
725 mDataAuthorities.add(new AuthorityEntry(host.intern(), port));
791 mDataPaths.add(new PatternMatcher(path.intern(), type));
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/cst/
CstType.java 32 public static final CstType OBJECT = intern(Type.OBJECT);
35 public static final CstType BOOLEAN = intern(Type.BOOLEAN_CLASS);
38 public static final CstType BYTE = intern(Type.BYTE_CLASS);
41 public static final CstType CHARACTER = intern(Type.CHARACTER_CLASS);
44 public static final CstType DOUBLE = intern(Type.DOUBLE_CLASS);
47 public static final CstType FLOAT = intern(Type.FLOAT_CLASS);
50 public static final CstType LONG = intern(Type.LONG_CLASS);
53 public static final CstType INTEGER = intern(Type.INTEGER_CLASS);
56 public static final CstType SHORT = intern(Type.SHORT_CLASS);
59 public static final CstType VOID = intern(Type.VOID_CLASS)
125 public static CstType intern(Type type) { method in class:CstType
143 public static CstType intern(Class clazz) { method in class:CstType
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/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
92 Type.intern(descriptor.substring(startAt, at));
108 * Helper for {@link #intern} which returns an empty array to
164 public static Prototype intern(String descriptor, Type definer, method in class:Prototype
166 Prototype base = intern(descriptor);
201 // ...and intern it.
202 return intern(sb.toString());
378 * Puts the given instance in the intern table if it's not already
  /dalvik/dx/src/com/android/dx/rop/cst/
CstType.java 32 public static final CstType OBJECT = intern(Type.OBJECT);
35 public static final CstType BOOLEAN = intern(Type.BOOLEAN_CLASS);
38 public static final CstType BYTE = intern(Type.BYTE_CLASS);
41 public static final CstType CHARACTER = intern(Type.CHARACTER_CLASS);
44 public static final CstType DOUBLE = intern(Type.DOUBLE_CLASS);
47 public static final CstType FLOAT = intern(Type.FLOAT_CLASS);
50 public static final CstType LONG = intern(Type.LONG_CLASS);
53 public static final CstType INTEGER = intern(Type.INTEGER_CLASS);
56 public static final CstType SHORT = intern(Type.SHORT_CLASS);
59 public static final CstType VOID = intern(Type.VOID_CLASS)
125 public static CstType intern(Type type) { method in class:CstType
    [all...]
  /dalvik/dx/src/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

Completed in 352 milliseconds

1 2