OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:interned
(Results
1 - 6
of
6
) 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
...]
/art/compiler/
image_writer.cc
347
// if it is a string, we want to intern it if its not
interned
.
349
// we must be an
interned
string that was forward referenced and already assigned
354
SirtRef<String>
interned
(Thread::Current(), obj->AsString()->Intern());
355
if (obj !=
interned
.get()) {
356
if (!image_writer->IsImageOffsetAssigned(
interned
.get())) {
357
//
interned
obj is after us, allocate its location early
358
image_writer->AssignImageOffset(
interned
.get());
360
// point those looking for this object to the
interned
version.
361
image_writer->SetImageOffset(obj, image_writer->GetImageOffset(
interned
.get()));
364
// else (obj ==
interned
), nothing to do but fall through to the normal cas
[
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
...]