Searched refs:didThrow (Results 1 - 14 of 14) sorted by relevance

/external/chromium_org/v8/test/intl/break-iterator/
H A Dprotected-icu-internals.js40 var didThrow = false; variable
44 didThrow = true;
46 assertTrue(didThrow);
/external/chromium_org/v8/test/intl/collator/
H A Dprotected-icu-internals.js40 var didThrow = false; variable
44 didThrow = true;
46 assertTrue(didThrow);
/external/chromium_org/v8/test/intl/date-format/
H A Dprotected-icu-internals.js40 var didThrow = false; variable
44 didThrow = true;
46 assertTrue(didThrow);
/external/chromium_org/v8/test/intl/number-format/
H A Dprotected-icu-internals.js40 var didThrow = false; variable
44 didThrow = true;
46 assertTrue(didThrow);
/external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
H A DV8DedicatedWorkerGlobalScopeCustom.cpp53 bool didThrow = false; local
58 didThrow,
60 if (didThrow)
H A DV8MessagePortCustom.cpp52 bool didThrow = false; local
57 didThrow,
59 if (didThrow)
H A DV8WorkerCustom.cpp54 bool didThrow = false; local
59 didThrow,
61 if (didThrow)
H A DV8HistoryCustom.cpp64 bool didThrow = false; local
65 RefPtr<SerializedScriptValue> historyState = SerializedScriptValue::create(args[0], 0, 0, didThrow, args.GetIsolate());
66 if (didThrow)
81 bool didThrow = false; local
82 RefPtr<SerializedScriptValue> historyState = SerializedScriptValue::create(args[0], 0, 0, didThrow, args.GetIsolate());
83 if (didThrow)
H A DV8WindowCustom.cpp279 bool didThrow = false; local
281 SerializedScriptValue::create(args[0], &portArray, &arrayBufferArray, didThrow, args.GetIsolate());
282 if (didThrow)
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebSerializedScriptValue.cpp48 bool didThrow; local
49 WebSerializedScriptValue serializedValue = SerializedScriptValue::create(value, 0, 0, didThrow, v8::Isolate::GetCurrent());
50 if (didThrow)
/external/chromium_org/third_party/WebKit/Source/bindings/v8/
H A DSerializedScriptValue.h59 // 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*);
H A DScriptValue.cpp53 PassRefPtr<SerializedScriptValue> ScriptValue::serialize(ScriptState* scriptState, MessagePortArray* messagePorts, ArrayBufferArray* arrayBuffers, bool& didThrow) argument
56 return SerializedScriptValue::create(v8Value(), messagePorts, arrayBuffers, didThrow, scriptState->isolate());
H A DSerializedScriptValue.cpp2230 PassRefPtr<SerializedScriptValue> SerializedScriptValue::create(v8::Handle<v8::Value> value, MessagePortArray* messagePorts, ArrayBufferArray* arrayBuffers, bool& didThrow, v8::Isolate* isolate) argument
2232 return adoptRef(new SerializedScriptValue(value, messagePorts, arrayBuffers, didThrow, isolate));
2237 bool didThrow; local
2238 return adoptRef(new SerializedScriptValue(value, 0, 0, didThrow, isolate));
2243 bool didThrow; local
2244 return adoptRef(new SerializedScriptValue(value, 0, 0, didThrow, isolate, DoNotThrowExceptions));
2392 PassOwnPtr<SerializedScriptValue::ArrayBufferContentsArray> SerializedScriptValue::transferArrayBuffers(ArrayBufferArray& arrayBuffers, bool& didThrow, v8::Isolate* isolate) argument
2399 didThrow = true;
2417 didThrow = true;
2428 SerializedScriptValue::SerializedScriptValue(v8::Handle<v8::Value> value, MessagePortArray* messagePorts, ArrayBufferArray* arrayBuffers, bool& didThrow, v argument
[all...]
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
H A DIDBObjectStore.cpp169 bool didThrow = false; local
170 RefPtr<SerializedScriptValue> serializedValue = value.serialize(state, 0, 0, didThrow);
171 if (didThrow)

Completed in 249 milliseconds