Lines Matching refs:Label
69 std::string Label; member
71 UsingDeclaration(const AnnotatedLine *Line, const std::string &Label) in UsingDeclaration()
72 : Line(Line), Label(Label) {} in UsingDeclaration()
75 return compareLabels(Label, Other.Label) < 0; in operator <()
89 std::string Label; in computeUsingDeclarationLabel() local
92 Label.append("typename "); in computeUsingDeclarationLabel()
96 Label.append("::"); in computeUsingDeclarationLabel()
102 Label.append(Tok->TokenText.str()); in computeUsingDeclarationLabel()
106 Label.append("::"); in computeUsingDeclarationLabel()
110 return Label; in computeUsingDeclarationLabel()
135 return a.Label == b.Label; in endUsingDeclarationBlock()
202 std::string Label = computeUsingDeclarationLabel(UsingTok); in analyze() local
203 if (Label.empty()) { in analyze()
207 UsingDeclarations.push_back(UsingDeclaration(Line, Label)); in analyze()