OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:encodingstr
(Results
1 - 2
of
2
) sorted by null
/external/webkit/Source/WebKit/android/WebCoreSupport/
UrlInterceptResponse.cpp
102
jstring
encodingStr
= (jstring) env->GetObjectField(response, encoding);
109
if (
encodingStr
) {
110
const char* s = env->GetStringUTFChars(
encodingStr
, NULL);
111
m_encoding.assign(s, env->GetStringUTFLength(
encodingStr
));
112
env->ReleaseStringUTFChars(
encodingStr
, s);
118
env->DeleteLocalRef(
encodingStr
);
/external/webkit/Source/WebKit/android/jni/
WebCoreResourceLoader.cpp
157
WTF::String
encodingStr
;
164
encodingStr
= jstringToWtfString(env, encoding);
165
LOGV("Response setTextEncodingName: %s",
encodingStr
.latin1().data());
169
encodingStr
, WTF::String());
Completed in 42 milliseconds