OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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. */
114
// Free
interned
string cache.
120
// Free the
interned
string reference.
121
env->DeleteGlobalRef(current->
interned
);
191
/** Cache of
interned
strings. *
[
all
...]
Completed in 162 milliseconds