HomeSort by relevance Sort by last modified time
    Searched defs:interned (Results 1 - 3 of 3) sorted by null

  /dalvik/vm/native/
java_lang_String.cpp 46 StringObject* interned = dvmLookupInternedString(str); local
47 RETURN_PTR(interned);
  /dalvik/vm/
Intern.cpp 91 * interned string table.
93 StringObject* interned = lookupString(gDvm.internedStrings, key, strObj); local
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 strin
    [all...]
  /libcore/luni/src/main/native/
org_apache_harmony_xml_ExpatParser.cpp 38 * Wrapper around an interned string.
41 InternedString() : interned(NULL), bytes(NULL) {
48 /** The interned string itself. */
49 jstring interned; member in struct:InternedString
51 /** UTF-8 equivalent of the interned string. */
54 /** Hash code of the interned string. */
113 // Free interned string cache.
119 // Free the interned string reference.
120 env->DeleteGlobalRef(current->interned);
190 /** Cache of interned strings. *
    [all...]

Completed in 82 milliseconds