Lines Matching refs:genus

381     if (child->genus() == Node::CPP && child->isAggregate())  in resolveUsingClauses()
494 const Node *start, int flags, Node::Genus genus, in findNodeForTarget() argument
498 if ((genus == Node::DontCare) || (genus == Node::DOC)) { in findNodeForTarget()
511 node = findUnambiguousTarget(path.join(QLatin1String("::")), genus, ref); in findNodeForTarget()
535 if (((genus == Node::QML) || (genus == Node::DontCare)) && (path.size() >= 2) in findNodeForTarget()
556 matchPathAndTarget(path, path_idx, target, current, flags, genus, ref); in findNodeForTarget()
587 const Node *node, int flags, Node::Genus genus, in matchPathAndTarget() argument
611 if (genus != Node::DontCare && node->genus() != genus) in matchPathAndTarget()
613 const Node *t = matchPathAndTarget(path, idx + 1, target, node, flags, genus, ref); in matchPathAndTarget()
626 if (((genus == Node::CPP) || (genus == Node::DontCare)) && node->isClassNode() in matchPathAndTarget()
630 const Node *t = matchPathAndTarget(path, idx, target, base, flags, genus, ref); in matchPathAndTarget()
652 Node::Genus genus) const in findNode()
671 if (((genus == Node::QML) || (genus == Node::DontCare)) && (path.size() >= 2) in findNode()
692 genus, tmpFlags); in findNode()
696 if ((next == nullptr) && ((genus == Node::CPP) || (genus == Node::DontCare)) in findNode()
700 next = base->findChildNode(path.at(i), genus, tmpFlags); in findNode()
834 const Node *Tree::findUnambiguousTarget(const QString &target, Node::Genus genus, in findUnambiguousTarget() argument
846 if ((genus == Node::DontCare) || (genus == candidate->genus())) { in findUnambiguousTarget()
870 if ((genus == Node::DontCare) || (genus == candidate->genus())) { in findUnambiguousTarget()
1214 const Node *relative, Node::Genus genus) const in findFunctionNode()
1217 && ((genus == Node::QML) || (genus == Node::DontCare))) { in findFunctionNode()
1231 else if (genus != Node::DontCare) { in findFunctionNode()
1232 if (genus != relative->genus()) in findFunctionNode()
1249 next = aggregate->findChildNode(path.at(i), genus); in findFunctionNode()
1257 next = base->findChildNode(path.at(i), genus); in findFunctionNode()
1279 FN = qdb_->findFunctionNode(path, parameters, relative, genus); in findFunctionNode()