Home | History | Annotate | Download | only in qwebframe

Lines Matching refs:arg

207     Q_INVOKABLE void myInvokableWithIntArg(int arg) {
209 m_actuals << arg;
211 Q_INVOKABLE void myInvokableWithLonglongArg(qlonglong arg) {
213 m_actuals << arg;
215 Q_INVOKABLE void myInvokableWithFloatArg(float arg) {
217 m_actuals << arg;
219 Q_INVOKABLE void myInvokableWithDoubleArg(double arg) {
221 m_actuals << arg;
223 Q_INVOKABLE void myInvokableWithStringArg(const QString &arg) {
225 m_actuals << arg;
308 Q_INVOKABLE void myInvokableWithVoidStarArg(void* arg) {
310 m_actuals << qVariantFromValue(arg);
312 Q_INVOKABLE void myInvokableWithAmbiguousArg(int arg) {
314 m_actuals << qVariantFromValue(arg);
316 Q_INVOKABLE void myInvokableWithAmbiguousArg(uint arg) {
318 m_actuals << qVariantFromValue(arg);
332 Q_INVOKABLE void myInvokableWithPointArg(const QPoint &arg) {
334 m_actuals << qVariantFromValue(arg);
336 Q_INVOKABLE void myInvokableWithPointArg(const QPointF &arg) {
338 m_actuals << qVariantFromValue(arg);
340 Q_INVOKABLE void myInvokableWithBoolArg(bool arg) {
342 m_actuals << arg;
348 void emitMySignalWithIntArg(int arg) {
349 emit mySignalWithIntArg(arg);
351 void emitMySignal2(bool arg) {
352 emit mySignal2(arg);
368 void mySlotWithIntArg(int arg) {
370 m_actuals << arg;
372 void mySlotWithDoubleArg(double arg) {
374 m_actuals << arg;
376 void mySlotWithStringArg(const QString &arg) {
378 m_actuals << arg;
384 void myOverloadedSlot(QObject* arg) {
386 m_actuals << qVariantFromValue(arg);
388 void myOverloadedSlot(bool arg) {
390 m_actuals << arg;
392 void myOverloadedSlot(const QStringList &arg) {
394 m_actuals << arg;
396 void myOverloadedSlot(double arg) {
398 m_actuals << arg;
400 void myOverloadedSlot(float arg) {
402 m_actuals << arg;
404 void myOverloadedSlot(int arg) {
406 m_actuals << arg;
408 void myOverloadedSlot(const QString &arg) {
410 m_actuals << arg;
412 void myOverloadedSlot(const QColor &arg) {
414 m_actuals << arg;
416 void myOverloadedSlot(const QBrush &arg) {
418 m_actuals << arg;
420 void myOverloadedSlot(const QDateTime &arg) {
422 m_actuals << arg;
424 void myOverloadedSlot(const QDate &arg) {
426 m_actuals << arg;
428 void myOverloadedSlot(const QRegExp &arg) {
430 m_actuals << arg;
432 void myOverloadedSlot(const QVariant &arg) {
434 m_actuals << arg;
437 void qscript_call(int arg) {
439 m_actuals << arg;
452 void mySignalWithIntArg(int arg);
453 void mySignalWithDoubleArg(double arg);
454 void mySignal2(bool arg = false);
2378 QSKIP(QString("This test requires access to resources found in '%1'").arg(TESTS_SOURCE_DIR).toLatin1().constData(), SkipAll);
2890 QString methodLookup = QString::fromLatin1("%0['%1']").arg(objectExpression).arg(methodName);
2891 QCOMPARE(evalJSV(QString::fromLatin1("Object.getOwnPropertyNames(%0).sort()").arg(methodLookup)).toStringList(), expectedPropertyNames);
2895 QCOMPARE(evalJS(QString::fromLatin1("%0.hasOwnProperty('%1')").arg(methodLookup).arg(name)), sTrue);
2896 evalJS(QString::fromLatin1("var descriptor = Object.getOwnPropertyDescriptor(%0, '%1')").arg(methodLookup).arg(name));
2900 QCOMPARE(evalJS(QString::fromLatin1("descriptor.value === %0['%1']").arg(methodLookup).arg(name)), sTrue);