Lines Matching refs:csChild
72 void checkMethod(string topic, const Definition* csChild, vector<string>* reported) { in checkMethod() argument
73 if (MarkType::kSubtopic == csChild->fMarkType) { in checkMethod()
74 for (auto child : csChild->fChildren) { in checkMethod()
78 } else if (MarkType::kMethod != csChild->fMarkType) { in checkMethod()
83 Definition::MethodType::kConstructor == csChild->fMethodType in checkMethod()
84 || Definition::MethodType::kDestructor == csChild->fMethodType in checkMethod()
85 || Definition::MethodType::kOperator == csChild->fMethodType in checkMethod()
86 || csChild->fClone; in checkMethod()
87 for (auto child : csChild->fChildren) { in checkMethod()
105 PRINTF("No #In: %s\n", csChild->fName.c_str()); in checkMethod()
121 for (auto& csChild : cs->fChildren) { in checkRelatedFunctions() local
122 checkMethod(topicName, csChild, &reported); in checkRelatedFunctions()