Home | History | Annotate | Download | only in vm

Lines Matching refs:interned

91              * interned string table.
93 StringObject* interned = lookupString(gDvm.internedStrings, key, strObj);
94 if (interned != NULL) {
96 * A match was found in the interned table. Move the
99 dvmHashTableRemove(gDvm.internedStrings, key, interned);
100 found = insertString(gDvm.literalStrings, key, interned);
101 assert(found == interned);
104 * No match in the literal table or the interned
130 * Find an entry in the interned string table.
150 * Returns true if the object is a weak interned string. Any string
151 * interned by the user is weak.