/external/chromium_org/third_party/WebKit/Source/bindings/tests/results/ |
D | V8TestObject.cpp | 177 V8TRYCATCH_FOR_V8STRINGRESOURCE_VOID(V8StringResource<>, cppValue, jsValue); in staticStringAttrAttributeSetter() 178 TestObj::setStaticStringAttr(cppValue); in staticStringAttrAttributeSetter() 204 V8TRYCATCH_FOR_V8STRINGRESOURCE_VOID(V8StringResource<>, cppValue, jsValue); in enumAttrAttributeSetter() 205 String string = cppValue; in enumAttrAttributeSetter() 208 imp->setEnumAttr(cppValue); in enumAttrAttributeSetter() 247 V8TRYCATCH_VOID(int, cppValue, toInt8(jsValue)); in byteAttrAttributeSetter() 248 imp->setByteAttr(cppValue); in byteAttrAttributeSetter() 274 V8TRYCATCH_VOID(unsigned, cppValue, toUInt8(jsValue)); in octetAttrAttributeSetter() 275 imp->setOctetAttr(cppValue); in octetAttrAttributeSetter() 301 V8TRYCATCH_VOID(int, cppValue, toInt16(jsValue)); in shortAttrAttributeSetter() [all …]
|
D | V8TestObjectPython.cpp | 174 V8TRYCATCH_VOID(double, cppValue, toWebCoreDate(jsValue)); in dateAttributeAttributeSetter() 175 imp->setDateAttribute(cppValue); in dateAttributeAttributeSetter() 201 V8TRYCATCH_FOR_V8STRINGRESOURCE_VOID(V8StringResource<>, cppValue, jsValue); in stringAttributeAttributeSetter() 202 imp->setStringAttribute(cppValue); in stringAttributeAttributeSetter() 241 V8TRYCATCH_VOID(bool, cppValue, jsValue->BooleanValue()); in booleanAttributeAttributeSetter() 242 imp->setBooleanAttribute(cppValue); in booleanAttributeAttributeSetter() 268 V8TRYCATCH_VOID(int, cppValue, toInt8(jsValue)); in byteAttributeAttributeSetter() 269 imp->setByteAttribute(cppValue); in byteAttributeAttributeSetter() 295 V8TRYCATCH_VOID(double, cppValue, static_cast<double>(jsValue->NumberValue())); in doubleAttributeAttributeSetter() 296 imp->setDoubleAttribute(cppValue); in doubleAttributeAttributeSetter() [all …]
|
D | V8TestTypedefs.cpp | 94 V8TRYCATCH_VOID(unsigned long long, cppValue, toUInt64(jsValue)); in unsignedLongLongAttrAttributeSetter() 95 imp->setUnsignedLongLongAttr(cppValue); in unsignedLongLongAttrAttributeSetter() 121 …V8TRYCATCH_VOID(RefPtr<SerializedScriptValue>, cppValue, SerializedScriptValue::create(jsValue, in… in immutableSerializedScriptValueAttributeSetter() 122 imp->setImmutableSerializedScriptValue(WTF::getPtr(cppValue)); in immutableSerializedScriptValueAttributeSetter() 152 V8TRYCATCH_VOID(int, cppValue, toInt32(jsValue)); in attrWithGetterExceptionAttributeSetter() 153 imp->setAttrWithGetterException(cppValue); in attrWithGetterExceptionAttributeSetter() 180 V8TRYCATCH_VOID(int, cppValue, toInt32(jsValue)); in attrWithSetterExceptionAttributeSetter() 181 imp->setAttrWithSetterException(cppValue, exceptionState); in attrWithSetterExceptionAttributeSetter() 212 V8TRYCATCH_FOR_V8STRINGRESOURCE_VOID(V8StringResource<>, cppValue, jsValue); in stringAttrWithGetterExceptionAttributeSetter() 213 imp->setStringAttrWithGetterException(cppValue); in stringAttrWithGetterExceptionAttributeSetter() [all …]
|
D | V8TestInterface.cpp | 109 V8TRYCATCH_FOR_V8STRINGRESOURCE_VOID(V8StringResource<>, cppValue, jsValue); in implementsStaticAttrAttributeSetter() 110 TestImplements::setImplementsStaticAttr(cppValue); in implementsStaticAttrAttributeSetter() 149 V8TRYCATCH_FOR_V8STRINGRESOURCE_VOID(V8StringResource<>, cppValue, jsValue); in implementsStr2AttributeSetter() 150 TestImplements::setImplementsStr2(imp, cppValue); in implementsStr2AttributeSetter() 190 …V8TRYCATCH_VOID(Node*, cppValue, V8Node::hasInstance(jsValue, info.GetIsolate(), worldType(info.Ge… in implementsNodeAttributeSetter() 191 TestImplements::setImplementsNode(imp, WTF::getPtr(cppValue)); in implementsNodeAttributeSetter() 245 …V8TRYCATCH_VOID(Node*, cppValue, V8Node::hasInstance(jsValue, info.GetIsolate(), worldType(info.Ge… in Node23AttributeSetter() 246 TestImplements::setNode23(imp, WTF::getPtr(cppValue)); in Node23AttributeSetter() 272 …V8TRYCATCH_VOID(Node*, cppValue, V8Node::hasInstance(jsValue, info.GetIsolate(), worldType(info.Ge… in Node24AttributeSetter() 273 TestImplements::setNode24(imp, WTF::getPtr(cppValue)); in Node24AttributeSetter() [all …]
|
D | V8SupportTestInterface.cpp | 111 V8TRYCATCH_FOR_V8STRINGRESOURCE_VOID(V8StringResource<>, cppValue, jsValue); in supplementalStaticAttrAttributeSetter() 112 SupportTestPartialInterface::setSupplementalStaticAttr(cppValue); in supplementalStaticAttrAttributeSetter() 163 V8TRYCATCH_FOR_V8STRINGRESOURCE_VOID(V8StringResource<>, cppValue, jsValue); in supplementalStr2AttributeSetter() 164 SupportTestPartialInterface::setSupplementalStr2(imp, cppValue); in supplementalStr2AttributeSetter() 216 …V8TRYCATCH_VOID(Node*, cppValue, V8Node::hasInstance(jsValue, info.GetIsolate(), worldType(info.Ge… in supplementalNodeAttributeSetter() 217 SupportTestPartialInterface::setSupplementalNode(imp, WTF::getPtr(cppValue)); in supplementalNodeAttributeSetter() 251 …V8TRYCATCH_VOID(Node*, cppValue, V8Node::hasInstance(jsValue, info.GetIsolate(), worldType(info.Ge… in Node13AttributeSetter() 252 SupportTestPartialInterface::setNode13(imp, WTF::getPtr(cppValue)); in Node13AttributeSetter() 286 …V8TRYCATCH_VOID(Node*, cppValue, V8Node::hasInstance(jsValue, info.GetIsolate(), worldType(info.Ge… in Node14AttributeSetter() 287 SupportTestPartialInterface::setNode14(imp, WTF::getPtr(cppValue)); in Node14AttributeSetter()
|
D | V8TestInterfacePython.cpp | 90 V8TRYCATCH_FOR_V8STRINGRESOURCE_VOID(V8StringResource<>, cppValue, jsValue); in perWorldBindingsStringAttributeAttributeSetter() 91 imp->setPerWorldBindingsStringAttribute(cppValue); in perWorldBindingsStringAttributeAttributeSetter() 117 V8TRYCATCH_FOR_V8STRINGRESOURCE_VOID(V8StringResource<>, cppValue, jsValue); in perWorldBindingsStringAttributeAttributeSetterForMainWorld() 118 imp->setPerWorldBindingsStringAttribute(cppValue); in perWorldBindingsStringAttributeAttributeSetterForMainWorld()
|
D | V8TestNode.cpp | 88 V8TRYCATCH_FOR_V8STRINGRESOURCE_VOID(V8StringResource<>, cppValue, jsValue); in hrefAttributeSetter() 89 imp->setHref(cppValue); in hrefAttributeSetter() 116 V8TRYCATCH_FOR_V8STRINGRESOURCE_VOID(V8StringResource<>, cppValue, jsValue); in hrefThrowsAttributeSetter() 117 imp->setHrefThrows(cppValue, exceptionState); in hrefThrowsAttributeSetter()
|
D | V8TestInterfaceImplementedAs.cpp | 89 V8TRYCATCH_FOR_V8STRINGRESOURCE_VOID(V8StringResource<>, cppValue, jsValue); in aAttributeSetter() 90 imp->setA(cppValue); in aAttributeSetter() 116 …V8TRYCATCH_VOID(RealClass*, cppValue, V8TestInterfaceImplementedAs::hasInstance(jsValue, info.GetI… in bAttributeSetter() 117 imp->setB(WTF::getPtr(cppValue)); in bAttributeSetter()
|
D | V8TestInterfaceCheckSecurity.cpp | 101 V8TRYCATCH_VOID(int, cppValue, toInt32(jsValue)); in doNotCheckSecurityLongAttributeAttributeSetter() 102 imp->setDoNotCheckSecurityLongAttribute(cppValue); in doNotCheckSecurityLongAttributeAttributeSetter() 141 V8TRYCATCH_VOID(int, cppValue, toInt32(jsValue)); in doNotCheckSecurityOnSetterLongAttributeAttributeSetter() 142 imp->setDoNotCheckSecurityOnSetterLongAttribute(cppValue); in doNotCheckSecurityOnSetterLongAttributeAttributeSetter()
|
/external/chromium_org/third_party/WebKit/Source/testing/runner/ |
D | CppBoundClass.cpp | 266 CppVariant cppValue; in getProperty() local 267 if (!callback->second->getValue(&cppValue)) in getProperty() 269 cppValue.copyToNPVariant(result); in getProperty() 279 CppVariant cppValue; in setProperty() local 280 cppValue.set(*value); in setProperty() 281 return (*callback).second->setValue(cppValue); in setProperty()
|
/external/chromium_org/third_party/WebKit/Source/bindings/templates/ |
D | attributes.cpp | 154 String string = cppValue;
|