HomeSort by relevance Sort by last modified time
    Searched refs:interned (Results 1 - 4 of 4) 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. */
114 // Free interned string cache.
120 // Free the interned string reference.
121 env->DeleteGlobalRef(current->interned);
191 /** Cache of interned strings. *
    [all...]
  /external/libxslt/libxslt/
transform.c 801 * @interned: the string is in the target doc dictionary
810 xmlNodePtr cur, int interned)
901 } else if ((interned) && (target != NULL) &&
    [all...]

Completed in 72 milliseconds