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

  /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/chromium_org/third_party/cython/src/Cython/Includes/cpython/
bytes.pxd 145 # object. If there is an existing interned string that is the same
148 # count of the interned string object), otherwise it leaves
159 # that has been interned, or a new (``owned'') reference to an
160 # earlier interned string object with the same value.
string.pxd 145 # object. If there is an existing interned string that is the same
148 # count of the interned string object), otherwise it leaves
159 # that has been interned, or a new (``owned'') reference to an
160 # earlier interned string object with the same value.
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/
TimelineModelImpl.js 252 var interned = this._stringPool[value];
253 if (typeof interned === "string")
254 record[name] = interned;
  /art/compiler/
image_writer.cc 546 // We don't count the savings from equal strings since these would get interned later anyways.
732 // if it is a string, we want to intern it if its not interned.
734 // we must be an interned string that was forward referenced and already assigned
739 mirror::String* const interned = obj->AsString()->Intern(); member in class:art::mirror
740 if (obj != interned) {
741 if (!IsImageBinSlotAssigned(interned)) {
742 // interned obj is after us, allocate its location early
743 AssignImageBinSlot(interned);
745 // point those looking for this object to the interned version.
746 SetImageBinSlot(obj, GetImageBinSlot(interned));
    [all...]
  /external/chromium_org/third_party/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 393 milliseconds