HomeSort by relevance Sort by last modified time
    Searched defs:scriptState (Results 1 - 6 of 6) sorted by null

  /external/webkit/WebCore/bindings/js/
ScriptObject.h 34 #include "ScriptState.h"
47 ScriptObject(ScriptState*, JSC::JSObject*);
50 ScriptState* scriptState() const { return m_scriptState; }
63 static ScriptObject createNew(ScriptState*);
66 ScriptState* m_scriptState;
71 static bool set(ScriptState*, const char* name, const ScriptObject&);
73 static bool set(ScriptState*, const char* name, InspectorBackend*);
74 static bool set(ScriptState*, const char* name, InspectorFrontendHost*);
75 static bool set(ScriptState*, const char* name, InjectedScriptHost*)
    [all...]
  /external/webkit/WebCore/inspector/
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(); }
InspectorController.cpp 347 void InspectorController::addConsoleMessage(ScriptState* scriptState, ConsoleMessage* consoleMessage)
352 if (m_previousMessage && m_previousMessage->isEqual(scriptState, consoleMessage)) {
545 void InspectorController::setFrontendProxyObject(ScriptState* scriptState, ScriptObject webInspectorObj, ScriptObject)
547 m_frontendScriptState = scriptState;
    [all...]
  /external/webkit/WebCore/bindings/v8/
ScriptObject.h 42 class ScriptState;
46 ScriptObject(ScriptState*, v8::Handle<v8::Object>);
51 ScriptState* scriptState() const { return m_scriptState; }
64 static ScriptObject createNew(ScriptState*);
66 ScriptState* m_scriptState;
71 static bool set(ScriptState*, const char* name, const ScriptObject&);
72 static bool set(ScriptState*, const char* name, InspectorBackend*);
73 static bool set(ScriptState*, const char* name, InspectorFrontendHost*);
74 static bool set(ScriptState*, const char* name, InjectedScriptHost*)
    [all...]
ScriptState.cpp 32 #include "ScriptState.h"
45 ScriptState::ScriptState(v8::Handle<v8::Context> context)
48 m_context.MakeWeak(this, &ScriptState::weakReferenceCallback);
51 ScriptState::~ScriptState()
57 ScriptState* ScriptState::forContext(v8::Local<v8::Context> context)
66 v8::Handle<v8::String> key = V8HiddenPropertyName::scriptState();
69 return static_cast<ScriptState*>(v8::External::Cast(*val)->Value())
    [all...]
  /external/webkit/WebKit/android/jni/
WebCoreFrameBridge.cpp     [all...]

Completed in 324 milliseconds