/external/bouncycastle/patches/ |
README | 19 - DERPrintableString interns its internal String values 20 - DERObjectIdentifier interns its internal String indentifer value
|
/dalvik/dexgen/src/com/android/dexgen/dex/file/ |
StringIdsSection.java | 100 * Interns an element into this instance. 112 * Interns an element into this instance. 123 * Interns an element into this instance. 133 * Interns an element into this instance. 157 * Interns the components of a name-and-type into this instance.
|
MixedItemSection.java | 67 private final HashMap<OffsettedItem, OffsettedItem> interns; field in class:MixedItemSection 93 this.interns = new HashMap<OffsettedItem, OffsettedItem>(100); 186 * Interns an item in this instance, returning the interned instance 196 OffsettedItem result = interns.get(item); 203 interns.put(item, item); 216 OffsettedItem result = interns.get(item);
|
TypeIdsSection.java | 98 * Interns an element into this instance. 121 * Interns an element into this instance.
|
FieldIdsSection.java | 93 * Interns an element into this instance.
|
MethodIdsSection.java | 93 * Interns an element into this instance.
|
ProtoIdsSection.java | 85 * Interns an element into this instance.
|
/dalvik/dx/src/com/android/dx/dex/file/ |
StringIdsSection.java | 95 * Interns an element into this instance. 106 * Interns an element into this instance. 116 * Interns an element into this instance. 140 * Interns the components of a name-and-type into this instance.
|
MixedItemSection.java | 67 private final HashMap<OffsettedItem, OffsettedItem> interns; field in class:MixedItemSection 93 this.interns = new HashMap<OffsettedItem, OffsettedItem>(100); 186 * Interns an item in this instance, returning the interned instance 196 OffsettedItem result = interns.get(item); 203 interns.put(item, item); 216 OffsettedItem result = interns.get(item);
|
TypeIdsSection.java | 98 * Interns an element into this instance. 121 * Interns an element into this instance.
|
FieldIdsSection.java | 93 * Interns an element into this instance.
|
MethodIdsSection.java | 93 * Interns an element into this instance.
|
ProtoIdsSection.java | 85 * Interns an element into this instance.
|
/external/dexmaker/src/dx/java/com/android/dx/dex/file/ |
StringIdsSection.java | 95 * Interns an element into this instance. 106 * Interns an element into this instance. 116 * Interns an element into this instance. 140 * Interns the components of a name-and-type into this instance.
|
MixedItemSection.java | 67 private final HashMap<OffsettedItem, OffsettedItem> interns; field in class:MixedItemSection 93 this.interns = new HashMap<OffsettedItem, OffsettedItem>(100); 186 * Interns an item in this instance, returning the interned instance 196 OffsettedItem result = interns.get(item); 203 interns.put(item, item); 216 OffsettedItem result = interns.get(item);
|
TypeIdsSection.java | 98 * Interns an element into this instance. 121 * Interns an element into this instance.
|
FieldIdsSection.java | 93 * Interns an element into this instance.
|
MethodIdsSection.java | 93 * Interns an element into this instance.
|
ProtoIdsSection.java | 85 * Interns an element into this instance.
|
/external/jsilver/src/com/google/clearsilver/jsilver/data/ |
StringInternStrategy.java | 25 * Interns a String object in a pool and returns a String equal to the one provided.
|
/dalvik/dx/src/com/android/dx/rop/cst/ |
CstType.java | 27 private static final HashMap<Type, CstType> interns = field in class:CstType 125 synchronized (interns) { 126 CstType cst = interns.get(type); 130 interns.put(type, cst);
|
/external/dexmaker/src/dx/java/com/android/dx/rop/cst/ |
CstType.java | 28 private static final HashMap<Type, CstType> interns = field in class:CstType 126 synchronized (interns) { 127 CstType cst = interns.get(type); 131 interns.put(type, cst);
|
/dalvik/dexgen/src/com/android/dexgen/rop/cst/ |
CstType.java | 28 private static final HashMap<Type, CstType> interns = field in class:CstType 126 CstType cst = interns.get(type); 130 interns.put(type, cst);
|
/dalvik/dexgen/src/com/android/dexgen/rop/type/ |
Prototype.java | 153 * Interns an instance, adding to the descriptor as necessary based 180 * Interns an instance which consists of the given number of
|
/dalvik/dx/src/com/android/dx/rop/type/ |
Prototype.java | 157 * Interns an instance, adding to the descriptor as necessary based 184 * Interns an instance which consists of the given number of
|