HomeSort by relevance Sort by last modified time
    Searched refs:ScriptState (Results 226 - 250 of 252) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/chromium_org/third_party/WebKit/Source/core/frame/csp/
ContentSecurityPolicy.cpp 240 template<bool (CSPDirectiveList::*allowed)(ScriptState* scriptState, ContentSecurityPolicy::ReportingStatus) const>
241 bool isAllowedByAllWithState(const CSPDirectiveListVector& policies, ScriptState* scriptState, ContentSecurityPolicy::ReportingStatus reportingStatus)
244 if (!(policies[i].get()->*allowed)(scriptState, reportingStatus))
361 bool ContentSecurityPolicy::allowEval(ScriptState* scriptState, ContentSecurityPolicy::ReportingStatus reportingStatus) const
363 return isAllowedByAllWithState<&CSPDirectiveList::allowEval>(m_policies, scriptState, reportingStatus);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorOverlay.cpp 717 ScriptState* scriptState = ScriptState::forMainWorld(frame.get());
718 ASSERT(!scriptState->contextIsEmpty());
719 ScriptState::Scope scope(scriptState);
720 v8::Handle<v8::Object> global = scriptState->context()->Global();
InspectorController.cpp 315 InjectedScript injectedScript = m_injectedScriptManager->injectedScriptFor(ScriptState::forMainWorld(frame));
InspectorTimelineAgent.cpp 764 void InspectorTimelineAgent::consoleTimeEnd(ExecutionContext* context, const String& message, ScriptState*)
775 void InspectorTimelineAgent::consoleTimeline(ExecutionContext* context, const String& title, ScriptState* scriptState)
781 mainFrame()->console().addMessage(ConsoleAPIMessageSource, DebugMessageLevel, message, String(), 0, 0, nullptr, scriptState);
791 void InspectorTimelineAgent::consoleTimelineEnd(ExecutionContext* context, const String& title, ScriptState* scriptState)
799 mainFrame()->console().addMessage(ConsoleAPIMessageSource, DebugMessageLevel, message, String(), 0, 0, nullptr, scriptState);
810 mainFrame()->console().addMessage(ConsoleAPIMessageSource, DebugMessageLevel, message, String(), 0, 0, nullptr, scriptState);
    [all...]
InspectorDebuggerAgent.cpp 274 void InspectorDebuggerAgent::addMessageToConsole(MessageSource source, MessageType type, MessageLevel, const String&, ScriptState*, PassRefPtrWillBeRawPtr<ScriptArguments>, unsigned long)
    [all...]
InspectorDOMAgent.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
V8Binding.h 555 PassRefPtrWillBeRawPtr<NodeFilter> toNodeFilter(v8::Handle<v8::Value>, v8::Handle<v8::Object>, ScriptState*);
    [all...]
V8Binding.cpp 149 PassRefPtrWillBeRawPtr<NodeFilter> toNodeFilter(v8::Handle<v8::Value> callback, v8::Handle<v8::Object> creationContext, ScriptState* scriptState)
153 v8::Handle<v8::Object> filterWrapper = toV8(filter, creationContext, scriptState->isolate()).As<v8::Object>();
155 RefPtrWillBeRawPtr<NodeFilterCondition> condition = V8NodeFilterCondition::create(callback, filterWrapper, scriptState);
    [all...]
SerializedScriptValue.cpp 931 Serializer(Writer& writer, MessagePortArray* messagePorts, ArrayBufferArray* arrayBuffers, WebBlobInfoArray* blobInfo, BlobDataHandleMap& blobDataHandles, v8::TryCatch& tryCatch, ScriptState* scriptState)
932 : m_scriptState(scriptState)
    [all...]
Dictionary.cpp 242 value = ScriptValue(ScriptState::current(m_isolate), v8Value);
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBDatabase.cpp 190 ScriptValue IDBDatabase::version(ScriptState* scriptState) const
194 return idbAnyToScriptValue(scriptState, IDBAny::createString(m_metadata.version));
196 return idbAnyToScriptValue(scriptState, IDBAny::create(intVersion));
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Document.idl 207 [CallWith=ScriptState, CustomElementCallbacks, RaisesException, MeasureAs=DocumentRegisterElement] CustomElementConstructor registerElement(DOMString name, optional Dictionary options);
Document.cpp 819 ScriptValue Document::registerElement(WebCore::ScriptState* scriptState, const AtomicString& name, ExceptionState& exceptionState)
821 return registerElement(scriptState, name, Dictionary(), exceptionState);
824 ScriptValue Document::registerElement(WebCore::ScriptState* scriptState, const AtomicString& name, const Dictionary& options, ExceptionState& exceptionState, CustomElement::NameSet validNames)
831 CustomElementConstructorBuilder constructorBuilder(scriptState, &options);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/tests/results/
V8TestInterfaceNode.cpp 112 impl->setEventHandlerAttribute(V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), v8Value, true, ListenerFindOrCreate));
V8TestTypedefs.cpp 161 testCallbackInterfaceTypeArg = V8TestCallbackInterface::create(v8::Handle<v8::Function>::Cast(info[0]), ScriptState::current(info.GetIsolate()));
V8TestInterface.cpp 379 impl->setImplementsEventHandlerAttribute(V8EventListenerList::getEventListener(ScriptState::current(info.GetIsolate()), v8Value, true, ListenerFindOrCreate));
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/testing/
Internals.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/
webcore_generated.target.darwin-arm.mk 308 third_party/WebKit/Source/bindings/v8/ScriptState.cpp \
    [all...]
webcore_generated.target.darwin-arm64.mk 308 third_party/WebKit/Source/bindings/v8/ScriptState.cpp \
    [all...]
webcore_generated.target.darwin-mips.mk 308 third_party/WebKit/Source/bindings/v8/ScriptState.cpp \
    [all...]
webcore_generated.target.darwin-x86.mk 308 third_party/WebKit/Source/bindings/v8/ScriptState.cpp \
    [all...]
webcore_generated.target.darwin-x86_64.mk 308 third_party/WebKit/Source/bindings/v8/ScriptState.cpp \
    [all...]
webcore_generated.target.linux-arm.mk 308 third_party/WebKit/Source/bindings/v8/ScriptState.cpp \
    [all...]
webcore_generated.target.linux-arm64.mk 308 third_party/WebKit/Source/bindings/v8/ScriptState.cpp \
    [all...]
webcore_generated.target.linux-mips.mk 308 third_party/WebKit/Source/bindings/v8/ScriptState.cpp \
    [all...]

Completed in 996 milliseconds

1 2 3 4 5 6 7 8 91011