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

  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8SQLTransactionSyncCustom.cpp 66 V8TRYCATCH_VOID(v8::Local<v8::Value>, length, sqlArgsObject->Get(v8AtomicString(info.GetIsolate(), "length")));
75 V8TRYCATCH_VOID(v8::Local<v8::Value>, value, sqlArgsObject->Get(key));
80 V8TRYCATCH_VOID(double, sqlValue, value->NumberValue());
V8TextTrackCueCustom.cpp 56 V8TRYCATCH_VOID(double, startTime, static_cast<double>(info[0]->NumberValue()));
57 V8TRYCATCH_VOID(double, endTime, static_cast<double>(info[1]->NumberValue()));
V8SQLTransactionCustom.cpp 66 V8TRYCATCH_VOID(v8::Local<v8::Value>, length, sqlArgsObject->Get(v8AtomicString(info.GetIsolate(), "length")));
75 V8TRYCATCH_VOID(v8::Local<v8::Value>, value, sqlArgsObject->Get(key));
80 V8TRYCATCH_VOID(double, sqlValue, value->NumberValue());
V8CustomEventCustom.cpp 87 V8TRYCATCH_VOID(bool, canBubbleArg, info[1]->BooleanValue());
88 V8TRYCATCH_VOID(bool, cancelableArg, info[2]->BooleanValue());
V8DocumentCustom.cpp 83 V8TRYCATCH_VOID(RefPtr<XPathResult>, result, DocumentXPathEvaluator::evaluate(document.get(), expression, contextNode.get(), resolver.release(), type, inResult.get(), exceptionState));
V8MessageEventCustom.cpp 104 V8TRYCATCH_VOID(bool, canBubbleArg, info[1]->BooleanValue());
105 V8TRYCATCH_VOID(bool, cancelableArg, info[2]->BooleanValue());
V8SVGLengthCustom.cpp 94 V8TRYCATCH_VOID(int, unitType, toUInt32(info[0]));
V8HTMLOptionsCollectionCustom.cpp 87 V8TRYCATCH_VOID(int, index, toInt32(info[1], ok));
V8PromiseCustom.cpp 563 V8TRYCATCH_VOID(v8::Local<v8::Value>, nextValue, iterable->Get(i));
600 V8TRYCATCH_VOID(v8::Local<v8::Value>, nextValue, iterable->Get(i));
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/tests/results/
V8TestInterfaceConstructor.cpp 92 V8TRYCATCH_VOID(double, doubleArg, static_cast<double>(info[0]->NumberValue()));
94 V8TRYCATCH_VOID(TestInterfaceEmpty*, testInterfaceEmptyArg, V8TestInterfaceEmpty::hasInstance(info[2], info.GetIsolate(), worldType(info.GetIsolate())) ? V8TestInterfaceEmpty::toNative(v8::Handle<v8::Object>::Cast(info[2])) : 0);
95 V8TRYCATCH_VOID(Dictionary, dictionaryArg, Dictionary(info[3], info.GetIsolate()));
100 V8TRYCATCH_VOID(Vector<String>, sequenceStringArg, toNativeArray<String>(info[4], 5, info.GetIsolate()));
101 V8TRYCATCH_VOID(Dictionary, optionalDictionaryArg, Dictionary(info[5], info.GetIsolate()));
106 V8TRYCATCH_VOID(TestInterfaceEmpty*, optionalTestInterfaceEmptyArg, V8TestInterfaceEmpty::hasInstance(info[6], info.GetIsolate(), worldType(info.GetIsolate())) ? V8TestInterfaceEmpty::toNative(v8::Handle<v8::Object>::Cast(info[6])) : 0);
V8TestObjectPython.cpp 174 V8TRYCATCH_VOID(double, cppValue, toWebCoreDate(jsValue));
241 V8TRYCATCH_VOID(bool, cppValue, jsValue->BooleanValue());
268 V8TRYCATCH_VOID(int, cppValue, toInt8(jsValue));
295 V8TRYCATCH_VOID(double, cppValue, static_cast<double>(jsValue->NumberValue()));
322 V8TRYCATCH_VOID(float, cppValue, static_cast<float>(jsValue->NumberValue()));
349 V8TRYCATCH_VOID(int, cppValue, toInt32(jsValue));
376 V8TRYCATCH_VOID(long long, cppValue, toInt64(jsValue));
403 V8TRYCATCH_VOID(unsigned, cppValue, toUInt8(jsValue));
430 V8TRYCATCH_VOID(int, cppValue, toInt16(jsValue));
457 V8TRYCATCH_VOID(unsigned, cppValue, toUInt32(jsValue))
    [all...]
V8TestTypedefs.cpp 94 V8TRYCATCH_VOID(unsigned long long, cppValue, toUInt64(jsValue));
121 V8TRYCATCH_VOID(RefPtr<SerializedScriptValue>, cppValue, SerializedScriptValue::create(jsValue, info.GetIsolate()));
152 V8TRYCATCH_VOID(int, cppValue, toInt32(jsValue));
180 V8TRYCATCH_VOID(int, cppValue, toInt32(jsValue));
279 V8TRYCATCH_VOID(Vector<int>, x, toNativeArray<int>(info[0], 1, info.GetIsolate()));
297 V8TRYCATCH_VOID(float, width, static_cast<float>(info[0]->NumberValue()));
298 V8TRYCATCH_VOID(float, height, static_cast<float>(info[1]->NumberValue()));
299 V8TRYCATCH_VOID(float, blur, static_cast<float>(info[2]->NumberValue()));
309 V8TRYCATCH_VOID(float, alpha, static_cast<float>(info[4]->NumberValue()));
327 V8TRYCATCH_VOID(Vector<RefPtr<SerializedScriptValue> >, sequenceArg, (toRefPtrNativeArray<SerializedScriptValue, V (…)
    [all...]
V8TestObject.cpp 247 V8TRYCATCH_VOID(int, cppValue, toInt8(jsValue));
274 V8TRYCATCH_VOID(unsigned, cppValue, toUInt8(jsValue));
301 V8TRYCATCH_VOID(int, cppValue, toInt16(jsValue));
328 V8TRYCATCH_VOID(unsigned, cppValue, toUInt16(jsValue));
355 V8TRYCATCH_VOID(int, cppValue, toInt32(jsValue));
382 V8TRYCATCH_VOID(long long, cppValue, toInt64(jsValue));
409 V8TRYCATCH_VOID(unsigned long long, cppValue, toUInt64(jsValue));
492 V8TRYCATCH_VOID(TestObj*, cppValue, V8TestObject::hasInstance(jsValue, info.GetIsolate(), worldType(info.GetIsolate())) ? V8TestObject::toNative(v8::Handle<v8::Object>::Cast(jsValue)) : 0);
548 V8TRYCATCH_VOID(TestObj*, cppValue, V8TestObject::hasInstance(jsValue, info.GetIsolate(), worldType(info.GetIsolate())) ? V8TestObject::toNative(v8::Handle<v8::Object>::Cast(jsValue)) : 0);
575 V8TRYCATCH_VOID(bool, cppValue, jsValue->BooleanValue())
    [all...]
V8TestOverloadedConstructors.cpp 77 V8TRYCATCH_VOID(ArrayBuffer*, arrayBuffer, info[0]->IsArrayBuffer() ? V8ArrayBuffer::toNative(v8::Handle<v8::ArrayBuffer>::Cast(info[0])) : 0);
87 V8TRYCATCH_VOID(ArrayBufferView*, arrayBufferView, info[0]->IsArrayBufferView() ? V8ArrayBufferView::toNative(v8::Handle<v8::ArrayBufferView>::Cast(info[0])) : 0);
97 V8TRYCATCH_VOID(Blob*, blob, V8Blob::hasInstance(info[0], info.GetIsolate(), worldType(info.GetIsolate())) ? V8Blob::toNative(v8::Handle<v8::Object>::Cast(info[0])) : 0);
V8TestInterfaceConstructor2.cpp 86 V8TRYCATCH_VOID(TestInterfaceEmpty*, testInterfaceEmptyArg, V8TestInterfaceEmpty::hasInstance(info[0], info.GetIsolate(), worldType(info.GetIsolate())) ? V8TestInterfaceEmpty::toNative(v8::Handle<v8::Object>::Cast(info[0])) : 0);
89 V8TRYCATCH_VOID(Dictionary, defaultUndefinedOptionalDictionaryArg, Dictionary(info[3], info.GetIsolate()));
V8TestInterfaceImplementedAs.cpp 116 V8TRYCATCH_VOID(RealClass*, cppValue, V8TestInterfaceImplementedAs::hasInstance(jsValue, info.GetIsolate(), worldType(info.GetIsolate())) ? V8TestInterfaceImplementedAs::toNative(v8::Handle<v8::Object>::Cast(jsValue)) : 0);
152 V8TRYCATCH_VOID(RealClass*, orange, V8TestInterfaceImplementedAs::hasInstance(info[0], info.GetIsolate(), worldType(info.GetIsolate())) ? V8TestInterfaceImplementedAs::toNative(v8::Handle<v8::Object>::Cast(info[0])) : 0);
V8TestInterface.cpp 190 V8TRYCATCH_VOID(Node*, cppValue, V8Node::hasInstance(jsValue, info.GetIsolate(), worldType(info.GetIsolate())) ? V8Node::toNative(v8::Handle<v8::Object>::Cast(jsValue)) : 0);
245 V8TRYCATCH_VOID(Node*, cppValue, V8Node::hasInstance(jsValue, info.GetIsolate(), worldType(info.GetIsolate())) ? V8Node::toNative(v8::Handle<v8::Object>::Cast(jsValue)) : 0);
272 V8TRYCATCH_VOID(Node*, cppValue, V8Node::hasInstance(jsValue, info.GetIsolate(), worldType(info.GetIsolate())) ? V8Node::toNative(v8::Handle<v8::Object>::Cast(jsValue)) : 0);
423 V8TRYCATCH_VOID(Node*, cppValue, V8Node::hasInstance(jsValue, info.GetIsolate(), worldType(info.GetIsolate())) ? V8Node::toNative(v8::Handle<v8::Object>::Cast(jsValue)) : 0);
458 V8TRYCATCH_VOID(Node*, cppValue, V8Node::hasInstance(jsValue, info.GetIsolate(), worldType(info.GetIsolate())) ? V8Node::toNative(v8::Handle<v8::Object>::Cast(jsValue)) : 0);
493 V8TRYCATCH_VOID(Node*, cppValue, V8Node::hasInstance(jsValue, info.GetIsolate(), worldType(info.GetIsolate())) ? V8Node::toNative(v8::Handle<v8::Object>::Cast(jsValue)) : 0);
528 V8TRYCATCH_VOID(Node*, cppValue, V8Node::hasInstance(jsValue, info.GetIsolate(), worldType(info.GetIsolate())) ? V8Node::toNative(v8::Handle<v8::Object>::Cast(jsValue)) : 0);
    [all...]
V8TestEventTarget.cpp 81 V8TRYCATCH_VOID(unsigned, index, toUInt32(info[0]));
130 V8TRYCATCH_VOID(Node*, propertyValue, V8Node::hasInstance(jsValue, info.GetIsolate(), worldType(info.GetIsolate())) ? V8Node::toNative(v8::Handle<v8::Object>::Cast(jsValue)) : 0);
V8SupportTestInterface.cpp 216 V8TRYCATCH_VOID(Node*, cppValue, V8Node::hasInstance(jsValue, info.GetIsolate(), worldType(info.GetIsolate())) ? V8Node::toNative(v8::Handle<v8::Object>::Cast(jsValue)) : 0);
251 V8TRYCATCH_VOID(Node*, cppValue, V8Node::hasInstance(jsValue, info.GetIsolate(), worldType(info.GetIsolate())) ? V8Node::toNative(v8::Handle<v8::Object>::Cast(jsValue)) : 0);
286 V8TRYCATCH_VOID(Node*, cppValue, V8Node::hasInstance(jsValue, info.GetIsolate(), worldType(info.GetIsolate())) ? V8Node::toNative(v8::Handle<v8::Object>::Cast(jsValue)) : 0);
V8TestInterfaceCheckSecurity.cpp 101 V8TRYCATCH_VOID(int, cppValue, toInt32(jsValue));
141 V8TRYCATCH_VOID(int, cppValue, toInt32(jsValue));
    [all...]
V8TestInterfaceEventConstructor.cpp 251 V8TRYCATCH_VOID(Dictionary, options, Dictionary(info[1], info.GetIsolate()));
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
V8BindingMacros.h 56 #define V8TRYCATCH_VOID(type, var, value) \
  /external/chromium_org/third_party/WebKit/Source/bindings/templates/
methods.cpp 101 V8TRYCATCH_VOID(double, {{argument.name}}NativeValue, info[{{argument.index}}]->NumberValue());
  /external/chromium_org/third_party/WebKit/Source/bindings/scripts/
code_generator_v8.pm     [all...]

Completed in 465 milliseconds