HomeSort by relevance Sort by last modified time
    Searched full:serializedscriptvalue (Results 51 - 75 of 90) sorted by null

1 23 4

  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8PopStateEventCustom.cpp 35 #include "bindings/v8/SerializedScriptValue.h"
66 event->setSerializedState(SerializedScriptValue::createAndSwallowExceptions(mainWorldState, info.GetIsolate()));
V8WindowCustom.cpp 42 #include "bindings/v8/SerializedScriptValue.h"
262 if (!SerializedScriptValue::extractTransferables(info[transferablesArgIndex], transferablesArgIndex, portArray, arrayBufferArray, exceptionState, info.GetIsolate())) {
269 RefPtr<SerializedScriptValue> message = SerializedScriptValue::create(info[0], &portArray, &arrayBufferArray, exceptionState, info.GetIsolate());
  /external/chromium_org/third_party/WebKit/Source/core/testing/
Internals.h 66 class SerializedScriptValue;
282 PassRefPtr<ArrayBuffer> serializeObject(PassRefPtr<SerializedScriptValue>) const;
283 PassRefPtr<SerializedScriptValue> deserializeBuffer(PassRefPtr<ArrayBuffer>) const;
Internals.idl 250 SerializedScriptValue deserializeBuffer(ArrayBuffer buffer);
251 ArrayBuffer serializeObject(SerializedScriptValue obj);
Internals.cpp 35 #include "bindings/v8/SerializedScriptValue.h"
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InjectedScript.h 46 class SerializedScriptValue;
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBKeyPathTest.cpp 30 #include "bindings/v8/SerializedScriptValue.h"
IDBObjectStore.h 31 #include "bindings/v8/SerializedScriptValue.h"
IDBObjectStore.cpp 181 RefPtr<SerializedScriptValue> serializedValue = SerializedScriptValue::create(value, &blobInfo, exceptionState, scriptState->isolate());
312 // them from the SerializedScriptValue, for all the existing values in
IDBDatabase.cpp 33 #include "bindings/v8/SerializedScriptValue.h"
  /external/chromium_org/third_party/WebKit/Source/bindings/tests/idls/
TestObject.idl 120 attribute SerializedScriptValue serializedScriptValueAttribute;
363 SerializedScriptValue serializedScriptValueMethod();
369 void voidMethodSerializedScriptValueArg(SerializedScriptValue serializedScriptValueArg);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/scripts/
v8_methods.py 62 base_type == 'SerializedScriptValue' or
136 'SerializedScriptValue') or
v8_interface.py 200 includes.add('bindings/v8/SerializedScriptValue.h')
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/
EventSource.cpp 39 #include "bindings/v8/SerializedScriptValue.h"
433 event->initMessageEvent(m_eventName.isEmpty() ? EventTypeNames::message : m_eventName, false, false, SerializedScriptValue::create(String(m_data)), m_eventStreamOrigin, m_lastEventId, 0, nullptr);
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
IDBBindingUtilities.cpp 38 #include "bindings/v8/SerializedScriptValue.h"
355 // FIXME: The extra copy here can be eliminated by allowing SerializedScriptValue to take a raw const char* or const uint8_t*.
358 RefPtr<SerializedScriptValue> serializedValue = SerializedScriptValue::createFromWireBytes(value);
  /external/chromium_org/third_party/WebKit/Source/core/loader/
HistoryItem.cpp 172 void HistoryItem::setStateObject(PassRefPtr<SerializedScriptValue> object)
FrameLoader.cpp 40 #include "bindings/v8/SerializedScriptValue.h"
269 void FrameLoader::setHistoryItemStateForCommit(HistoryCommitType historyCommitType, bool isPushOrReplaceState, PassRefPtr<SerializedScriptValue> stateObject)
531 void FrameLoader::updateForSameDocumentNavigation(const KURL& newURL, SameDocumentNavigationSource sameDocumentNavigationSource, PassRefPtr<SerializedScriptValue> data, FrameLoadType type)
554 void FrameLoader::loadInSameDocument(const KURL& url, PassRefPtr<SerializedScriptValue> stateObject, FrameLoadType type, ClientRedirectPolicy clientRedirect)
595 m_frame->domWindow()->statePopped(stateObject ? stateObject : SerializedScriptValue::nullValue());
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/workers/
Worker.cpp 95 void Worker::postMessage(PassRefPtr<SerializedScriptValue> message, const MessagePortArray* ports, ExceptionState& exceptionState)
  /external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
ServiceWorker.cpp 75 void ServiceWorker::postMessage(PassRefPtr<SerializedScriptValue> message, const MessagePortArray* ports, ExceptionState& exceptionState)
  /external/chromium_org/third_party/WebKit/Source/web/
WebHistoryItem.cpp 34 #include "bindings/v8/SerializedScriptValue.h"
AssertMatchingEnums.cpp 36 #include "bindings/v8/SerializedScriptValue.h"
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/frame/
Window.idl 169 [DoNotCheckSecurity, Custom, RaisesException] void postMessage(SerializedScriptValue message, DOMString targetOrigin, optional MessagePort[] messagePorts);
LocalDOMWindow.cpp 35 #include "bindings/v8/SerializedScriptValue.h"
118 PostMessageTimer(LocalDOMWindow& window, PassRefPtr<SerializedScriptValue> message, const String& sourceOrigin, PassRefPtrWillBeRawPtr<LocalDOMWindow> source, PassOwnPtr<MessagePortChannelArray> channels, SecurityOrigin* targetOrigin, PassRefPtrWillBeRawPtr<ScriptCallStack> stackTrace, UserGestureToken* userGestureToken)
151 RefPtr<SerializedScriptValue> m_message;
478 void LocalDOMWindow::enqueuePopstateEvent(PassRefPtr<SerializedScriptValue> stateObject)
487 void LocalDOMWindow::statePopped(PassRefPtr<SerializedScriptValue> stateObject)
825 void LocalDOMWindow::postMessage(PassRefPtr<SerializedScriptValue> message, const MessagePortArray* ports, const String& targetOrigin, LocalDOMWindow* source, ExceptionState& exceptionState)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/templates/
methods.cpp 179 {% elif argument.idl_type == 'SerializedScriptValue' %}
180 {{argument.name}} = SerializedScriptValue::create(info[{{argument.index}}], 0, 0, exceptionState, info.GetIsolate());
  /external/chromium_org/third_party/WebKit/Source/bindings/tests/results/
V8TestInterfaceEventConstructor.cpp 14 #include "bindings/v8/SerializedScriptValue.h"
277 event->setSerializedInitializedByEventConstructorReadonlyAnyAttribute(SerializedScriptValue::createAndSwallowExceptions(initializedByEventConstructorReadonlyAnyAttribute, isolate));

Completed in 1380 milliseconds

1 23 4