Lines Matching refs:SubtopicKeys
15 class SubtopicKeys { class
32 const char* SubtopicKeys::kGeneratedSubtopics[] = {
199 populator(SubtopicKeys::kClasses, "Class", "Class Declarations", in addPopulators()
203 populator(SubtopicKeys::kConstants, "Constant", "Constants", in addPopulators()
208 populator(SubtopicKeys::kConstructors, "Constructor", "Constructors", in addPopulators()
212 populator(SubtopicKeys::kDefines, "Define", "Defines", in addPopulators()
216 populator(SubtopicKeys::kMemberFunctions, "Member Function", "Member Functions", in addPopulators()
219 populator(SubtopicKeys::kMembers, "Member", "Members", in addPopulators()
223 populator(SubtopicKeys::kOperators, "Operator", "Operators", in addPopulators()
226 populator(SubtopicKeys::kRelatedFunctions, "Related Function", "Related Functions", in addPopulators()
229 populator(SubtopicKeys::kStructs, "Struct", "Struct Declarations", in addPopulators()
233 populator(SubtopicKeys::kTypedefs, "Typedef", "Typedef Declarations", in addPopulators()
1327 this->writeString(this->fPopulators[SubtopicKeys::kConstants].fPlural); in markTypeOut()
1759 if (false && SubtopicKeys::kOverview == def->fName) { in markTypeOut()
1779 … this->summaryOut(def, MarkType::kConst, fPopulators[SubtopicKeys::kConstants].fPlural); in markTypeOut()
1785 … this->summaryOut(def, MarkType::kMember, fPopulators[SubtopicKeys::kMembers].fPlural); in markTypeOut()
2038 populator[SubtopicKeys::kConstants].fMembers.push_back(def); in populateOne()
2042 populator[SubtopicKeys::kConstants].fMembers.push_back(def); in populateOne()
2046 populator[SubtopicKeys::kDefines].fMembers.push_back(def); in populateOne()
2050 populator[SubtopicKeys::kMembers].fMembers.push_back(def); in populateOne()
2054 populator[SubtopicKeys::kTypedefs].fMembers.push_back(def); in populateOne()
2065 populator[SubtopicKeys::kConstructors].fMembers.push_back(def); in populateOne()
2069 populator[SubtopicKeys::kOperators].fMembers.push_back(def); in populateOne()
2072 populator[SubtopicKeys::kMemberFunctions].fMembers.push_back(def); in populateOne()
2077 populator[SubtopicKeys::kConstructors].fMembers.push_back(def); in populateOne()
2095 bool builtInTopic = name == SubtopicKeys::kOverview; in populateTables()
2096 for (auto item : SubtopicKeys::kGeneratedSubtopics) { in populateTables()
2105 builtInTopic = name == subname + SubtopicKeys::kOverview; in populateTables()
2106 for (auto item : SubtopicKeys::kGeneratedSubtopics) { in populateTables()
2110 root->populator(SubtopicKeys::kRelatedFunctions).fMembers.push_back(child); in populateTables()
2118 root->populator(MarkType::kStruct != child->fMarkType ? SubtopicKeys::kClasses : in populateTables()
2119 SubtopicKeys::kStructs).fMembers.push_back(child); in populateTables()
2276 for (auto item : SubtopicKeys::kGeneratedSubtopics) { in subtopicsOut()
2277 if (SubtopicKeys::kMemberFunctions == item) { in subtopicsOut()
2283 if (SubtopicKeys::kRelatedFunctions == item) { in subtopicsOut()
2289 if (SubtopicKeys::kConstructors == item) { in subtopicsOut()
2332 if (SubtopicKeys::kMembers == name) { in subtopicOut()
2336 if (SubtopicKeys::kTypedefs == name && fSubtopic && MarkType::kTopic == fSubtopic->fMarkType) { in subtopicOut()