HomeSort by relevance Sort by last modified time
    Searched refs:ScriptState (Results 26 - 50 of 64) sorted by null

12 3

  /external/webkit/WebCore/bindings/js/
ScriptValue.cpp 45 bool ScriptValue::getString(ScriptState* scriptState, String& result) const
51 if (!m_value.get().getString(scriptState, ustring))
57 bool ScriptValue::isEqual(ScriptState* scriptState, const ScriptValue& anotherValue) const
62 return JSValueIsEqual(toRef(scriptState), toRef(scriptState, jsValue()), toRef(scriptState, anotherValue.jsValue()), 0);
86 PassRefPtr<SerializedScriptValue> ScriptValue::serialize(ScriptState* scriptState)
    [all...]
JSNodeFilterCondition.h 41 virtual short acceptNode(ScriptState*, Node*) const;
ScriptArray.cpp 40 ScriptArray::ScriptArray(ScriptState* scriptState, JSArray* object)
41 : ScriptObject(scriptState, object)
45 static bool handleException(ScriptState* scriptState)
47 if (!scriptState->hadException())
50 reportException(scriptState, scriptState->exception());
56 if (value.scriptState() != m_scriptState) {
106 ScriptArray ScriptArray::createNew(ScriptState* scriptState
    [all...]
ScriptObject.cpp 48 ScriptObject::ScriptObject(ScriptState* scriptState, JSObject* object)
50 , m_scriptState(scriptState)
54 static bool handleException(ScriptState* scriptState)
56 if (!scriptState->hadException())
59 reportException(scriptState, scriptState->exception());
73 if (value.scriptState() != m_scriptState) {
147 ScriptObject ScriptObject::createNew(ScriptState* scriptState
    [all...]
ScriptFunctionCall.h 36 #include "ScriptState.h"
72 ScriptState* m_exec;
  /external/webkit/WebCore/bindings/v8/
ScriptScope.cpp 34 #include "ScriptState.h"
40 ScriptScope::ScriptScope(ScriptState* scriptState, bool reportExceptions)
41 : m_context(scriptState->context())
43 , m_scriptState(scriptState)
ScriptValue.h 35 #include "ScriptState.h"
97 bool isEqual(ScriptState*, const ScriptValue& value) const
127 PassRefPtr<SerializedScriptValue> serialize(ScriptState*);
128 static ScriptValue deserialize(ScriptState*, SerializedScriptValue*);
148 bool getString(ScriptState*, String& result) const { return getString(result); }
150 String toString(ScriptState*) const;
ScriptCallStack.cpp 58 , m_scriptState(ScriptState::current())
ScriptObject.cpp 35 #include "ScriptState.h"
49 ScriptObject::ScriptObject(ScriptState* scriptState, v8::Handle<v8::Object> v8Object)
51 , m_scriptState(scriptState)
70 if (value.scriptState() != m_scriptState) {
135 ScriptObject ScriptObject::createNew(ScriptState* scriptState)
137 ScriptScope scope(scriptState);
138 return ScriptObject(scriptState, v8::Object::New());
141 bool ScriptGlobalObject::set(ScriptState* scriptState, const char* name, const ScriptObject& value
    [all...]
V8Utilities.h 42 class ScriptState;
57 ScriptExecutionContext* getScriptExecutionContext(ScriptState*);
62 void reportException(ScriptState*, v8::TryCatch&);
ScriptArray.cpp 35 #include "ScriptState.h"
46 ScriptArray::ScriptArray(ScriptState* scriptState, v8::Handle<v8::Array> v8Array)
47 : ScriptObject(scriptState, v8Array)
53 if (value.scriptState() != m_scriptState) {
103 ScriptArray ScriptArray::createNew(ScriptState* scriptState)
105 ScriptScope scope(scriptState);
106 return ScriptArray(scriptState, v8::Array::New());
V8NodeFilterCondition.cpp 36 #include "ScriptState.h"
61 short V8NodeFilterCondition::acceptNode(ScriptState* state, Node* node) const
V8Utilities.cpp 39 #include "ScriptState.h"
128 ScriptExecutionContext* getScriptExecutionContext(ScriptState* scriptState)
137 if (scriptState) {
139 frame = V8Proxy::retrieveFrame(scriptState->context());
149 void reportException(ScriptState* scriptState, v8::TryCatch& exceptionCatcher)
171 ScriptExecutionContext* context = getScriptExecutionContext(scriptState);
ScriptEventListener.cpp 109 String getEventListenerHandlerBody(ScriptExecutionContext* context, ScriptState* scriptState, EventListener* listener)
114 ScriptScope scope(scriptState);
  /external/webkit/WebCore/inspector/
ConsoleMessage.h 36 #include "ScriptState.h"
55 bool isEqual(ScriptState*, ConsoleMessage* msg) const;
67 ScriptState* m_scriptState;
InjectedScript.h 59 friend InjectedScript InjectedScriptHost::injectedScriptFor(ScriptState*);
InspectorFrontend.h 35 #include "ScriptState.h"
70 void addConsoleMessage(const ScriptObject& messageObj, const Vector<ScriptString>& frames, ScriptState*, const Vector<ScriptValue> arguments, const String& message);
144 ScriptState* scriptState() const { return m_webInspector.scriptState(); }
InjectedScriptHost.h 36 #include "ScriptState.h"
88 InjectedScript injectedScriptFor(ScriptState*);
  /external/webkit/WebCore/dom/
Traversal.cpp 41 short Traversal::acceptNode(ScriptState* state, Node* node) const
Traversal.h 28 #include "ScriptState.h"
46 short acceptNode(ScriptState*, Node*) const;
NodeIterator.h 45 PassRefPtr<Node> nextNode(ScriptState*, ExceptionCode&);
46 PassRefPtr<Node> previousNode(ScriptState*, ExceptionCode&);
TreeWalker.cpp 31 #include "ScriptState.h"
57 Node* TreeWalker::parentNode(ScriptState* state)
73 Node* TreeWalker::firstChild(ScriptState* state)
106 Node* TreeWalker::lastChild(ScriptState* state)
139 Node* TreeWalker::previousSibling(ScriptState* state)
175 Node* TreeWalker::nextSibling(ScriptState* state)
211 Node* TreeWalker::previousNode(ScriptState* state)
250 Node* TreeWalker::nextNode(ScriptState* state)
NodeFilter.h 73 short acceptNode(ScriptState*, Node*) const;
NodeIterator.cpp 31 #include "ScriptState.h"
87 PassRefPtr<Node> NodeIterator::nextNode(ScriptState* state, ExceptionCode& ec)
116 PassRefPtr<Node> NodeIterator::previousNode(ScriptState* state, ExceptionCode& ec)
  /external/webkit/WebCore/bindings/v8/custom/
V8NodeIteratorCustom.cpp 35 #include "ScriptState.h"
46 static inline v8::Handle<v8::Value> toV8(PassRefPtr<Node> object, ExceptionCode ec, ScriptState* state)

Completed in 951 milliseconds

12 3