HomeSort by relevance Sort by last modified time
    Searched refs:didThrow (Results 1 - 15 of 15) sorted by null

  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8DedicatedWorkerGlobalScopeCustom.cpp 53 bool didThrow = false;
58 didThrow,
60 if (didThrow)
V8MessagePortCustom.cpp 52 bool didThrow = false;
57 didThrow,
59 if (didThrow)
V8WorkerCustom.cpp 54 bool didThrow = false;
59 didThrow,
61 if (didThrow)
V8HistoryCustom.cpp 64 bool didThrow = false;
65 RefPtr<SerializedScriptValue> historyState = SerializedScriptValue::create(args[0], 0, 0, didThrow, args.GetIsolate());
66 if (didThrow)
81 bool didThrow = false;
82 RefPtr<SerializedScriptValue> historyState = SerializedScriptValue::create(args[0], 0, 0, didThrow, args.GetIsolate());
83 if (didThrow)
V8WindowCustom.cpp 279 bool didThrow = false;
281 SerializedScriptValue::create(args[0], &portArray, &arrayBufferArray, didThrow, args.GetIsolate());
282 if (didThrow)
  /external/chromium_org/third_party/WebKit/Source/web/
WebSerializedScriptValue.cpp 48 bool didThrow;
49 WebSerializedScriptValue serializedValue = SerializedScriptValue::create(value, 0, 0, didThrow, v8::Isolate::GetCurrent());
50 if (didThrow)
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
SerializedScriptValue.h 59 // be thrown using v8::ThrowException(), and sets |didThrow|. In this case
61 // V8. When serialization is successful, |didThrow| is false.
62 static PassRefPtr<SerializedScriptValue> create(v8::Handle<v8::Value>, MessagePortArray*, ArrayBufferArray*, bool& didThrow, v8::Isolate*);
116 SerializedScriptValue(v8::Handle<v8::Value>, MessagePortArray*, ArrayBufferArray*, bool& didThrow, v8::Isolate*, ExceptionPolicy = ThrowExceptions);
119 static PassOwnPtr<ArrayBufferContentsArray> transferArrayBuffers(ArrayBufferArray&, bool& didThrow, v8::Isolate*);
ScriptValue.cpp 53 PassRefPtr<SerializedScriptValue> ScriptValue::serialize(ScriptState* scriptState, MessagePortArray* messagePorts, ArrayBufferArray* arrayBuffers, bool& didThrow)
56 return SerializedScriptValue::create(v8Value(), messagePorts, arrayBuffers, didThrow, scriptState->isolate());
SerializedScriptValue.cpp     [all...]
  /external/chromium_org/v8/test/intl/break-iterator/
protected-icu-internals.js 40 var didThrow = false;
44 didThrow = true;
46 assertTrue(didThrow);
  /external/chromium_org/v8/test/intl/collator/
protected-icu-internals.js 40 var didThrow = false;
44 didThrow = true;
46 assertTrue(didThrow);
  /external/chromium_org/v8/test/intl/date-format/
protected-icu-internals.js 40 var didThrow = false;
44 didThrow = true;
46 assertTrue(didThrow);
  /external/chromium_org/v8/test/intl/number-format/
protected-icu-internals.js 40 var didThrow = false;
44 didThrow = true;
46 assertTrue(didThrow);
  /frameworks/opt/calendar/tests/src/com/android/calendarcommon2/
EventRecurrenceTest.java     [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBObjectStore.cpp 169 bool didThrow = false;
170 RefPtr<SerializedScriptValue> serializedValue = value.serialize(state, 0, 0, didThrow);
171 if (didThrow)

Completed in 423 milliseconds