Home | History | Annotate | Download | only in Lex

Lines Matching refs:Namespace

26 namespace clang {
196 /// \param Namespace The namespace of the message directive.
199 virtual void PragmaMessage(SourceLocation Loc, StringRef Namespace,
206 StringRef Namespace) {
212 StringRef Namespace) {
216 virtual void PragmaDiagnostic(SourceLocation Loc, StringRef Namespace,
379 virtual void PragmaMessage(SourceLocation Loc, StringRef Namespace,
381 First->PragmaMessage(Loc, Namespace, Kind, Str);
382 Second->PragmaMessage(Loc, Namespace, Kind, Str);
386 StringRef Namespace) {
387 First->PragmaDiagnosticPush(Loc, Namespace);
388 Second->PragmaDiagnosticPush(Loc, Namespace);
392 StringRef Namespace) {
393 First->PragmaDiagnosticPop(Loc, Namespace);
394 Second->PragmaDiagnosticPop(Loc, Namespace);
397 virtual void PragmaDiagnostic(SourceLocation Loc, StringRef Namespace,
399 First->PragmaDiagnostic(Loc, Namespace, mapping, Str);
400 Second->PragmaDiagnostic(Loc, Namespace, mapping, Str);
472 } // end namespace clang