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

12 3 4

  /external/webkit/Source/WebCore/bindings/cpp/
WebNativeNodeFilterCondition.cpp 37 short WebNativeNodeFilterCondition::acceptNode(WebCore::ScriptState*, WebCore::Node* node) const
WebNativeNodeFilterCondition.h 36 virtual short acceptNode(WebCore::ScriptState*, WebCore::Node*) const;
  /external/webkit/Source/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)
ScriptCallStackFactory.h 41 class ScriptState;
ScriptValue.cpp 41 PassRefPtr<SerializedScriptValue> ScriptValue::serialize(ScriptState* scriptState)
43 ScriptScope scope(scriptState);
47 ScriptValue ScriptValue::deserialize(ScriptState* scriptState, SerializedScriptValue* value)
49 ScriptScope scope(scriptState);
65 String ScriptValue::toString(ScriptState*) const
128 PassRefPtr<InspectorValue> ScriptValue::toInspectorValue(ScriptState* scriptState) const
132 v8::Context::Scope contextScope(scriptState->context())
    [all...]
ScriptCallStackFactory.cpp 108 ScriptState* state = ScriptState::forContext(context);
  /external/webkit/Source/WebCore/inspector/
ScriptDebugListener.h 35 #include "ScriptState.h"
46 virtual void didPause(ScriptState*) = 0;
ScriptArguments.cpp 38 PassRefPtr<ScriptArguments> ScriptArguments::create(ScriptState* scriptState, Vector<ScriptValue>& arguments)
40 return adoptRef(new ScriptArguments(scriptState, arguments));
43 ScriptArguments::ScriptArguments(ScriptState* scriptState, Vector<ScriptValue>& arguments)
44 : m_scriptState(scriptState)
59 ScriptState* ScriptArguments::globalState() const
InjectedScript.h 74 ScriptState* scriptState() const { return m_injectedScriptObject.scriptState(); }
77 friend InjectedScript InjectedScriptManager::injectedScriptFor(ScriptState*);
78 typedef bool (*InspectedStateAccessCheck)(ScriptState*);
InspectorFrontendClientLocal.h 35 #include "ScriptState.h"
85 ScriptState* m_frontendScriptState;
InspectorRuntimeAgent.h 36 #include "ScriptState.h"
64 virtual ScriptState* getDefaultInspectedState() = 0;
InjectedScriptManager.cpp 100 discardInjectedScript(it->second.scriptState());
104 bool InjectedScriptManager::canAccessInspectedWorkerContext(ScriptState*)
120 pair<long, ScriptObject> InjectedScriptManager::injectScript(const String& source, ScriptState* scriptState)
123 return std::make_pair(id, createInjectedScript(source, scriptState, id));
  /external/webkit/Source/WebCore/css/
MediaQueryListListener.h 24 #include "ScriptState.h"
43 void queryChanged(ScriptState*, MediaQueryList*);
MediaQueryListListener.cpp 34 void MediaQueryListListener::queryChanged(ScriptState* state, MediaQueryList* query)
  /external/webkit/Source/WebCore/dom/
Traversal.cpp 41 short Traversal::acceptNode(ScriptState* state, Node* node) const
Traversal.h 28 #include "ScriptState.h"
45 short acceptNode(ScriptState*, Node*) const;
NodeFilter.idl 50 [CallWith=ScriptState] short acceptNode(in Node n);
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)
176 Node* TreeWalker::nextSibling(ScriptState* state)
213 Node* TreeWalker::previousNode(ScriptState* state)
252 Node* TreeWalker::nextNode(ScriptState* state)
NodeFilter.h 78 short acceptNode(ScriptState*, Node*) const;
  /external/webkit/Source/WebCore/bindings/js/
ScriptValue.cpp 47 bool ScriptValue::getString(ScriptState* scriptState, String& result) const
53 if (!m_value.get().getString(scriptState, ustring))
59 String ScriptValue::toString(ScriptState* scriptState) const
61 String result = ustringToString(m_value.get().toString(scriptState));
63 if (scriptState->hadException())
64 scriptState->clearException();
68 bool ScriptValue::isEqual(ScriptState* scriptState, const ScriptValue& anotherValue) cons
    [all...]
JSInjectedScriptManager.cpp 51 ScriptObject InjectedScriptManager::createInjectedScript(const String& source, ScriptState* scriptState, long id)
55 JSDOMGlobalObject* globalObject = static_cast<JSDOMGlobalObject*>(scriptState->lexicalGlobalObject());
56 JSValue globalThisValue = scriptState->globalThisValue();
57 Completion comp = JSMainThreadExecState::evaluate(scriptState, globalObject->globalScopeChain(), sourceCode, globalThisValue);
67 args.append(toJS(scriptState, globalObject, m_injectedScriptHost.get()));
70 JSValue result = JSC::call(scriptState, functionValue, callType, callData, globalThisValue, args);
72 return ScriptObject(scriptState, result.getObject());
76 void InjectedScriptManager::discardInjectedScript(ScriptState* scriptState)
    [all...]
JSNodeFilterCondition.h 43 virtual short acceptNode(ScriptState*, Node*) const;
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8InjectedScriptHostCustom.cpp 59 ScriptValue InjectedScriptHost::nodeAsScriptValue(ScriptState* state, Node* node)
104 host->inspectImpl(object.toInspectorValue(ScriptState::current()), hints.toInspectorValue(ScriptState::current()));
  /external/webkit/Source/WebCore/bindings/scripts/test/
TestObj.idl 108 [CallWith=ScriptState] void withScriptStateVoid();
109 [CallWith=ScriptState] TestObj withScriptStateObj();
110 [CallWith=ScriptState] void withScriptStateVoidException()
112 [CallWith=ScriptState] TestObj withScriptStateObjException()

Completed in 4832 milliseconds

12 3 4