| Line | Source | Count | 
| 1 |  | - | 
| 2 |  | - | 
| 3 |  | - | 
| 4 |  | - | 
| 5 |  | - | 
| 6 |  | - | 
| 7 |  | - | 
| 8 |  | - | 
| 9 |  | - | 
| 10 | static inline bool isValidCharacterNoDash(QChar c) | - | 
| 11 | { | - | 
| 12 |     ushort u = c.unicode(); | - | 
| 13 |     return (u >= 'a' && u <= 'z') | - | 
| 14 |             || (u >= 'A' && u <= 'Z') | - | 
| 15 |             || (u >= '0' && u <= '9') | - | 
| 16 |             || (u == '_'); | - | 
| 17 | } | - | 
| 18 |  | - | 
| 19 | static inline bool isValidCharacter(QChar c) | - | 
| 20 | { | - | 
| 21 |     ushort u = c.unicode(); | - | 
| 22 |     return (u >= 'a' && u <= 'z') | - | 
| 23 |             || (u >= 'A' && u <= 'Z') | - | 
| 24 |             || (u >= '0' && u <= '9') | - | 
| 25 |             || (u == '_') || (u == '-'); | - | 
| 26 | } | - | 
| 27 |  | - | 
| 28 | static inline bool isValidNumber(QChar c) | - | 
| 29 | { | - | 
| 30 |     ushort u = c.unicode(); | - | 
| 31 |     return (u >= '0' && u <= '9'); | - | 
| 32 | } | - | 
| 33 |  | - | 
| 34 |  | - | 
| 35 | static bool argToString(const QDBusArgument &arg, QString &out); | - | 
| 36 |  | - | 
| 37 | static bool variantToString(const QVariant &arg, QString &out) | - | 
| 38 | { | - | 
| 39 |     int argType = arg.userType(); | - | 
| 40 |  | - | 
| 41 |     if (argType == QVariant::StringList| TRUE | evaluated 9 times by 1 testEvaluated by:- tst_qdbusmarshall - unknown status
 
   |  | FALSE | evaluated 599 times by 1 testEvaluated by:- tst_qdbusmarshall - unknown status
 
   |  
  ) { | 9-599 | 
| 42 |         out += QLatin1Char('{'); | - | 
| 43 |         const QStringList list = arg.toStringList(); | - | 
| 44 |         for (QForeachContainer<typename QtPrivate::remove_reference<decltype(list)>::type> _container_((list)); _container_.control && _container_.i != _container_.e; ++_container_.i, _container_.control ^= 1)for (const QString &item = *_container_.i; _container_.control; _container_.control = 0: list) | - | 
| 45 |             out += QLatin1Char('\"') + item + QLatin1String("\", ");executed 14 times by 1 test:  out += QLatin1Char('\"') + item + QLatin1String("\", ");Executed by:- tst_qdbusmarshall - unknown status
 
    | 14 | 
| 46 |         if (!list.isEmpty()| TRUE | evaluated 6 times by 1 testEvaluated by:- tst_qdbusmarshall - unknown status
 
   |  | FALSE | evaluated 3 times by 1 testEvaluated by:- tst_qdbusmarshall - unknown status
 
   |  
  ) | 3-6 | 
| 47 |             out.chop(2);executed 6 times by 1 test:  out.chop(2);Executed by:- tst_qdbusmarshall - unknown status
 
    | 6 | 
| 48 |         out += QLatin1Char('}'); | - | 
| 49 |     }executed 9 times by 1 test:  end of blockExecuted by:- tst_qdbusmarshall - unknown status
 
    else if (argType == QVariant::ByteArray| TRUE | evaluated 17 times by 1 testEvaluated by:- tst_qdbusmarshall - unknown status
 
   |  | FALSE | evaluated 582 times by 1 testEvaluated by:- tst_qdbusmarshall - unknown status
 
   |  
  ) { | 9-582 | 
| 50 |         out += QLatin1Char('{'); | - | 
| 51 |         QByteArray list = arg.toByteArray(); | - | 
| 52 |         for (int i = 0; i < list.count()| TRUE | evaluated 49 times by 1 testEvaluated by:- tst_qdbusmarshall - unknown status
 
   |  | FALSE | evaluated 17 times by 1 testEvaluated by:- tst_qdbusmarshall - unknown status
 
   |  
  ; ++i) { | 17-49 | 
| 53 |             out += QString::number(list.at(i)); | - | 
| 54 |             out += QLatin1String(", "); | - | 
| 55 |         }executed 49 times by 1 test:  end of blockExecuted by:- tst_qdbusmarshall - unknown status
 
    | 49 | 
| 56 |         if (!list.isEmpty()| TRUE | evaluated 11 times by 1 testEvaluated by:- tst_qdbusmarshall - unknown status
 
   |  | FALSE | evaluated 6 times by 1 testEvaluated by:- tst_qdbusmarshall - unknown status
 
   |  
  ) | 6-11 | 
| 57 |             out.chop(2);executed 11 times by 1 test:  out.chop(2);Executed by:- tst_qdbusmarshall - unknown status
 
    | 11 | 
| 58 |         out += QLatin1Char('}'); | - | 
| 59 |     }executed 17 times by 1 test:  end of blockExecuted by:- tst_qdbusmarshall - unknown status
 
    else if (argType == QVariant::List| TRUE | never evaluated |  | FALSE | evaluated 582 times by 1 testEvaluated by:- tst_qdbusmarshall - unknown status
 
   |  
  ) { | 0-582 | 
| 60 |         out += QLatin1Char('{'); | - | 
| 61 |         const QList<QVariant> list = arg.toList(); | - | 
| 62 |         for (QForeachContainer<typename QtPrivate::remove_reference<decltype(list)>::type> _container_((list)); _container_.control && _container_.i != _container_.e; ++_container_.i, _container_.control ^= 1)for (const QVariant &item = *_container_.i; _container_.control; _container_.control = 0: list) { | - | 
| 63 |             if (!variantToString(item, out)| TRUE | never evaluated |  | FALSE | never evaluated |  
  ) | 0 | 
| 64 |                 return never executed: return false;  false;never executed: return false;  | 0 | 
| 65 |             out += QLatin1String(", "); | - | 
| 66 |         } never executed: end of block  | 0 | 
| 67 |         if (!list.isEmpty()| TRUE | never evaluated |  | FALSE | never evaluated |  
  ) | 0 | 
| 68 |             out.chop(2); never executed: out.chop(2);  | 0 | 
| 69 |         out += QLatin1Char('}'); | - | 
| 70 |     } never executed: end of block  else if (argType == QMetaType::Char| TRUE | never evaluated |  | FALSE | evaluated 582 times by 1 testEvaluated by:- tst_qdbusmarshall - unknown status
 
   |  
   || argType == QMetaType::Short| TRUE | evaluated 20 times by 1 testEvaluated by:- tst_qdbusmarshall - unknown status
 
   |  | FALSE | evaluated 562 times by 1 testEvaluated by:- tst_qdbusmarshall - unknown status
 
   |  
   || argType == QMetaType::Int| TRUE | evaluated 179 times by 1 testEvaluated by:- tst_qdbusmarshall - unknown status
 
   |  | FALSE | evaluated 383 times by 1 testEvaluated by:- tst_qdbusmarshall - unknown status
 
   |  
  | 0-582 | 
| 71 |                || argType == QMetaType::Long| TRUE | never evaluated |  | FALSE | evaluated 383 times by 1 testEvaluated by:- tst_qdbusmarshall - unknown status
 
   |  
   || argType == QMetaType::LongLong| TRUE | evaluated 17 times by 1 testEvaluated by:- tst_qdbusmarshall - unknown status
 
   |  | FALSE | evaluated 366 times by 1 testEvaluated by:- tst_qdbusmarshall - unknown status
 
   |  
  ) { | 0-383 | 
| 72 |         out += QString::number(arg.toLongLong()); | - | 
| 73 |     }executed 216 times by 1 test:  end of blockExecuted by:- tst_qdbusmarshall - unknown status
 
    else if (argType == QMetaType::UChar| TRUE | evaluated 1 time by 1 testEvaluated by:- tst_qdbusmarshall - unknown status
 
   |  | FALSE | evaluated 365 times by 1 testEvaluated by:- tst_qdbusmarshall - unknown status
 
   |  
   || argType == QMetaType::UShort| TRUE | evaluated 11 times by 1 testEvaluated by:- tst_qdbusmarshall - unknown status
 
   |  | FALSE | evaluated 354 times by 1 testEvaluated by:- tst_qdbusmarshall - unknown status
 
   |  
   || argType == QMetaType::UInt| TRUE | evaluated 16 times by 1 testEvaluated by:- tst_qdbusmarshall - unknown status
 
   |  | FALSE | evaluated 338 times by 1 testEvaluated by:- tst_qdbusmarshall - unknown status
 
   |  
  | 1-365 | 
| 74 |                || argType == QMetaType::ULong| TRUE | never evaluated |  | FALSE | evaluated 338 times by 1 testEvaluated by:- tst_qdbusmarshall - unknown status
 
   |  
   || argType == QMetaType::ULongLong| TRUE | evaluated 9 times by 1 testEvaluated by:- tst_qdbusmarshall - unknown status
 
   |  | FALSE | evaluated 329 times by 1 testEvaluated by:- tst_qdbusmarshall - unknown status
 
   |  
  ) { | 0-338 | 
| 75 |         out += QString::number(arg.toULongLong()); | - | 
| 76 |     }executed 37 times by 1 test:  end of blockExecuted by:- tst_qdbusmarshall - unknown status
 
    else if (argType == QMetaType::Double| TRUE | evaluated 29 times by 1 testEvaluated by:- tst_qdbusmarshall - unknown status
 
   |  | FALSE | evaluated 300 times by 1 testEvaluated by:- tst_qdbusmarshall - unknown status
 
   |  
  ) { | 29-300 | 
| 77 |         out += QString::number(arg.toDouble()); | - | 
| 78 |     }executed 29 times by 1 test:  end of blockExecuted by:- tst_qdbusmarshall - unknown status
 
    else if (argType == QMetaType::Bool| TRUE | evaluated 10 times by 1 testEvaluated by:- tst_qdbusmarshall - unknown status
 
   |  | FALSE | evaluated 290 times by 1 testEvaluated by:- tst_qdbusmarshall - unknown status
 
   |  
  ) { | 10-290 | 
| 79 |         out += QLatin1String(arg.toBool() ? "true" : "false"); | - | 
| 80 |     }executed 10 times by 1 test:  end of blockExecuted by:- tst_qdbusmarshall - unknown status
 
    else if (argType == qMetaTypeId<QDBusArgument>()| TRUE | evaluated 105 times by 1 testEvaluated by:- tst_qdbusmarshall - unknown status
 
   |  | FALSE | evaluated 185 times by 1 testEvaluated by:- tst_qdbusmarshall - unknown status
 
   |  
  ) { | 10-185 | 
| 81 |         argToString(qvariant_cast<QDBusArgument>(arg), out); | - | 
| 82 |     }executed 105 times by 1 test:  end of blockExecuted by:- tst_qdbusmarshall - unknown status
 
    else if (argType == qMetaTypeId<QDBusObjectPath>()| TRUE | evaluated 10 times by 1 testEvaluated by:- tst_qdbusmarshall - unknown status
 
   |  | FALSE | evaluated 175 times by 1 testEvaluated by:- tst_qdbusmarshall - unknown status
 
   |  
  ) { | 10-175 | 
| 83 |         const QString path = qvariant_cast<QDBusObjectPath>(arg).path(); | - | 
| 84 |         out += QLatin1String("[ObjectPath: "); | - | 
| 85 |         out += path; | - | 
| 86 |         out += QLatin1Char(']'); | - | 
| 87 |     }executed 10 times by 1 test:  end of blockExecuted by:- tst_qdbusmarshall - unknown status
 
    else if (argType == qMetaTypeId<QDBusSignature>()| TRUE | evaluated 11 times by 1 testEvaluated by:- tst_qdbusmarshall - unknown status
 
   |  | FALSE | evaluated 164 times by 1 testEvaluated by:- tst_qdbusmarshall - unknown status
 
   |  
  ) { | 10-164 | 
| 88 |         out += QLatin1String("[Signature: ") + qvariant_cast<QDBusSignature>(arg).signature(); | - | 
| 89 |         out += QLatin1Char(']'); | - | 
| 90 |     }executed 11 times by 1 test:  end of blockExecuted by:- tst_qdbusmarshall - unknown status
 
    else if (argType == qMetaTypeId<QDBusUnixFileDescriptor>()| TRUE | evaluated 6 times by 1 testEvaluated by:- tst_qdbusmarshall - unknown status
 
   |  | FALSE | evaluated 158 times by 1 testEvaluated by:- tst_qdbusmarshall - unknown status
 
   |  
  ) { | 6-158 | 
| 91 |         out += QLatin1String("[Unix FD: "); | - | 
| 92 |         out += QLatin1String(qvariant_cast<QDBusUnixFileDescriptor>(arg).isValid() ? "valid" : "not valid"); | - | 
| 93 |         out += QLatin1Char(']'); | - | 
| 94 |     }executed 6 times by 1 test:  end of blockExecuted by:- tst_qdbusmarshall - unknown status
 
    else if (argType == qMetaTypeId<QDBusVariant>()| TRUE | evaluated 64 times by 1 testEvaluated by:- tst_qdbusmarshall - unknown status
 
   |  | FALSE | evaluated 94 times by 1 testEvaluated by:- tst_qdbusmarshall - unknown status
 
   |  
  ) { | 6-94 | 
| 95 |         const QVariant v = qvariant_cast<QDBusVariant>(arg).variant(); | - | 
| 96 |         out += QLatin1String("[Variant"); | - | 
| 97 |         int vUserType = v.userType(); | - | 
| 98 |         if (vUserType != qMetaTypeId<QDBusVariant>()| TRUE | evaluated 60 times by 1 testEvaluated by:- tst_qdbusmarshall - unknown status
 
   |  | FALSE | evaluated 4 times by 1 testEvaluated by:- tst_qdbusmarshall - unknown status
 
   |  
  | 4-60 | 
| 99 |                 && vUserType != qMetaTypeId<QDBusSignature>()| TRUE | evaluated 59 times by 1 testEvaluated by:- tst_qdbusmarshall - unknown status
 
   |  | FALSE | evaluated 1 time by 1 testEvaluated by:- tst_qdbusmarshall - unknown status
 
   |  
  | 1-59 | 
| 100 |                 && vUserType != qMetaTypeId<QDBusObjectPath>()| TRUE | evaluated 58 times by 1 testEvaluated by:- tst_qdbusmarshall - unknown status
 
   |  | FALSE | evaluated 1 time by 1 testEvaluated by:- tst_qdbusmarshall - unknown status
 
   |  
  | 1-58 | 
| 101 |                 && vUserType != qMetaTypeId<QDBusArgument>()| TRUE | evaluated 45 times by 1 testEvaluated by:- tst_qdbusmarshall - unknown status
 
   |  | FALSE | evaluated 13 times by 1 testEvaluated by:- tst_qdbusmarshall - unknown status
 
   |  
  ) | 13-45 | 
| 102 |             out += QLatin1Char('(') + QLatin1String(v.typeName()) + QLatin1Char(')');executed 45 times by 1 test:  out += QLatin1Char('(') + QLatin1String(v.typeName()) + QLatin1Char(')');Executed by:- tst_qdbusmarshall - unknown status
 
    | 45 | 
| 103 |         out += QLatin1String(": "); | - | 
| 104 |         if (!variantToString(v, out)| TRUE | never evaluated |  | FALSE | evaluated 64 times by 1 testEvaluated by:- tst_qdbusmarshall - unknown status
 
   |  
  ) | 0-64 | 
| 105 |             return never executed: return false;  false;never executed: return false;  | 0 | 
| 106 |         out += QLatin1Char(']'); | - | 
| 107 |     }executed 64 times by 1 test:  end of blockExecuted by:- tst_qdbusmarshall - unknown status
 
    else if (arg.canConvert(QVariant::String)| TRUE | evaluated 94 times by 1 testEvaluated by:- tst_qdbusmarshall - unknown status
 
   |  | FALSE | never evaluated |  
  ) { | 0-94 | 
| 108 |         out += QLatin1Char('\"') + arg.toString() + QLatin1Char('\"'); | - | 
| 109 |     }executed 94 times by 1 test:  end of blockExecuted by:- tst_qdbusmarshall - unknown status
 
    else { | 94 | 
| 110 |         out += QLatin1Char('['); | - | 
| 111 |         out += QLatin1String(arg.typeName()); | - | 
| 112 |         out += QLatin1Char(']'); | - | 
| 113 |     } never executed: end of block  | 0 | 
| 114 |  | - | 
| 115 |     returnexecuted 608 times by 1 test:  return true;Executed by:- tst_qdbusmarshall - unknown status
 
    true;executed 608 times by 1 test:  return true;Executed by:- tst_qdbusmarshall - unknown status
 
    | 608 | 
| 116 | } | - | 
| 117 |  | - | 
| 118 | bool argToString(const QDBusArgument &busArg, QString &out) | - | 
| 119 | { | - | 
| 120 |     QString busSig = busArg.currentSignature(); | - | 
| 121 |     bool doIterate = false; | - | 
| 122 |     QDBusArgument::ElementType elementType = busArg.currentType(); | - | 
| 123 |  | - | 
| 124 |     if (elementType != QDBusArgument::BasicType && elementType != QDBusArgument::VariantType | - | 
| 125 |             && elementType != QDBusArgument::MapEntryType) | - | 
| 126 |         out += QLatin1String("[Argument: ") + busSig + QLatin1Char(' '); | - | 
| 127 |  | - | 
| 128 |     switch (elementType) { | - | 
| 129 |         case QDBusArgument::BasicType: | - | 
| 130 |         case QDBusArgument::VariantType: | - | 
| 131 |             if (!variantToString(busArg.asVariant(), out)) | - | 
| 132 |                 return false; | - | 
| 133 |             break; | - | 
| 134 |         case QDBusArgument::StructureType: | - | 
| 135 |             busArg.beginStructure(); | - | 
| 136 |             doIterate = true; | - | 
| 137 |             break; | - | 
| 138 |         case QDBusArgument::ArrayType: | - | 
| 139 |             busArg.beginArray(); | - | 
| 140 |             out += QLatin1Char('{'); | - | 
| 141 |             doIterate = true; | - | 
| 142 |             break; | - | 
| 143 |         case QDBusArgument::MapType: | - | 
| 144 |             busArg.beginMap(); | - | 
| 145 |             out += QLatin1Char('{'); | - | 
| 146 |             doIterate = true; | - | 
| 147 |             break; | - | 
| 148 |         case QDBusArgument::MapEntryType: | - | 
| 149 |             busArg.beginMapEntry(); | - | 
| 150 |             if (!variantToString(busArg.asVariant(), out)) | - | 
| 151 |                 return false; | - | 
| 152 |             out += QLatin1String(" = "); | - | 
| 153 |             if (!argToString(busArg, out)) | - | 
| 154 |                 return false; | - | 
| 155 |             busArg.endMapEntry(); | - | 
| 156 |             break; | - | 
| 157 |         case QDBusArgument::UnknownType: | - | 
| 158 |         default: | - | 
| 159 |             out += QLatin1String("<ERROR - Unknown Type>"); | - | 
| 160 |             return false; | - | 
| 161 |     } | - | 
| 162 |     if (doIterate && !busArg.atEnd()) { | - | 
| 163 |         while (!busArg.atEnd()) { | - | 
| 164 |             if (!argToString(busArg, out)) | - | 
| 165 |                 return false; | - | 
| 166 |             out += QLatin1String(", "); | - | 
| 167 |         } | - | 
| 168 |         out.chop(2); | - | 
| 169 |     } | - | 
| 170 |     switch (elementType) { | - | 
| 171 |         case QDBusArgument::BasicType: | - | 
| 172 |         case QDBusArgument::VariantType: | - | 
| 173 |         case QDBusArgument::UnknownType: | - | 
| 174 |         case QDBusArgument::MapEntryType: | - | 
| 175 |  | - | 
| 176 |             break; | - | 
| 177 |         case QDBusArgument::StructureType: | - | 
| 178 |             busArg.endStructure(); | - | 
| 179 |             break; | - | 
| 180 |         case QDBusArgument::ArrayType: | - | 
| 181 |             out += QLatin1Char('}'); | - | 
| 182 |             busArg.endArray(); | - | 
| 183 |             break; | - | 
| 184 |         case QDBusArgument::MapType: | - | 
| 185 |             out += QLatin1Char('}'); | - | 
| 186 |             busArg.endMap(); | - | 
| 187 |             break; | - | 
| 188 |     } | - | 
| 189 |  | - | 
| 190 |     if (elementType != QDBusArgument::BasicType && elementType != QDBusArgument::VariantType | - | 
| 191 |             && elementType != QDBusArgument::MapEntryType) | - | 
| 192 |         out += QLatin1Char(']'); | - | 
| 193 |  | - | 
| 194 |     return true; | - | 
| 195 | } | - | 
| 196 |  | - | 
| 197 |  | - | 
| 198 |  | - | 
| 199 | static const char oneLetterTypes[] = "vsogybnqiuxtdh"; | - | 
| 200 | static const char basicTypes[] = "sogybnqiuxtdh"; | - | 
| 201 | static const char fixedTypes[] = "ybnqiuxtdh"; | - | 
| 202 |  | - | 
| 203 | static bool isBasicType(int c) | - | 
| 204 | { | - | 
| 205 |     return c != ((int) '\0') && strchr(basicTypes, c) != __null; | - | 
| 206 | } | - | 
| 207 |  | - | 
| 208 | static bool isFixedType(int c) | - | 
| 209 | { | - | 
| 210 |     return c != ((int) '\0') && strchr(fixedTypes, c) != __null; | - | 
| 211 | } | - | 
| 212 |  | - | 
| 213 |  | - | 
| 214 |  | - | 
| 215 | static const char *validateSingleType(const char *signature) | - | 
| 216 | { | - | 
| 217 |     char c = *signature; | - | 
| 218 |     if (c == ((int) '\0')) | - | 
| 219 |         return 0; | - | 
| 220 |  | - | 
| 221 |  | - | 
| 222 |     if (strchr(oneLetterTypes, c) != __null) | - | 
| 223 |         return signature + 1; | - | 
| 224 |  | - | 
| 225 |  | - | 
| 226 |     if (c == ((int) 'a')) { | - | 
| 227 |  | - | 
| 228 |  | - | 
| 229 |         c = *++signature; | - | 
| 230 |         if (c == ((int) '{')) { | - | 
| 231 |  | - | 
| 232 |  | - | 
| 233 |  | - | 
| 234 |             c = *++signature; | - | 
| 235 |             if (!isBasicType(c)) | - | 
| 236 |                 return 0; | - | 
| 237 |             signature = validateSingleType(signature + 1); | - | 
| 238 |             return signature && *signature == ((int) '}') ? signature + 1 : 0; | - | 
| 239 |         } | - | 
| 240 |  | - | 
| 241 |         return validateSingleType(signature); | - | 
| 242 |     } | - | 
| 243 |  | - | 
| 244 |     if (c == ((int) '(')) { | - | 
| 245 |  | - | 
| 246 |         ++signature; | - | 
| 247 |         while (true) { | - | 
| 248 |             signature = validateSingleType(signature); | - | 
| 249 |             if (!signature) | - | 
| 250 |                 return 0; | - | 
| 251 |             if (*signature == ((int) ')')) | - | 
| 252 |                 return signature + 1; | - | 
| 253 |         } | - | 
| 254 |     } | - | 
| 255 |  | - | 
| 256 |  | - | 
| 257 |     return 0; | - | 
| 258 | } | - | 
| 259 | namespace QDBusUtil | - | 
| 260 | { | - | 
| 261 |  | - | 
| 262 |  | - | 
| 263 |  | - | 
| 264 |  | - | 
| 265 |  | - | 
| 266 |     QString argumentToString(const QVariant &arg) | - | 
| 267 |     { | - | 
| 268 |         QString out; | - | 
| 269 |  | - | 
| 270 |  | - | 
| 271 |         variantToString(arg, out); | - | 
| 272 |  | - | 
| 273 |  | - | 
| 274 |  | - | 
| 275 |  | - | 
| 276 |         return out; | - | 
| 277 |     } | - | 
| 278 |  | - | 
| 279 |  | - | 
| 280 |  | - | 
| 281 |  | - | 
| 282 |  | - | 
| 283 |  | - | 
| 284 |     bool isValidPartOfObjectPath(const QStringQStringRef &part) | - | 
| 285 |     { | - | 
| 286 |         if (part.isEmpty()| TRUE | never evaluated |  | FALSE | evaluated 10229 times by 161 testsEvaluated by:- tst_Gestures
 - tst_ModelTest
 - tst_NetworkSelfTest
 - tst_QAbstractButton
 - tst_QAbstractItemView
 - tst_QAbstractNetworkCache
 - tst_QAbstractScrollArea
 - tst_QAbstractSlider
 - tst_QAbstractSpinBox
 - tst_QAccessibility
 - tst_QAction
 - tst_QActionGroup
 - tst_QApplication
 - tst_QBackingStore
 - tst_QBoxLayout
 - tst_QButtonGroup
 - tst_QCalendarWidget
 - tst_QCheckBox
 - tst_QColorDialog
 - tst_QColumnView
 - tst_QComboBox
 - tst_QCommandLinkButton
 - tst_QDataWidgetMapper
 - tst_QDateTimeEdit
 - tst_QDesktopWidget
 - ...
 
   |  
  ) | 0-10229 | 
| 287 |             return never executed: return false;  false;never executed: return false;  | 0 | 
| 288 |  | - | 
| 289 |         const QChar *c = part.unicode(); | - | 
| 290 |         for (int i = 0; i < part.length()| TRUE | evaluated 63128 times by 161 testsEvaluated by:- tst_Gestures
 - tst_ModelTest
 - tst_NetworkSelfTest
 - tst_QAbstractButton
 - tst_QAbstractItemView
 - tst_QAbstractNetworkCache
 - tst_QAbstractScrollArea
 - tst_QAbstractSlider
 - tst_QAbstractSpinBox
 - tst_QAccessibility
 - tst_QAction
 - tst_QActionGroup
 - tst_QApplication
 - tst_QBackingStore
 - tst_QBoxLayout
 - tst_QButtonGroup
 - tst_QCalendarWidget
 - tst_QCheckBox
 - tst_QColorDialog
 - tst_QColumnView
 - tst_QComboBox
 - tst_QCommandLinkButton
 - tst_QDataWidgetMapper
 - tst_QDateTimeEdit
 - tst_QDesktopWidget
 - ...
 
   |  | FALSE | evaluated 10229 times by 161 testsEvaluated by:- tst_Gestures
 - tst_ModelTest
 - tst_NetworkSelfTest
 - tst_QAbstractButton
 - tst_QAbstractItemView
 - tst_QAbstractNetworkCache
 - tst_QAbstractScrollArea
 - tst_QAbstractSlider
 - tst_QAbstractSpinBox
 - tst_QAccessibility
 - tst_QAction
 - tst_QActionGroup
 - tst_QApplication
 - tst_QBackingStore
 - tst_QBoxLayout
 - tst_QButtonGroup
 - tst_QCalendarWidget
 - tst_QCheckBox
 - tst_QColorDialog
 - tst_QColumnView
 - tst_QComboBox
 - tst_QCommandLinkButton
 - tst_QDataWidgetMapper
 - tst_QDateTimeEdit
 - tst_QDesktopWidget
 - ...
 
   |  
  ; ++i) | 10229-63128 | 
| 291 |             if (!isValidCharacterNoDash(c[i])| TRUE | never evaluated |  | FALSE | evaluated 63128 times by 161 testsEvaluated by:- tst_Gestures
 - tst_ModelTest
 - tst_NetworkSelfTest
 - tst_QAbstractButton
 - tst_QAbstractItemView
 - tst_QAbstractNetworkCache
 - tst_QAbstractScrollArea
 - tst_QAbstractSlider
 - tst_QAbstractSpinBox
 - tst_QAccessibility
 - tst_QAction
 - tst_QActionGroup
 - tst_QApplication
 - tst_QBackingStore
 - tst_QBoxLayout
 - tst_QButtonGroup
 - tst_QCalendarWidget
 - tst_QCheckBox
 - tst_QColorDialog
 - tst_QColumnView
 - tst_QComboBox
 - tst_QCommandLinkButton
 - tst_QDataWidgetMapper
 - tst_QDateTimeEdit
 - tst_QDesktopWidget
 - ...
 
   |  
  ) | 0-63128 | 
| 292 |                 return never executed: return false;  false;never executed: return false;  | 0 | 
| 293 |  | - | 
| 294 |         returnexecuted 10229 times by 161 tests:  return true;Executed by:- tst_Gestures
 - tst_ModelTest
 - tst_NetworkSelfTest
 - tst_QAbstractButton
 - tst_QAbstractItemView
 - tst_QAbstractNetworkCache
 - tst_QAbstractScrollArea
 - tst_QAbstractSlider
 - tst_QAbstractSpinBox
 - tst_QAccessibility
 - tst_QAction
 - tst_QActionGroup
 - tst_QApplication
 - tst_QBackingStore
 - tst_QBoxLayout
 - tst_QButtonGroup
 - tst_QCalendarWidget
 - tst_QCheckBox
 - tst_QColorDialog
 - tst_QColumnView
 - tst_QComboBox
 - tst_QCommandLinkButton
 - tst_QDataWidgetMapper
 - tst_QDateTimeEdit
 - tst_QDesktopWidget
 - ...
 
    true;executed 10229 times by 161 tests:  return true;Executed by:- tst_Gestures
 - tst_ModelTest
 - tst_NetworkSelfTest
 - tst_QAbstractButton
 - tst_QAbstractItemView
 - tst_QAbstractNetworkCache
 - tst_QAbstractScrollArea
 - tst_QAbstractSlider
 - tst_QAbstractSpinBox
 - tst_QAccessibility
 - tst_QAction
 - tst_QActionGroup
 - tst_QApplication
 - tst_QBackingStore
 - tst_QBoxLayout
 - tst_QButtonGroup
 - tst_QCalendarWidget
 - tst_QCheckBox
 - tst_QColorDialog
 - tst_QColumnView
 - tst_QComboBox
 - tst_QCommandLinkButton
 - tst_QDataWidgetMapper
 - tst_QDateTimeEdit
 - tst_QDesktopWidget
 - ...
 
    | 10229 | 
| 295 |     } | - | 
| 296 |     bool isValidInterfaceName(const QString& ifaceName) | - | 
| 297 |     { | - | 
| 298 |         if (ifaceName.isEmpty()| TRUE | never evaluated |  | FALSE | evaluated 3572 times by 181 testsEvaluated by:- tst_Gestures
 - tst_ModelTest
 - tst_NetworkSelfTest
 - tst_QAbstractButton
 - tst_QAbstractItemView
 - tst_QAbstractNetworkCache
 - tst_QAbstractScrollArea
 - tst_QAbstractSlider
 - tst_QAbstractSpinBox
 - tst_QAccessibility
 - tst_QAction
 - tst_QActionGroup
 - tst_QApplication
 - tst_QBackingStore
 - tst_QBoxLayout
 - tst_QButtonGroup
 - tst_QCalendarWidget
 - tst_QCheckBox
 - tst_QColorDialog
 - tst_QColumnView
 - tst_QComboBox
 - tst_QCommandLinkButton
 - tst_QDataWidgetMapper
 - tst_QDateTimeEdit
 - tst_QDesktopWidget
 - ...
 
   |  
   || ifaceName.length() > 255| TRUE | never evaluated |  | FALSE | evaluated 3572 times by 181 testsEvaluated by:- tst_Gestures
 - tst_ModelTest
 - tst_NetworkSelfTest
 - tst_QAbstractButton
 - tst_QAbstractItemView
 - tst_QAbstractNetworkCache
 - tst_QAbstractScrollArea
 - tst_QAbstractSlider
 - tst_QAbstractSpinBox
 - tst_QAccessibility
 - tst_QAction
 - tst_QActionGroup
 - tst_QApplication
 - tst_QBackingStore
 - tst_QBoxLayout
 - tst_QButtonGroup
 - tst_QCalendarWidget
 - tst_QCheckBox
 - tst_QColorDialog
 - tst_QColumnView
 - tst_QComboBox
 - tst_QCommandLinkButton
 - tst_QDataWidgetMapper
 - tst_QDateTimeEdit
 - tst_QDesktopWidget
 - ...
 
   |  
  ) | 0-3572 | 
| 299 |             return never executed: return false;  false;never executed: return false;  | 0 | 
| 300 |  | - | 
| 301 |         QStringListconst auto parts = ifaceName.splitsplitRef(QLatin1Char('.')); | - | 
| 302 |         if (parts.count() < 2| TRUE | evaluated 1 time by 1 testEvaluated by:- tst_qdbusmarshall - unknown status
 
   |  | FALSE | evaluated 3571 times by 181 testsEvaluated by:- tst_Gestures
 - tst_ModelTest
 - tst_NetworkSelfTest
 - tst_QAbstractButton
 - tst_QAbstractItemView
 - tst_QAbstractNetworkCache
 - tst_QAbstractScrollArea
 - tst_QAbstractSlider
 - tst_QAbstractSpinBox
 - tst_QAccessibility
 - tst_QAction
 - tst_QActionGroup
 - tst_QApplication
 - tst_QBackingStore
 - tst_QBoxLayout
 - tst_QButtonGroup
 - tst_QCalendarWidget
 - tst_QCheckBox
 - tst_QColorDialog
 - tst_QColumnView
 - tst_QComboBox
 - tst_QCommandLinkButton
 - tst_QDataWidgetMapper
 - tst_QDateTimeEdit
 - tst_QDesktopWidget
 - ...
 
   |  
  ) | 1-3571 | 
| 303 |             returnexecuted 1 time by 1 test:  return false;Executed by:- tst_qdbusmarshall - unknown status
 
    false;executed 1 time by 1 test:  return false;Executed by:- tst_qdbusmarshall - unknown status
 
    | 1 | 
| 304 |  | - | 
| 305 |         for (int i = 0; i <const QStringRef &part : parts.count(); ++i) | - | 
| 306 |             if (!isValidMemberName(parts.at(i)))part)| TRUE | never evaluated |  | FALSE | evaluated 13109 times by 181 testsEvaluated by:- tst_Gestures
 - tst_ModelTest
 - tst_NetworkSelfTest
 - tst_QAbstractButton
 - tst_QAbstractItemView
 - tst_QAbstractNetworkCache
 - tst_QAbstractScrollArea
 - tst_QAbstractSlider
 - tst_QAbstractSpinBox
 - tst_QAccessibility
 - tst_QAction
 - tst_QActionGroup
 - tst_QApplication
 - tst_QBackingStore
 - tst_QBoxLayout
 - tst_QButtonGroup
 - tst_QCalendarWidget
 - tst_QCheckBox
 - tst_QColorDialog
 - tst_QColumnView
 - tst_QComboBox
 - tst_QCommandLinkButton
 - tst_QDataWidgetMapper
 - tst_QDateTimeEdit
 - tst_QDesktopWidget
 - ...
 
   |  
  ) | 0-13109 | 
| 307 |                 return never executed: return false;  false;never executed: return false;  | 0 | 
| 308 |  | - | 
| 309 |         returnexecuted 3571 times by 181 tests:  return true;Executed by:- tst_Gestures
 - tst_ModelTest
 - tst_NetworkSelfTest
 - tst_QAbstractButton
 - tst_QAbstractItemView
 - tst_QAbstractNetworkCache
 - tst_QAbstractScrollArea
 - tst_QAbstractSlider
 - tst_QAbstractSpinBox
 - tst_QAccessibility
 - tst_QAction
 - tst_QActionGroup
 - tst_QApplication
 - tst_QBackingStore
 - tst_QBoxLayout
 - tst_QButtonGroup
 - tst_QCalendarWidget
 - tst_QCheckBox
 - tst_QColorDialog
 - tst_QColumnView
 - tst_QComboBox
 - tst_QCommandLinkButton
 - tst_QDataWidgetMapper
 - tst_QDateTimeEdit
 - tst_QDesktopWidget
 - ...
 
    true;executed 3571 times by 181 tests:  return true;Executed by:- tst_Gestures
 - tst_ModelTest
 - tst_NetworkSelfTest
 - tst_QAbstractButton
 - tst_QAbstractItemView
 - tst_QAbstractNetworkCache
 - tst_QAbstractScrollArea
 - tst_QAbstractSlider
 - tst_QAbstractSpinBox
 - tst_QAccessibility
 - tst_QAction
 - tst_QActionGroup
 - tst_QApplication
 - tst_QBackingStore
 - tst_QBoxLayout
 - tst_QButtonGroup
 - tst_QCalendarWidget
 - tst_QCheckBox
 - tst_QColorDialog
 - tst_QColumnView
 - tst_QComboBox
 - tst_QCommandLinkButton
 - tst_QDataWidgetMapper
 - tst_QDateTimeEdit
 - tst_QDesktopWidget
 - ...
 
    | 3571 | 
| 310 |     } | - | 
| 311 |     bool isValidUniqueConnectionName(const QStringQStringRef &connName) | - | 
| 312 |     { | - | 
| 313 |         if (connName.isEmpty()| TRUE | never evaluated |  | FALSE | evaluated 1148 times by 158 testsEvaluated by:- tst_Gestures
 - tst_ModelTest
 - tst_NetworkSelfTest
 - tst_QAbstractButton
 - tst_QAbstractItemView
 - tst_QAbstractNetworkCache
 - tst_QAbstractScrollArea
 - tst_QAbstractSlider
 - tst_QAbstractSpinBox
 - tst_QAccessibility
 - tst_QAction
 - tst_QActionGroup
 - tst_QApplication
 - tst_QBackingStore
 - tst_QBoxLayout
 - tst_QButtonGroup
 - tst_QCalendarWidget
 - tst_QCheckBox
 - tst_QColorDialog
 - tst_QColumnView
 - tst_QComboBox
 - tst_QCommandLinkButton
 - tst_QDataWidgetMapper
 - tst_QDateTimeEdit
 - tst_QDesktopWidget
 - ...
 
   |  
   || connName.length() > 255| TRUE | never evaluated |  | FALSE | evaluated 1148 times by 158 testsEvaluated by:- tst_Gestures
 - tst_ModelTest
 - tst_NetworkSelfTest
 - tst_QAbstractButton
 - tst_QAbstractItemView
 - tst_QAbstractNetworkCache
 - tst_QAbstractScrollArea
 - tst_QAbstractSlider
 - tst_QAbstractSpinBox
 - tst_QAccessibility
 - tst_QAction
 - tst_QActionGroup
 - tst_QApplication
 - tst_QBackingStore
 - tst_QBoxLayout
 - tst_QButtonGroup
 - tst_QCalendarWidget
 - tst_QCheckBox
 - tst_QColorDialog
 - tst_QColumnView
 - tst_QComboBox
 - tst_QCommandLinkButton
 - tst_QDataWidgetMapper
 - tst_QDateTimeEdit
 - tst_QDesktopWidget
 - ...
 
   |  
   || | 0-1148 | 
| 314 |             !connName.startsWith(QLatin1Char(':'))| TRUE | evaluated 799 times by 158 testsEvaluated by:- tst_Gestures
 - tst_ModelTest
 - tst_NetworkSelfTest
 - tst_QAbstractButton
 - tst_QAbstractItemView
 - tst_QAbstractNetworkCache
 - tst_QAbstractScrollArea
 - tst_QAbstractSlider
 - tst_QAbstractSpinBox
 - tst_QAccessibility
 - tst_QAction
 - tst_QActionGroup
 - tst_QApplication
 - tst_QBackingStore
 - tst_QBoxLayout
 - tst_QButtonGroup
 - tst_QCalendarWidget
 - tst_QCheckBox
 - tst_QColorDialog
 - tst_QColumnView
 - tst_QComboBox
 - tst_QCommandLinkButton
 - tst_QDataWidgetMapper
 - tst_QDateTimeEdit
 - tst_QDesktopWidget
 - ...
 
   |  | FALSE | evaluated 349 times by 12 testsEvaluated by:- tst_qdbusabstractadaptor - unknown status
 - tst_qdbusabstractinterface - unknown status
 - tst_qdbusconnection - unknown status
 - tst_qdbusconnection_spyhook - unknown status
 - tst_qdbuscontext - unknown status
 - tst_qdbusinterface - unknown status
 - tst_qdbuslocalcalls - unknown status
 - tst_qdbusmarshall - unknown status
 - tst_qdbuspendingcall - unknown status
 - tst_qdbuspendingreply - unknown status
 - tst_qdbusreply - unknown status
 - tst_qdbusthreading - unknown status
 
   |  
  ) | 349-799 | 
| 315 |             returnexecuted 799 times by 158 tests:  return false;Executed by:- tst_Gestures
 - tst_ModelTest
 - tst_NetworkSelfTest
 - tst_QAbstractButton
 - tst_QAbstractItemView
 - tst_QAbstractNetworkCache
 - tst_QAbstractScrollArea
 - tst_QAbstractSlider
 - tst_QAbstractSpinBox
 - tst_QAccessibility
 - tst_QAction
 - tst_QActionGroup
 - tst_QApplication
 - tst_QBackingStore
 - tst_QBoxLayout
 - tst_QButtonGroup
 - tst_QCalendarWidget
 - tst_QCheckBox
 - tst_QColorDialog
 - tst_QColumnView
 - tst_QComboBox
 - tst_QCommandLinkButton
 - tst_QDataWidgetMapper
 - tst_QDateTimeEdit
 - tst_QDesktopWidget
 - ...
 
    false;executed 799 times by 158 tests:  return false;Executed by:- tst_Gestures
 - tst_ModelTest
 - tst_NetworkSelfTest
 - tst_QAbstractButton
 - tst_QAbstractItemView
 - tst_QAbstractNetworkCache
 - tst_QAbstractScrollArea
 - tst_QAbstractSlider
 - tst_QAbstractSpinBox
 - tst_QAccessibility
 - tst_QAction
 - tst_QActionGroup
 - tst_QApplication
 - tst_QBackingStore
 - tst_QBoxLayout
 - tst_QButtonGroup
 - tst_QCalendarWidget
 - tst_QCheckBox
 - tst_QColorDialog
 - tst_QColumnView
 - tst_QComboBox
 - tst_QCommandLinkButton
 - tst_QDataWidgetMapper
 - tst_QDateTimeEdit
 - tst_QDesktopWidget
 - ...
 
    | 799 | 
| 316 |  | - | 
| 317 |         QStringListconst auto parts = connName.mid(1).split(QLatin1Char('.')); | - | 
| 318 |         if (parts.count() < 1| TRUE | never evaluated |  | FALSE | evaluated 349 times by 12 testsEvaluated by:- tst_qdbusabstractadaptor - unknown status
 - tst_qdbusabstractinterface - unknown status
 - tst_qdbusconnection - unknown status
 - tst_qdbusconnection_spyhook - unknown status
 - tst_qdbuscontext - unknown status
 - tst_qdbusinterface - unknown status
 - tst_qdbuslocalcalls - unknown status
 - tst_qdbusmarshall - unknown status
 - tst_qdbuspendingcall - unknown status
 - tst_qdbuspendingreply - unknown status
 - tst_qdbusreply - unknown status
 - tst_qdbusthreading - unknown status
 
   |  
  ) | 0-349 | 
| 319 |             return never executed: return false;  false;never executed: return false;  | 0 | 
| 320 |  | - | 
| 321 |         for (int i = 0; i < parts.count(); ++i) {const QStringQStringRef &part =: parts.at(i);) { | - | 
| 322 |             if (part.isEmpty()| TRUE | never evaluated |  | FALSE | evaluated 698 times by 12 testsEvaluated by:- tst_qdbusabstractadaptor - unknown status
 - tst_qdbusabstractinterface - unknown status
 - tst_qdbusconnection - unknown status
 - tst_qdbusconnection_spyhook - unknown status
 - tst_qdbuscontext - unknown status
 - tst_qdbusinterface - unknown status
 - tst_qdbuslocalcalls - unknown status
 - tst_qdbusmarshall - unknown status
 - tst_qdbuspendingcall - unknown status
 - tst_qdbuspendingreply - unknown status
 - tst_qdbusreply - unknown status
 - tst_qdbusthreading - unknown status
 
   |  
  ) | 0-698 | 
| 323 |                  return never executed: return false;  false;never executed: return false;  | 0 | 
| 324 |  | - | 
| 325 |             const QChar* c = part.unicode(); | - | 
| 326 |             for (int j = 0; j < part.length()| TRUE | evaluated 1396 times by 12 testsEvaluated by:- tst_qdbusabstractadaptor - unknown status
 - tst_qdbusabstractinterface - unknown status
 - tst_qdbusconnection - unknown status
 - tst_qdbusconnection_spyhook - unknown status
 - tst_qdbuscontext - unknown status
 - tst_qdbusinterface - unknown status
 - tst_qdbuslocalcalls - unknown status
 - tst_qdbusmarshall - unknown status
 - tst_qdbuspendingcall - unknown status
 - tst_qdbuspendingreply - unknown status
 - tst_qdbusreply - unknown status
 - tst_qdbusthreading - unknown status
 
   |  | FALSE | evaluated 698 times by 12 testsEvaluated by:- tst_qdbusabstractadaptor - unknown status
 - tst_qdbusabstractinterface - unknown status
 - tst_qdbusconnection - unknown status
 - tst_qdbusconnection_spyhook - unknown status
 - tst_qdbuscontext - unknown status
 - tst_qdbusinterface - unknown status
 - tst_qdbuslocalcalls - unknown status
 - tst_qdbusmarshall - unknown status
 - tst_qdbuspendingcall - unknown status
 - tst_qdbuspendingreply - unknown status
 - tst_qdbusreply - unknown status
 - tst_qdbusthreading - unknown status
 
   |  
  ; ++j) | 698-1396 | 
| 327 |                 if (!isValidCharacter(c[j])| TRUE | never evaluated |  | FALSE | evaluated 1396 times by 12 testsEvaluated by:- tst_qdbusabstractadaptor - unknown status
 - tst_qdbusabstractinterface - unknown status
 - tst_qdbusconnection - unknown status
 - tst_qdbusconnection_spyhook - unknown status
 - tst_qdbuscontext - unknown status
 - tst_qdbusinterface - unknown status
 - tst_qdbuslocalcalls - unknown status
 - tst_qdbusmarshall - unknown status
 - tst_qdbuspendingcall - unknown status
 - tst_qdbuspendingreply - unknown status
 - tst_qdbusreply - unknown status
 - tst_qdbusthreading - unknown status
 
   |  
  ) | 0-1396 | 
| 328 |                     return never executed: return false;  false;never executed: return false;  | 0 | 
| 329 |         }executed 698 times by 12 tests:  end of blockExecuted by:- tst_qdbusabstractadaptor - unknown status
 - tst_qdbusabstractinterface - unknown status
 - tst_qdbusconnection - unknown status
 - tst_qdbusconnection_spyhook - unknown status
 - tst_qdbuscontext - unknown status
 - tst_qdbusinterface - unknown status
 - tst_qdbuslocalcalls - unknown status
 - tst_qdbusmarshall - unknown status
 - tst_qdbuspendingcall - unknown status
 - tst_qdbuspendingreply - unknown status
 - tst_qdbusreply - unknown status
 - tst_qdbusthreading - unknown status
 
    | 698 | 
| 330 |  | - | 
| 331 |         returnexecuted 349 times by 12 tests:  return true;Executed by:- tst_qdbusabstractadaptor - unknown status
 - tst_qdbusabstractinterface - unknown status
 - tst_qdbusconnection - unknown status
 - tst_qdbusconnection_spyhook - unknown status
 - tst_qdbuscontext - unknown status
 - tst_qdbusinterface - unknown status
 - tst_qdbuslocalcalls - unknown status
 - tst_qdbusmarshall - unknown status
 - tst_qdbuspendingcall - unknown status
 - tst_qdbuspendingreply - unknown status
 - tst_qdbusreply - unknown status
 - tst_qdbusthreading - unknown status
 
    true;executed 349 times by 12 tests:  return true;Executed by:- tst_qdbusabstractadaptor - unknown status
 - tst_qdbusabstractinterface - unknown status
 - tst_qdbusconnection - unknown status
 - tst_qdbusconnection_spyhook - unknown status
 - tst_qdbuscontext - unknown status
 - tst_qdbusinterface - unknown status
 - tst_qdbuslocalcalls - unknown status
 - tst_qdbusmarshall - unknown status
 - tst_qdbuspendingcall - unknown status
 - tst_qdbuspendingreply - unknown status
 - tst_qdbusreply - unknown status
 - tst_qdbusthreading - unknown status
 
    | 349 | 
| 332 |     } | - | 
| 333 |     bool isValidBusName(const QString &busName) | - | 
| 334 |     { | - | 
| 335 |         if (busName.isEmpty()| TRUE | never evaluated |  | FALSE | evaluated 2238 times by 160 testsEvaluated by:- tst_Gestures
 - tst_ModelTest
 - tst_NetworkSelfTest
 - tst_QAbstractButton
 - tst_QAbstractItemView
 - tst_QAbstractNetworkCache
 - tst_QAbstractScrollArea
 - tst_QAbstractSlider
 - tst_QAbstractSpinBox
 - tst_QAccessibility
 - tst_QAction
 - tst_QActionGroup
 - tst_QApplication
 - tst_QBackingStore
 - tst_QBoxLayout
 - tst_QButtonGroup
 - tst_QCalendarWidget
 - tst_QCheckBox
 - tst_QColorDialog
 - tst_QColumnView
 - tst_QComboBox
 - tst_QCommandLinkButton
 - tst_QDataWidgetMapper
 - tst_QDateTimeEdit
 - tst_QDesktopWidget
 - ...
 
   |  
   || busName.length() > 255| TRUE | never evaluated |  | FALSE | evaluated 2238 times by 160 testsEvaluated by:- tst_Gestures
 - tst_ModelTest
 - tst_NetworkSelfTest
 - tst_QAbstractButton
 - tst_QAbstractItemView
 - tst_QAbstractNetworkCache
 - tst_QAbstractScrollArea
 - tst_QAbstractSlider
 - tst_QAbstractSpinBox
 - tst_QAccessibility
 - tst_QAction
 - tst_QActionGroup
 - tst_QApplication
 - tst_QBackingStore
 - tst_QBoxLayout
 - tst_QButtonGroup
 - tst_QCalendarWidget
 - tst_QCheckBox
 - tst_QColorDialog
 - tst_QColumnView
 - tst_QComboBox
 - tst_QCommandLinkButton
 - tst_QDataWidgetMapper
 - tst_QDateTimeEdit
 - tst_QDesktopWidget
 - ...
 
   |  
  ) | 0-2238 | 
| 336 |             return never executed: return false;  false;never executed: return false;  | 0 | 
| 337 |  | - | 
| 338 |         if (busName.startsWith(QLatin1Char(':'))| TRUE | evaluated 234 times by 12 testsEvaluated by:- tst_qdbusabstractadaptor - unknown status
 - tst_qdbusabstractinterface - unknown status
 - tst_qdbusconnection - unknown status
 - tst_qdbusconnection_spyhook - unknown status
 - tst_qdbuscontext - unknown status
 - tst_qdbusinterface - unknown status
 - tst_qdbuslocalcalls - unknown status
 - tst_qdbusmarshall - unknown status
 - tst_qdbuspendingcall - unknown status
 - tst_qdbuspendingreply - unknown status
 - tst_qdbusreply - unknown status
 - tst_qdbusthreading - unknown status
 
   |  | FALSE | evaluated 2004 times by 160 testsEvaluated by:- tst_Gestures
 - tst_ModelTest
 - tst_NetworkSelfTest
 - tst_QAbstractButton
 - tst_QAbstractItemView
 - tst_QAbstractNetworkCache
 - tst_QAbstractScrollArea
 - tst_QAbstractSlider
 - tst_QAbstractSpinBox
 - tst_QAccessibility
 - tst_QAction
 - tst_QActionGroup
 - tst_QApplication
 - tst_QBackingStore
 - tst_QBoxLayout
 - tst_QButtonGroup
 - tst_QCalendarWidget
 - tst_QCheckBox
 - tst_QColorDialog
 - tst_QColumnView
 - tst_QComboBox
 - tst_QCommandLinkButton
 - tst_QDataWidgetMapper
 - tst_QDateTimeEdit
 - tst_QDesktopWidget
 - ...
 
   |  
  ) | 234-2004 | 
| 339 |             returnexecuted 234 times by 12 tests:  return isValidUniqueConnectionName(busName);Executed by:- tst_qdbusabstractadaptor - unknown status
 - tst_qdbusabstractinterface - unknown status
 - tst_qdbusconnection - unknown status
 - tst_qdbusconnection_spyhook - unknown status
 - tst_qdbuscontext - unknown status
 - tst_qdbusinterface - unknown status
 - tst_qdbuslocalcalls - unknown status
 - tst_qdbusmarshall - unknown status
 - tst_qdbuspendingcall - unknown status
 - tst_qdbuspendingreply - unknown status
 - tst_qdbusreply - unknown status
 - tst_qdbusthreading - unknown status
 
    isValidUniqueConnectionName(busName);executed 234 times by 12 tests:  return isValidUniqueConnectionName(busName);Executed by:- tst_qdbusabstractadaptor - unknown status
 - tst_qdbusabstractinterface - unknown status
 - tst_qdbusconnection - unknown status
 - tst_qdbusconnection_spyhook - unknown status
 - tst_qdbuscontext - unknown status
 - tst_qdbusinterface - unknown status
 - tst_qdbuslocalcalls - unknown status
 - tst_qdbusmarshall - unknown status
 - tst_qdbuspendingcall - unknown status
 - tst_qdbuspendingreply - unknown status
 - tst_qdbusreply - unknown status
 - tst_qdbusthreading - unknown status
 
    | 234 | 
| 340 |  | - | 
| 341 |         QStringListconst auto parts = busName.splitsplitRef(QLatin1Char('.')); | - | 
| 342 |         if (parts.count() < 1| TRUE | never evaluated |  | FALSE | evaluated 2004 times by 160 testsEvaluated by:- tst_Gestures
 - tst_ModelTest
 - tst_NetworkSelfTest
 - tst_QAbstractButton
 - tst_QAbstractItemView
 - tst_QAbstractNetworkCache
 - tst_QAbstractScrollArea
 - tst_QAbstractSlider
 - tst_QAbstractSpinBox
 - tst_QAccessibility
 - tst_QAction
 - tst_QActionGroup
 - tst_QApplication
 - tst_QBackingStore
 - tst_QBoxLayout
 - tst_QButtonGroup
 - tst_QCalendarWidget
 - tst_QCheckBox
 - tst_QColorDialog
 - tst_QColumnView
 - tst_QComboBox
 - tst_QCommandLinkButton
 - tst_QDataWidgetMapper
 - tst_QDateTimeEdit
 - tst_QDesktopWidget
 - ...
 
   |  
  ) | 0-2004 | 
| 343 |             return never executed: return false;  false;never executed: return false;  | 0 | 
| 344 |  | - | 
| 345 |         for (int i = 0; i < parts.count(); ++i) {const QStringQStringRef &part =: parts.at(i);) { | - | 
| 346 |             if (part.isEmpty()| TRUE | never evaluated |  | FALSE | evaluated 6726 times by 160 testsEvaluated by:- tst_Gestures
 - tst_ModelTest
 - tst_NetworkSelfTest
 - tst_QAbstractButton
 - tst_QAbstractItemView
 - tst_QAbstractNetworkCache
 - tst_QAbstractScrollArea
 - tst_QAbstractSlider
 - tst_QAbstractSpinBox
 - tst_QAccessibility
 - tst_QAction
 - tst_QActionGroup
 - tst_QApplication
 - tst_QBackingStore
 - tst_QBoxLayout
 - tst_QButtonGroup
 - tst_QCalendarWidget
 - tst_QCheckBox
 - tst_QColorDialog
 - tst_QColumnView
 - tst_QComboBox
 - tst_QCommandLinkButton
 - tst_QDataWidgetMapper
 - tst_QDateTimeEdit
 - tst_QDesktopWidget
 - ...
 
   |  
  ) | 0-6726 | 
| 347 |                 return never executed: return false;  false;never executed: return false;  | 0 | 
| 348 |  | - | 
| 349 |             const QChar *c = part.unicode(); | - | 
| 350 |             if (isValidNumber(c[0])| TRUE | never evaluated |  | FALSE | evaluated 6726 times by 160 testsEvaluated by:- tst_Gestures
 - tst_ModelTest
 - tst_NetworkSelfTest
 - tst_QAbstractButton
 - tst_QAbstractItemView
 - tst_QAbstractNetworkCache
 - tst_QAbstractScrollArea
 - tst_QAbstractSlider
 - tst_QAbstractSpinBox
 - tst_QAccessibility
 - tst_QAction
 - tst_QActionGroup
 - tst_QApplication
 - tst_QBackingStore
 - tst_QBoxLayout
 - tst_QButtonGroup
 - tst_QCalendarWidget
 - tst_QCheckBox
 - tst_QColorDialog
 - tst_QColumnView
 - tst_QComboBox
 - tst_QCommandLinkButton
 - tst_QDataWidgetMapper
 - tst_QDateTimeEdit
 - tst_QDesktopWidget
 - ...
 
   |  
  ) | 0-6726 | 
| 351 |                 return never executed: return false;  false;never executed: return false;  | 0 | 
| 352 |             for (int j = 0; j < part.length()| TRUE | evaluated 46499 times by 160 testsEvaluated by:- tst_Gestures
 - tst_ModelTest
 - tst_NetworkSelfTest
 - tst_QAbstractButton
 - tst_QAbstractItemView
 - tst_QAbstractNetworkCache
 - tst_QAbstractScrollArea
 - tst_QAbstractSlider
 - tst_QAbstractSpinBox
 - tst_QAccessibility
 - tst_QAction
 - tst_QActionGroup
 - tst_QApplication
 - tst_QBackingStore
 - tst_QBoxLayout
 - tst_QButtonGroup
 - tst_QCalendarWidget
 - tst_QCheckBox
 - tst_QColorDialog
 - tst_QColumnView
 - tst_QComboBox
 - tst_QCommandLinkButton
 - tst_QDataWidgetMapper
 - tst_QDateTimeEdit
 - tst_QDesktopWidget
 - ...
 
   |  | FALSE | evaluated 6718 times by 160 testsEvaluated by:- tst_Gestures
 - tst_ModelTest
 - tst_NetworkSelfTest
 - tst_QAbstractButton
 - tst_QAbstractItemView
 - tst_QAbstractNetworkCache
 - tst_QAbstractScrollArea
 - tst_QAbstractSlider
 - tst_QAbstractSpinBox
 - tst_QAccessibility
 - tst_QAction
 - tst_QActionGroup
 - tst_QApplication
 - tst_QBackingStore
 - tst_QBoxLayout
 - tst_QButtonGroup
 - tst_QCalendarWidget
 - tst_QCheckBox
 - tst_QColorDialog
 - tst_QColumnView
 - tst_QComboBox
 - tst_QCommandLinkButton
 - tst_QDataWidgetMapper
 - tst_QDateTimeEdit
 - tst_QDesktopWidget
 - ...
 
   |  
  ; ++j) | 6718-46499 | 
| 353 |                 if (!isValidCharacter(c[j])| TRUE | evaluated 8 times by 2 testsEvaluated by:- tst_qdbusabstractinterface - unknown status
 - tst_qdbusmarshall - unknown status
 
   |  | FALSE | evaluated 46491 times by 160 testsEvaluated by:- tst_Gestures
 - tst_ModelTest
 - tst_NetworkSelfTest
 - tst_QAbstractButton
 - tst_QAbstractItemView
 - tst_QAbstractNetworkCache
 - tst_QAbstractScrollArea
 - tst_QAbstractSlider
 - tst_QAbstractSpinBox
 - tst_QAccessibility
 - tst_QAction
 - tst_QActionGroup
 - tst_QApplication
 - tst_QBackingStore
 - tst_QBoxLayout
 - tst_QButtonGroup
 - tst_QCalendarWidget
 - tst_QCheckBox
 - tst_QColorDialog
 - tst_QColumnView
 - tst_QComboBox
 - tst_QCommandLinkButton
 - tst_QDataWidgetMapper
 - tst_QDateTimeEdit
 - tst_QDesktopWidget
 - ...
 
   |  
  ) | 8-46491 | 
| 354 |                     returnexecuted 8 times by 2 tests:  return false;Executed by:- tst_qdbusabstractinterface - unknown status
 - tst_qdbusmarshall - unknown status
 
    false;executed 8 times by 2 tests:  return false;Executed by:- tst_qdbusabstractinterface - unknown status
 - tst_qdbusmarshall - unknown status
 
    | 8 | 
| 355 |         }executed 6718 times by 160 tests:  end of blockExecuted by:- tst_Gestures
 - tst_ModelTest
 - tst_NetworkSelfTest
 - tst_QAbstractButton
 - tst_QAbstractItemView
 - tst_QAbstractNetworkCache
 - tst_QAbstractScrollArea
 - tst_QAbstractSlider
 - tst_QAbstractSpinBox
 - tst_QAccessibility
 - tst_QAction
 - tst_QActionGroup
 - tst_QApplication
 - tst_QBackingStore
 - tst_QBoxLayout
 - tst_QButtonGroup
 - tst_QCalendarWidget
 - tst_QCheckBox
 - tst_QColorDialog
 - tst_QColumnView
 - tst_QComboBox
 - tst_QCommandLinkButton
 - tst_QDataWidgetMapper
 - tst_QDateTimeEdit
 - tst_QDesktopWidget
 - ...
 
    | 6718 | 
| 356 |  | - | 
| 357 |         returnexecuted 1996 times by 160 tests:  return true;Executed by:- tst_Gestures
 - tst_ModelTest
 - tst_NetworkSelfTest
 - tst_QAbstractButton
 - tst_QAbstractItemView
 - tst_QAbstractNetworkCache
 - tst_QAbstractScrollArea
 - tst_QAbstractSlider
 - tst_QAbstractSpinBox
 - tst_QAccessibility
 - tst_QAction
 - tst_QActionGroup
 - tst_QApplication
 - tst_QBackingStore
 - tst_QBoxLayout
 - tst_QButtonGroup
 - tst_QCalendarWidget
 - tst_QCheckBox
 - tst_QColorDialog
 - tst_QColumnView
 - tst_QComboBox
 - tst_QCommandLinkButton
 - tst_QDataWidgetMapper
 - tst_QDateTimeEdit
 - tst_QDesktopWidget
 - ...
 
    true;executed 1996 times by 160 tests:  return true;Executed by:- tst_Gestures
 - tst_ModelTest
 - tst_NetworkSelfTest
 - tst_QAbstractButton
 - tst_QAbstractItemView
 - tst_QAbstractNetworkCache
 - tst_QAbstractScrollArea
 - tst_QAbstractSlider
 - tst_QAbstractSpinBox
 - tst_QAccessibility
 - tst_QAction
 - tst_QActionGroup
 - tst_QApplication
 - tst_QBackingStore
 - tst_QBoxLayout
 - tst_QButtonGroup
 - tst_QCalendarWidget
 - tst_QCheckBox
 - tst_QColorDialog
 - tst_QColumnView
 - tst_QComboBox
 - tst_QCommandLinkButton
 - tst_QDataWidgetMapper
 - tst_QDateTimeEdit
 - tst_QDesktopWidget
 - ...
 
    | 1996 | 
| 358 |     } | - | 
| 359 |  | - | 
| 360 |  | - | 
| 361 |  | - | 
| 362 |  | - | 
| 363 |  | - | 
| 364 |  | - | 
| 365 |  | - | 
| 366 |     bool isValidMemberName(const QStringQStringRef &memberName) | - | 
| 367 |     { | - | 
| 368 |         if (memberName.isEmpty()| TRUE | never evaluated |  | FALSE | evaluated 16225 times by 181 testsEvaluated by:- tst_Gestures
 - tst_ModelTest
 - tst_NetworkSelfTest
 - tst_QAbstractButton
 - tst_QAbstractItemView
 - tst_QAbstractNetworkCache
 - tst_QAbstractScrollArea
 - tst_QAbstractSlider
 - tst_QAbstractSpinBox
 - tst_QAccessibility
 - tst_QAction
 - tst_QActionGroup
 - tst_QApplication
 - tst_QBackingStore
 - tst_QBoxLayout
 - tst_QButtonGroup
 - tst_QCalendarWidget
 - tst_QCheckBox
 - tst_QColorDialog
 - tst_QColumnView
 - tst_QComboBox
 - tst_QCommandLinkButton
 - tst_QDataWidgetMapper
 - tst_QDateTimeEdit
 - tst_QDesktopWidget
 - ...
 
   |  
   || memberName.length() > 255| TRUE | never evaluated |  | FALSE | evaluated 16225 times by 181 testsEvaluated by:- tst_Gestures
 - tst_ModelTest
 - tst_NetworkSelfTest
 - tst_QAbstractButton
 - tst_QAbstractItemView
 - tst_QAbstractNetworkCache
 - tst_QAbstractScrollArea
 - tst_QAbstractSlider
 - tst_QAbstractSpinBox
 - tst_QAccessibility
 - tst_QAction
 - tst_QActionGroup
 - tst_QApplication
 - tst_QBackingStore
 - tst_QBoxLayout
 - tst_QButtonGroup
 - tst_QCalendarWidget
 - tst_QCheckBox
 - tst_QColorDialog
 - tst_QColumnView
 - tst_QComboBox
 - tst_QCommandLinkButton
 - tst_QDataWidgetMapper
 - tst_QDateTimeEdit
 - tst_QDesktopWidget
 - ...
 
   |  
  ) | 0-16225 | 
| 369 |             return never executed: return false;  false;never executed: return false;  | 0 | 
| 370 |  | - | 
| 371 |         const QChar* c = memberName.unicode(); | - | 
| 372 |         if (isValidNumber(c[0])| TRUE | never evaluated |  | FALSE | evaluated 16225 times by 181 testsEvaluated by:- tst_Gestures
 - tst_ModelTest
 - tst_NetworkSelfTest
 - tst_QAbstractButton
 - tst_QAbstractItemView
 - tst_QAbstractNetworkCache
 - tst_QAbstractScrollArea
 - tst_QAbstractSlider
 - tst_QAbstractSpinBox
 - tst_QAccessibility
 - tst_QAction
 - tst_QActionGroup
 - tst_QApplication
 - tst_QBackingStore
 - tst_QBoxLayout
 - tst_QButtonGroup
 - tst_QCalendarWidget
 - tst_QCheckBox
 - tst_QColorDialog
 - tst_QColumnView
 - tst_QComboBox
 - tst_QCommandLinkButton
 - tst_QDataWidgetMapper
 - tst_QDateTimeEdit
 - tst_QDesktopWidget
 - ...
 
   |  
  ) | 0-16225 | 
| 373 |             return never executed: return false;  false;never executed: return false;  | 0 | 
| 374 |         for (int j = 0; j < memberName.length()| TRUE | evaluated 118633 times by 181 testsEvaluated by:- tst_Gestures
 - tst_ModelTest
 - tst_NetworkSelfTest
 - tst_QAbstractButton
 - tst_QAbstractItemView
 - tst_QAbstractNetworkCache
 - tst_QAbstractScrollArea
 - tst_QAbstractSlider
 - tst_QAbstractSpinBox
 - tst_QAccessibility
 - tst_QAction
 - tst_QActionGroup
 - tst_QApplication
 - tst_QBackingStore
 - tst_QBoxLayout
 - tst_QButtonGroup
 - tst_QCalendarWidget
 - tst_QCheckBox
 - tst_QColorDialog
 - tst_QColumnView
 - tst_QComboBox
 - tst_QCommandLinkButton
 - tst_QDataWidgetMapper
 - tst_QDateTimeEdit
 - tst_QDesktopWidget
 - ...
 
   |  | FALSE | evaluated 16224 times by 181 testsEvaluated by:- tst_Gestures
 - tst_ModelTest
 - tst_NetworkSelfTest
 - tst_QAbstractButton
 - tst_QAbstractItemView
 - tst_QAbstractNetworkCache
 - tst_QAbstractScrollArea
 - tst_QAbstractSlider
 - tst_QAbstractSpinBox
 - tst_QAccessibility
 - tst_QAction
 - tst_QActionGroup
 - tst_QApplication
 - tst_QBackingStore
 - tst_QBoxLayout
 - tst_QButtonGroup
 - tst_QCalendarWidget
 - tst_QCheckBox
 - tst_QColorDialog
 - tst_QColumnView
 - tst_QComboBox
 - tst_QCommandLinkButton
 - tst_QDataWidgetMapper
 - tst_QDateTimeEdit
 - tst_QDesktopWidget
 - ...
 
   |  
  ; ++j) | 16224-118633 | 
| 375 |             if (!isValidCharacterNoDash(c[j])| TRUE | evaluated 1 time by 1 testEvaluated by:- tst_qdbusmarshall - unknown status
 
   |  | FALSE | evaluated 118632 times by 181 testsEvaluated by:- tst_Gestures
 - tst_ModelTest
 - tst_NetworkSelfTest
 - tst_QAbstractButton
 - tst_QAbstractItemView
 - tst_QAbstractNetworkCache
 - tst_QAbstractScrollArea
 - tst_QAbstractSlider
 - tst_QAbstractSpinBox
 - tst_QAccessibility
 - tst_QAction
 - tst_QActionGroup
 - tst_QApplication
 - tst_QBackingStore
 - tst_QBoxLayout
 - tst_QButtonGroup
 - tst_QCalendarWidget
 - tst_QCheckBox
 - tst_QColorDialog
 - tst_QColumnView
 - tst_QComboBox
 - tst_QCommandLinkButton
 - tst_QDataWidgetMapper
 - tst_QDateTimeEdit
 - tst_QDesktopWidget
 - ...
 
   |  
  ) | 1-118632 | 
| 376 |                 returnexecuted 1 time by 1 test:  return false;Executed by:- tst_qdbusmarshall - unknown status
 
    false;executed 1 time by 1 test:  return false;Executed by:- tst_qdbusmarshall - unknown status
 
    | 1 | 
| 377 |         returnexecuted 16224 times by 181 tests:  return true;Executed by:- tst_Gestures
 - tst_ModelTest
 - tst_NetworkSelfTest
 - tst_QAbstractButton
 - tst_QAbstractItemView
 - tst_QAbstractNetworkCache
 - tst_QAbstractScrollArea
 - tst_QAbstractSlider
 - tst_QAbstractSpinBox
 - tst_QAccessibility
 - tst_QAction
 - tst_QActionGroup
 - tst_QApplication
 - tst_QBackingStore
 - tst_QBoxLayout
 - tst_QButtonGroup
 - tst_QCalendarWidget
 - tst_QCheckBox
 - tst_QColorDialog
 - tst_QColumnView
 - tst_QComboBox
 - tst_QCommandLinkButton
 - tst_QDataWidgetMapper
 - tst_QDateTimeEdit
 - tst_QDesktopWidget
 - ...
 
    true;executed 16224 times by 181 tests:  return true;Executed by:- tst_Gestures
 - tst_ModelTest
 - tst_NetworkSelfTest
 - tst_QAbstractButton
 - tst_QAbstractItemView
 - tst_QAbstractNetworkCache
 - tst_QAbstractScrollArea
 - tst_QAbstractSlider
 - tst_QAbstractSpinBox
 - tst_QAccessibility
 - tst_QAction
 - tst_QActionGroup
 - tst_QApplication
 - tst_QBackingStore
 - tst_QBoxLayout
 - tst_QButtonGroup
 - tst_QCalendarWidget
 - tst_QCheckBox
 - tst_QColorDialog
 - tst_QColumnView
 - tst_QComboBox
 - tst_QCommandLinkButton
 - tst_QDataWidgetMapper
 - tst_QDateTimeEdit
 - tst_QDesktopWidget
 - ...
 
    | 16224 | 
| 378 |     } | - | 
| 379 |     bool isValidErrorName(const QString &errorName) | - | 
| 380 |     { | - | 
| 381 |         return isValidInterfaceName(errorName); | - | 
| 382 |     } | - | 
| 383 |     bool isValidObjectPath(const QString &path) | - | 
| 384 |     { | - | 
| 385 |         if (path == QLatin1String("/")| TRUE | evaluated 1517 times by 32 testsEvaluated by:- tst_NetworkSelfTest
 - tst_QAbstractNetworkCache
 - tst_QFtp
 - tst_QHostInfo
 - tst_QHttpNetworkConnection
 - tst_QNetworkAccessManager
 - tst_QNetworkAccessManager_And_QProgressDialog
 - tst_QNetworkConfiguration
 - tst_QNetworkConfigurationManager
 - tst_QNetworkDiskCache
 - tst_QNetworkInterface
 - tst_QNetworkProxyFactory
 - tst_QTcpServer
 - tst_QUdpSocket
 - tst_QXmlInputSource
 - tst_QXmlStream
 - tst_qdbusabstractadaptor - unknown status
 - tst_qdbusabstractinterface - unknown status
 - tst_qdbusconnection - unknown status
 - tst_qdbusconnection_no_app - unknown status
 - tst_qdbusconnection_spyhook - unknown status
 - tst_qdbuscontext - unknown status
 - tst_qdbusinterface - unknown status
 - tst_qdbuslocalcalls - unknown status
 - tst_qdbusmarshall - unknown status
 - ...
 
   |  | FALSE | evaluated 3312 times by 161 testsEvaluated by:- tst_Gestures
 - tst_ModelTest
 - tst_NetworkSelfTest
 - tst_QAbstractButton
 - tst_QAbstractItemView
 - tst_QAbstractNetworkCache
 - tst_QAbstractScrollArea
 - tst_QAbstractSlider
 - tst_QAbstractSpinBox
 - tst_QAccessibility
 - tst_QAction
 - tst_QActionGroup
 - tst_QApplication
 - tst_QBackingStore
 - tst_QBoxLayout
 - tst_QButtonGroup
 - tst_QCalendarWidget
 - tst_QCheckBox
 - tst_QColorDialog
 - tst_QColumnView
 - tst_QComboBox
 - tst_QCommandLinkButton
 - tst_QDataWidgetMapper
 - tst_QDateTimeEdit
 - tst_QDesktopWidget
 - ...
 
   |  
  ) | 1517-3312 | 
| 386 |             returnexecuted 1517 times by 32 tests:  return true;Executed by:- tst_NetworkSelfTest
 - tst_QAbstractNetworkCache
 - tst_QFtp
 - tst_QHostInfo
 - tst_QHttpNetworkConnection
 - tst_QNetworkAccessManager
 - tst_QNetworkAccessManager_And_QProgressDialog
 - tst_QNetworkConfiguration
 - tst_QNetworkConfigurationManager
 - tst_QNetworkDiskCache
 - tst_QNetworkInterface
 - tst_QNetworkProxyFactory
 - tst_QTcpServer
 - tst_QUdpSocket
 - tst_QXmlInputSource
 - tst_QXmlStream
 - tst_qdbusabstractadaptor - unknown status
 - tst_qdbusabstractinterface - unknown status
 - tst_qdbusconnection - unknown status
 - tst_qdbusconnection_no_app - unknown status
 - tst_qdbusconnection_spyhook - unknown status
 - tst_qdbuscontext - unknown status
 - tst_qdbusinterface - unknown status
 - tst_qdbuslocalcalls - unknown status
 - tst_qdbusmarshall - unknown status
 - ...
 
    true;executed 1517 times by 32 tests:  return true;Executed by:- tst_NetworkSelfTest
 - tst_QAbstractNetworkCache
 - tst_QFtp
 - tst_QHostInfo
 - tst_QHttpNetworkConnection
 - tst_QNetworkAccessManager
 - tst_QNetworkAccessManager_And_QProgressDialog
 - tst_QNetworkConfiguration
 - tst_QNetworkConfigurationManager
 - tst_QNetworkDiskCache
 - tst_QNetworkInterface
 - tst_QNetworkProxyFactory
 - tst_QTcpServer
 - tst_QUdpSocket
 - tst_QXmlInputSource
 - tst_QXmlStream
 - tst_qdbusabstractadaptor - unknown status
 - tst_qdbusabstractinterface - unknown status
 - tst_qdbusconnection - unknown status
 - tst_qdbusconnection_no_app - unknown status
 - tst_qdbusconnection_spyhook - unknown status
 - tst_qdbuscontext - unknown status
 - tst_qdbusinterface - unknown status
 - tst_qdbuslocalcalls - unknown status
 - tst_qdbusmarshall - unknown status
 - ...
 
    | 1517 | 
| 387 |  | - | 
| 388 |         if (!path.startsWith(QLatin1Char('/'))| TRUE | evaluated 19 times by 2 testsEvaluated by:- tst_qdbusabstractinterface - unknown status
 - tst_qdbusmarshall - unknown status
 
   |  | FALSE | evaluated 3293 times by 161 testsEvaluated by:- tst_Gestures
 - tst_ModelTest
 - tst_NetworkSelfTest
 - tst_QAbstractButton
 - tst_QAbstractItemView
 - tst_QAbstractNetworkCache
 - tst_QAbstractScrollArea
 - tst_QAbstractSlider
 - tst_QAbstractSpinBox
 - tst_QAccessibility
 - tst_QAction
 - tst_QActionGroup
 - tst_QApplication
 - tst_QBackingStore
 - tst_QBoxLayout
 - tst_QButtonGroup
 - tst_QCalendarWidget
 - tst_QCheckBox
 - tst_QColorDialog
 - tst_QColumnView
 - tst_QComboBox
 - tst_QCommandLinkButton
 - tst_QDataWidgetMapper
 - tst_QDateTimeEdit
 - tst_QDesktopWidget
 - ...
 
   |  
   || path.indexOf(QLatin1String("//")) != -1| TRUE | evaluated 1 time by 1 testEvaluated by:- tst_qdbusmarshall - unknown status
 
   |  | FALSE | evaluated 3292 times by 161 testsEvaluated by:- tst_Gestures
 - tst_ModelTest
 - tst_NetworkSelfTest
 - tst_QAbstractButton
 - tst_QAbstractItemView
 - tst_QAbstractNetworkCache
 - tst_QAbstractScrollArea
 - tst_QAbstractSlider
 - tst_QAbstractSpinBox
 - tst_QAccessibility
 - tst_QAction
 - tst_QActionGroup
 - tst_QApplication
 - tst_QBackingStore
 - tst_QBoxLayout
 - tst_QButtonGroup
 - tst_QCalendarWidget
 - tst_QCheckBox
 - tst_QColorDialog
 - tst_QColumnView
 - tst_QComboBox
 - tst_QCommandLinkButton
 - tst_QDataWidgetMapper
 - tst_QDateTimeEdit
 - tst_QDesktopWidget
 - ...
 
   |  
   || | 1-3293 | 
| 389 |             path.endsWith(QLatin1Char('/'))| TRUE | never evaluated |  | FALSE | evaluated 3292 times by 161 testsEvaluated by:- tst_Gestures
 - tst_ModelTest
 - tst_NetworkSelfTest
 - tst_QAbstractButton
 - tst_QAbstractItemView
 - tst_QAbstractNetworkCache
 - tst_QAbstractScrollArea
 - tst_QAbstractSlider
 - tst_QAbstractSpinBox
 - tst_QAccessibility
 - tst_QAction
 - tst_QActionGroup
 - tst_QApplication
 - tst_QBackingStore
 - tst_QBoxLayout
 - tst_QButtonGroup
 - tst_QCalendarWidget
 - tst_QCheckBox
 - tst_QColorDialog
 - tst_QColumnView
 - tst_QComboBox
 - tst_QCommandLinkButton
 - tst_QDataWidgetMapper
 - tst_QDateTimeEdit
 - tst_QDesktopWidget
 - ...
 
   |  
  ) | 0-3292 | 
| 390 |             returnexecuted 20 times by 2 tests:  return false;Executed by:- tst_qdbusabstractinterface - unknown status
 - tst_qdbusmarshall - unknown status
 
    false;executed 20 times by 2 tests:  return false;Executed by:- tst_qdbusabstractinterface - unknown status
 - tst_qdbusmarshall - unknown status
 
    | 20 | 
| 391 |  | - | 
| 392 |  | - | 
| 393 |         QStringListconst auto parts = path.midRef(1).split(QLatin1Char('/')); | - | 
| 394 |         ((!(parts.count() >= 1)) ? qt_assert("parts.count() >= 1",__FILE__,499) : qt_noop()); | - | 
 |         parts.removeFirst();for (int i = 0; i <const QStringRef &part : parts.count(); ++i) |  | 
| 395 |             if (!isValidPartOfObjectPath(parts.at(i)))part)| TRUE | never evaluated |  | FALSE | evaluated 10229 times by 161 testsEvaluated by:- tst_Gestures
 - tst_ModelTest
 - tst_NetworkSelfTest
 - tst_QAbstractButton
 - tst_QAbstractItemView
 - tst_QAbstractNetworkCache
 - tst_QAbstractScrollArea
 - tst_QAbstractSlider
 - tst_QAbstractSpinBox
 - tst_QAccessibility
 - tst_QAction
 - tst_QActionGroup
 - tst_QApplication
 - tst_QBackingStore
 - tst_QBoxLayout
 - tst_QButtonGroup
 - tst_QCalendarWidget
 - tst_QCheckBox
 - tst_QColorDialog
 - tst_QColumnView
 - tst_QComboBox
 - tst_QCommandLinkButton
 - tst_QDataWidgetMapper
 - tst_QDateTimeEdit
 - tst_QDesktopWidget
 - ...
 
   |  
  ) | 0-10229 | 
| 396 |                 return never executed: return false;  false;never executed: return false;  | 0 | 
| 397 |  | - | 
| 398 |         returnexecuted 3292 times by 161 tests:  return true;Executed by:- tst_Gestures
 - tst_ModelTest
 - tst_NetworkSelfTest
 - tst_QAbstractButton
 - tst_QAbstractItemView
 - tst_QAbstractNetworkCache
 - tst_QAbstractScrollArea
 - tst_QAbstractSlider
 - tst_QAbstractSpinBox
 - tst_QAccessibility
 - tst_QAction
 - tst_QActionGroup
 - tst_QApplication
 - tst_QBackingStore
 - tst_QBoxLayout
 - tst_QButtonGroup
 - tst_QCalendarWidget
 - tst_QCheckBox
 - tst_QColorDialog
 - tst_QColumnView
 - tst_QComboBox
 - tst_QCommandLinkButton
 - tst_QDataWidgetMapper
 - tst_QDateTimeEdit
 - tst_QDesktopWidget
 - ...
 
    true;executed 3292 times by 161 tests:  return true;Executed by:- tst_Gestures
 - tst_ModelTest
 - tst_NetworkSelfTest
 - tst_QAbstractButton
 - tst_QAbstractItemView
 - tst_QAbstractNetworkCache
 - tst_QAbstractScrollArea
 - tst_QAbstractSlider
 - tst_QAbstractSpinBox
 - tst_QAccessibility
 - tst_QAction
 - tst_QActionGroup
 - tst_QApplication
 - tst_QBackingStore
 - tst_QBoxLayout
 - tst_QButtonGroup
 - tst_QCalendarWidget
 - tst_QCheckBox
 - tst_QColorDialog
 - tst_QColumnView
 - tst_QComboBox
 - tst_QCommandLinkButton
 - tst_QDataWidgetMapper
 - tst_QDateTimeEdit
 - tst_QDesktopWidget
 - ...
 
    | 3292 | 
| 399 |     } | - | 
| 400 |  | - | 
| 401 |  | - | 
| 402 |  | - | 
| 403 |  | - | 
| 404 |  | - | 
| 405 |     bool isValidBasicType(int c) | - | 
| 406 |     { | - | 
| 407 |         return isBasicType(c); | - | 
| 408 |     } | - | 
| 409 |  | - | 
| 410 |  | - | 
| 411 |  | - | 
| 412 |  | - | 
| 413 |  | - | 
| 414 |     bool isValidFixedType(int c) | - | 
| 415 |     { | - | 
| 416 |         return isFixedType(c); | - | 
| 417 |     } | - | 
| 418 |     bool isValidSignature(const QString &signature) | - | 
| 419 |     { | - | 
| 420 |         QByteArray ba = signature.toLatin1(); | - | 
| 421 |         const char *data = ba.constData(); | - | 
| 422 |         while (true) { | - | 
| 423 |             data = validateSingleType(data); | - | 
| 424 |             if (!data) | - | 
| 425 |                 return false; | - | 
| 426 |             if (*data == '\0') | - | 
| 427 |                 return true; | - | 
| 428 |         } | - | 
| 429 |     } | - | 
| 430 |  | - | 
| 431 |  | - | 
| 432 |  | - | 
| 433 |  | - | 
| 434 |  | - | 
| 435 |  | - | 
| 436 |  | - | 
| 437 |     bool isValidSingleSignature(const QString &signature) | - | 
| 438 |     { | - | 
| 439 |         QByteArray ba = signature.toLatin1(); | - | 
| 440 |         const char *data = validateSingleType(ba.constData()); | - | 
| 441 |         return data && *data == '\0'; | - | 
| 442 |     } | - | 
| 443 |  | - | 
| 444 | } | - | 
| 445 |  | - | 
| 446 |  | - | 
 |  |  |