Home | History | Annotate | Download | only in Lex

Lines Matching refs:Namespace

25 namespace clang {
195 /// \param Namespace The namespace of the message directive.
198 virtual void PragmaMessage(SourceLocation Loc, StringRef Namespace,
205 StringRef Namespace) {
211 StringRef Namespace) {
215 virtual void PragmaDiagnostic(SourceLocation Loc, StringRef Namespace,
413 void PragmaMessage(SourceLocation Loc, StringRef Namespace,
415 First->PragmaMessage(Loc, Namespace, Kind, Str);
416 Second->PragmaMessage(Loc, Namespace, Kind, Str);
419 void PragmaDiagnosticPush(SourceLocation Loc, StringRef Namespace) override {
420 First->PragmaDiagnosticPush(Loc, Namespace);
421 Second->PragmaDiagnosticPush(Loc, Namespace);
424 void PragmaDiagnosticPop(SourceLocation Loc, StringRef Namespace) override {
425 First->PragmaDiagnosticPop(Loc, Namespace);
426 Second->PragmaDiagnosticPop(Loc, Namespace);
429 void PragmaDiagnostic(SourceLocation Loc, StringRef Namespace,
431 First->PragmaDiagnostic(Loc, Namespace, mapping, Str);
432 Second->PragmaDiagnostic(Loc, Namespace, mapping, Str);
538 } // end namespace clang