OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:stringImpl
(Results
1 - 4
of
4
) sorted by null
/external/webkit/Source/WebCore/loader/
CrossOriginPreflightResultCache.cpp
55
StringImpl
*
stringImpl
= string.impl();
56
if (!
stringImpl
)
60
while (start <= end && isSpaceOrNewline((*
stringImpl
)[start]))
68
while (end && isSpaceOrNewline((*
stringImpl
)[end]))
/external/webkit/Source/WebCore/bindings/v8/
V8Binding.h
79
// Note: RefPtr is a must as we cache by
StringImpl
* equality, not identity
82
extern RefPtr<
StringImpl
> lastStringImpl;
84
v8::Local<v8::String> v8ExternalStringSlow(
StringImpl
*
stringImpl
);
91
StringImpl
*
stringImpl
= string.impl();
92
if (!
stringImpl
)
95
if (lastStringImpl.get() ==
stringImpl
) {
101
return v8ExternalStringSlow(
stringImpl
);
110
// Enables caching v8 wrappers created for WTF::
StringImpl
. Currently this cache require
[
all
...]
V8Binding.cpp
352
return
StringImpl
::empty();
414
return
StringImpl
::empty();
421
return
StringImpl
::empty();
449
typedef HashMap<
StringImpl
*, v8::String*> StringCache;
461
StringImpl
*
stringImpl
= static_cast<
StringImpl
*>(parameter);
462
ASSERT(getStringCache().contains(
stringImpl
));
463
getStringCache().remove(
stringImpl
);
465
stringImpl
->deref()
[
all
...]
/external/webkit/Source/WebCore/bindings/js/
JSDOMBinding.h
211
JSC::JSValue jsStringSlowCase(JSC::ExecState*, JSStringCache&,
StringImpl
*);
299
StringImpl
*
stringImpl
= s.impl();
300
if (!
stringImpl
|| !
stringImpl
->length())
303
if (
stringImpl
->length() == 1 &&
stringImpl
->characters()[0] <= 0xFF)
307
if (JSC::JSString* wrapper = stringCache.get(
stringImpl
))
310
return jsStringSlowCase(exec, stringCache,
stringImpl
);
Completed in 330 milliseconds