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

/external/webkit/Source/WebCore/bindings/v8/custom/
H A DV8DedicatedWorkerContextCustom.cpp49 bool didThrow = false; local
50 RefPtr<SerializedScriptValue> message = SerializedScriptValue::create(args[0], didThrow);
51 if (didThrow)
H A DV8HistoryCustom.cpp46 bool didThrow = false; local
47 RefPtr<SerializedScriptValue> historyState = SerializedScriptValue::create(args[0], didThrow);
48 if (didThrow)
70 bool didThrow = false; local
71 RefPtr<SerializedScriptValue> historyState = SerializedScriptValue::create(args[0], didThrow);
72 if (didThrow)
H A DV8MessagePortCustom.cpp49 bool didThrow = false; local
50 RefPtr<SerializedScriptValue> message = SerializedScriptValue::create(args[0], didThrow);
51 if (didThrow)
H A DV8WorkerCustom.cpp94 bool didThrow = false; local
95 RefPtr<SerializedScriptValue> message = SerializedScriptValue::create(args[0], didThrow);
96 if (didThrow)
H A DV8DOMWindowCustom.cpp323 bool didThrow = false; local
324 RefPtr<SerializedScriptValue> message = SerializedScriptValue::create(args[0], didThrow);
325 if (didThrow)
/external/webkit/Source/WebCore/bindings/v8/
H A DSerializedScriptValue.h49 // be thrown using v8::ThrowException(), and sets |didThrow|. In this case
51 // V8. When serialization is successful, |didThrow| is false.
52 static PassRefPtr<SerializedScriptValue> create(v8::Handle<v8::Value> value, bool& didThrow);
76 SerializedScriptValue(v8::Handle<v8::Value>, bool& didThrow);
H A DSerializedScriptValue.cpp1155 PassRefPtr<SerializedScriptValue> SerializedScriptValue::create(v8::Handle<v8::Value> value, bool& didThrow) argument
1157 return adoptRef(new SerializedScriptValue(value, didThrow));
1162 bool didThrow; local
1163 return adoptRef(new SerializedScriptValue(value, didThrow));
1219 SerializedScriptValue::SerializedScriptValue(v8::Handle<v8::Value> value, bool& didThrow) argument
1221 didThrow = false;
1230 didThrow = true;
1238 didThrow = true;
1246 didThrow = true;

Completed in 90 milliseconds