Searched defs:ScriptStringImpl (Results 1 - 2 of 2) sorted by relevance

/external/webkit/WebCore/bindings/v8/
H A DScriptStringImpl.h47 class ScriptStringImpl : public RefCounted<ScriptStringImpl> { class in namespace:WebCore
49 static PassRefPtr<ScriptStringImpl> create(const String& s)
51 return adoptRef(new ScriptStringImpl(s));
54 static PassRefPtr<ScriptStringImpl> create(const char* s)
56 return adoptRef(new ScriptStringImpl(s));
69 ScriptStringImpl(const String& s);
70 ScriptStringImpl(const char* s);
H A DScriptStringImpl.cpp32 #include "ScriptStringImpl.h"
38 ScriptStringImpl::ScriptStringImpl(const String& s) function in class:WebCore::ScriptStringImpl
44 ScriptStringImpl::ScriptStringImpl(const char* s) function in class:WebCore::ScriptStringImpl
50 String ScriptStringImpl::toString() const
55 bool ScriptStringImpl::isNull() const
60 size_t ScriptStringImpl::size() const
65 void ScriptStringImpl::append(const String& s)

Completed in 45 milliseconds