Lines Matching refs:NamespaceName
64 std::string computeEndCommentText(StringRef NamespaceName, bool AddNewline, in computeEndCommentText() argument
72 else if (!NamespaceName.empty()) in computeEndCommentText()
74 text += NamespaceName; in computeEndCommentText()
86 bool validEndComment(const FormatToken *RBraceTok, StringRef NamespaceName, in validEndComment() argument
116 if (NamespaceName.empty() && !NamespaceNameInComment.empty()) in validEndComment()
120 if (!NamespaceName.empty() && !AnonymousInComment.empty()) in validEndComment()
122 if (NamespaceNameInComment == NamespaceName) in validEndComment()
140 return (NamespaceNameInComment == NamespaceName); in validEndComment()
245 std::string NamespaceName = computeName(NamespaceTok); in analyze() local
260 AllNamespaceNames = "::" + NamespaceName + AllNamespaceNames; in analyze()
263 NamespaceName += AllNamespaceNames; in analyze()
279 computeEndCommentText(NamespaceName, AddNewline, NamespaceTok, in analyze()
285 } else if (!validEndComment(EndCommentPrevTok, NamespaceName, in analyze()