Home | History | Annotate | Download | only in JS

Lines Matching defs:imp

285     TestObj* imp = static_cast<TestObj*>(castedThis->impl());
286 JSValue result = jsNumber(imp->readOnlyIntAttr());
294 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
295 JSValue result = jsString(exec, imp->readOnlyStringAttr());
303 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
304 JSValue result = toJS(exec, castedThis->globalObject(), WTF::getPtr(imp->readOnlyTestObjAttr()));
312 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
313 JSValue result = jsNumber(imp->shortAttr());
321 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
322 JSValue result = jsNumber(imp->unsignedShortAttr());
330 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
331 JSValue result = jsNumber(imp->intAttr());
339 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
340 JSValue result = jsNumber(imp->longLongAttr());
348 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
349 JSValue result = jsNumber(imp->unsignedLongLongAttr());
357 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
358 JSValue result = jsString(exec, imp->stringAttr());
366 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
367 JSValue result = toJS(exec, castedThis->globalObject(), WTF::getPtr(imp->testObjAttr()));
375 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
376 JSValue result = toJS(exec, castedThis->globalObject(), WTF::getPtr(imp->xmlObjAttr()));
384 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
385 JSValue result = jsBoolean(imp->isCreate());
393 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
394 JSValue result = jsString(exec, imp->getAttribute(WebCore::HTMLNames::reflectedstringattrAttr));
402 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
403 JSValue result = jsNumber(imp->getIntegralAttribute(WebCore::HTMLNames::reflectedintegralattrAttr));
411 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
412 JSValue result = jsNumber(std::max(0, imp->getIntegralAttribute(WebCore::HTMLNames::reflectedunsignedintegralattrAttr)));
420 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
421 JSValue result = jsBoolean(imp->hasAttribute(WebCore::HTMLNames::reflectedbooleanattrAttr));
429 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
430 JSValue result = jsString(exec, imp->getURLAttribute(WebCore::HTMLNames::reflectedurlattrAttr));
438 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
439 JSValue result = jsString(exec, imp->getNonEmptyURLAttribute(WebCore::HTMLNames::reflectednonemptyurlattrAttr));
447 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
448 JSValue result = jsString(exec, imp->getAttribute(WebCore::HTMLNames::customContentStringAttrAttr));
456 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
457 JSValue result = jsNumber(imp->getIntegralAttribute(WebCore::HTMLNames::customContentIntegralAttrAttr));
465 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
466 JSValue result = jsBoolean(imp->hasAttribute(WebCore::HTMLNames::customContentBooleanAttrAttr));
474 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
475 JSValue result = jsString(exec, imp->getURLAttribute(WebCore::HTMLNames::customContentURLAttrAttr));
483 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
484 JSValue result = jsString(exec, imp->getNonEmptyURLAttribute(WebCore::HTMLNames::customContentNonEmptyURLAttrAttr));
492 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
493 JSC::JSValue result = jsNumber(imp->attrWithGetterException(ec));
502 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
503 JSValue result = jsNumber(imp->attrWithSetterException());
511 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
512 JSC::JSValue result = jsString(exec, imp->stringAttrWithGetterException(ec));
521 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
522 JSValue result = jsString(exec, imp->stringAttrWithSetterException());
536 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
537 JSValue result = jsOwnedStringOrNull(exec, imp->scriptStringAttr());
546 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
547 JSValue result = jsNumber(imp->conditionalAttr1());
557 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
558 JSValue result = jsNumber(imp->conditionalAttr2());
568 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
569 JSValue result = jsNumber(imp->conditionalAttr3());
578 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
579 JSValue result = jsNumber(imp->description());
587 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
588 JSValue result = jsNumber(imp->id());
596 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
597 JSValue result = jsString(exec, imp->hash());
615 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
616 imp->setShortAttr(value.toInt32(exec));
622 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
623 imp->setUnsignedShortAttr(value.toUInt32(exec));
629 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
630 imp->setIntAttr(value.toInt32(exec));
636 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
637 imp->setLongLongAttr(static_cast<long long>(value.toInteger(exec)));
643 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
644 imp->setUnsignedLongLongAttr(static_cast<unsigned long long>(value.toInteger(exec)));
650 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
651 imp->setStringAttr(ustringToString(value.toString(exec)));
657 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
658 imp->setTestObjAttr(toTestObj(value));
664 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
665 imp->setXMLObjAttr(toTestObj(value));
671 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
672 imp->setCreate(value.toBoolean(exec));
678 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
679 imp->setAttribute(WebCore::HTMLNames::reflectedstringattrAttr, valueToStringWithNullCheck(exec, value));
685 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
686 imp->setIntegralAttribute(WebCore::HTMLNames::reflectedintegralattrAttr, value.toInt32(exec));
692 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
693 imp->setUnsignedIntegralAttribute(WebCore::HTMLNames::reflectedunsignedintegralattrAttr, value.toUInt32(exec));
699 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
700 imp->setBooleanAttribute(WebCore::HTMLNames::reflectedbooleanattrAttr, value.toBoolean(exec));
706 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
707 imp->setAttribute(WebCore::HTMLNames::reflectedurlattrAttr, valueToStringWithNullCheck(exec, value));
713 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
714 imp->setAttribute(WebCore::HTMLNames::reflectednonemptyurlattrAttr, valueToStringWithNullCheck(exec, value));
720 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
721 imp->setAttribute(WebCore::HTMLNames::customContentStringAttrAttr, valueToStringWithNullCheck(exec, value));
727 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
728 imp->setIntegralAttribute(WebCore::HTMLNames::customContentIntegralAttrAttr, value.toInt32(exec));
734 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
735 imp->setBooleanAttribute(WebCore::HTMLNames::customContentBooleanAttrAttr, value.toBoolean(exec));
741 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
742 imp->setAttribute(WebCore::HTMLNames::customContentURLAttrAttr, valueToStringWithNullCheck(exec, value));
748 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
749 imp->setAttribute(WebCore::HTMLNames::customContentNonEmptyURLAttrAttr, valueToStringWithNullCheck(exec, value));
755 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
757 imp->setAttrWithGetterException(value.toInt32(exec), ec);
764 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
766 imp->setAttrWithSetterException(value.toInt32(exec), ec);
773 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
775 imp->setStringAttrWithGetterException(ustringToString(value.toString(exec)), ec);
782 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
784 imp->setStringAttrWithSetterException(ustringToString(value.toString(exec)), ec);
797 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
798 imp->setConditionalAttr1(value.toInt32(exec));
806 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
807 imp->setConditionalAttr2(value.toInt32(exec));
815 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
816 imp->setConditionalAttr3(value.toInt32(exec));
823 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
824 imp->setId(value.toInt32(exec));
838 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
840 imp->voidMethod();
850 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
861 imp->voidMethodWithArgs(intArg, strArg, objArg);
871 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
874 JSC::JSValue result = jsNumber(imp->intMethod());
884 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
896 JSC::JSValue result = jsNumber(imp->intMethodWithArgs(intArg, strArg, objArg));
906 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
909 JSC::JSValue result = toJS(exec, castedThis->globalObject(), WTF::getPtr(imp->objMethod()));
919 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
931 JSC::JSValue result = toJS(exec, castedThis->globalObject(), WTF::getPtr(imp->objMethodWithArgs(intArg, strArg, objArg)));
941 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
952 JSC::JSValue result = toJS(exec, castedThis->globalObject(), WTF::getPtr(imp->methodThatRequiresAllArgs(strArg, objArg)));
962 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
974 JSC::JSValue result = toJS(exec, castedThis->globalObject(), WTF::getPtr(imp->methodThatRequiresAllArgsAndThrows(strArg, objArg, ec)));
985 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
990 imp->serializedValue(serializedArg);
1000 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
1005 imp->idbKey(key);
1015 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
1022 imp->optionsObject(oo);
1030 imp->optionsObject(oo, ooo);
1040 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
1043 imp->methodWithException(ec);
1072 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
1075 size_t maxStackSize = imp->shouldCaptureFullStackTrace() ? ScriptCallStack::maxCallStackSizeToCapture : 1;
1081 imp->customArgsAndException(intArg, scriptArguments, callStack, ec);
1092 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
1096 imp->addEventListener(ustringToAtomicString(exec->argument(0).toString(exec)), JSEventListener::create(asObject(listener), castedThis, false, currentWorld(exec)), exec->argument(2).toBoolean(exec));
1106 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
1110 imp->removeEventListener(ustringToAtomicString(exec->argument(0).toString(exec)), JSEventListener::create(asObject(listener), castedThis, false, currentWorld(exec)).get(), exec->argument(2).toBoolean(exec));
1120 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
1125 imp->withDynamicFrame(dynamicFrame);
1135 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
1143 imp->withDynamicFrameAndArg(dynamicFrame, intArg);
1153 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
1163 imp->withDynamicFrameAndOptionalArg(dynamicFrame, intArg);
1171 imp->withDynamicFrameAndOptionalArg(dynamicFrame, intArg, optionalArg);
1181 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
1189 imp->withDynamicFrameAndUserGesture(dynamicFrame, intArg, processingUserGesture());
1199 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
1209 imp->withDynamicFrameAndUserGestureASAD(dynamicFrame, intArg);
1217 imp->withDynamicFrameAndUserGestureASAD(dynamicFrame, intArg, optionalArg, processingUserGesture());
1227 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
1229 imp->withScriptStateVoid(exec);
1239 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
1242 JSC::JSValue result = toJS(exec, castedThis->globalObject(), WTF::getPtr(imp->withScriptStateObj(exec)));
1254 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
1257 imp->withScriptStateVoidException(exec, ec);
1268 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
1272 JSC::JSValue result = toJS(exec, castedThis->globalObject(), WTF::getPtr(imp->withScriptStateObjException(exec, ec)));
1285 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
1290 imp->withScriptExecutionContext(scriptContext);
1300 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
1304 imp->methodWithOptionalArg();
1312 imp->methodWithOptionalArg(opt);
1322 imp = static_cast<TestObj*>(castedThis->impl());
1329 imp->methodWithNonOptionalArgAndOptionalArg(nonOpt);
1337 imp->methodWithNonOptionalArgAndOptionalArg(nonOpt, opt);
1347 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
1354 imp->methodWithNonOptionalArgAndTwoOptionalArgs(nonOpt);
1365 imp->methodWithNonOptionalArgAndTwoOptionalArgs(nonOpt, opt1, opt2);
1375 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
1382 imp->methodWithCallbackArg(callback);
1392 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
1402 imp->methodWithNonCallbackArgAndCallbackArg(nonCallback, callback);
1412 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
1422 imp->methodWithCallbackAndOptionalArg(callback);
1432 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
1440 imp->overloadedMethod(objArg, strArg);
1450 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
1457 imp->overloadedMethod(objArg);
1465 imp->overloadedMethod(objArg, intArg);
1475 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
1480 imp->overloadedMethod(strArg);
1490 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
1495 imp->overloadedMethod(intArg);
1505 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
1512 imp->overloadedMethod(callback);
1537 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
1539 imp->classMethod();
1549 TestObj* imp = static_cast<TestObj*>(castedThis->impl());
1554 JSC::JSValue result = jsNumber(imp->classMethodWithOptional());
1563 JSC::JSValue result = jsNumber(imp->classMethodWithOptional(arg));