Searched defs:Diag (Results 1 - 25 of 46) sorted by relevance

12

/freebsd-10.0-release/contrib/llvm/tools/llvm-diff/
H A Dllvm-diff.cpp36 SMDiagnostic Diag; local
/freebsd-10.0-release/contrib/llvm/tools/clang/include/clang/AST/
H A DCommentParser.h48 DiagnosticBuilder Diag(SourceLocation Loc, unsigned DiagID) { function in class:clang::comments::Parser
H A DCommentSema.h67 DiagnosticBuilder Diag(SourceLocation Loc, unsigned DiagID) { function in class:clang::comments::Sema
H A DDependentDiagnostic.h109 PartialDiagnostic Diag; member in class:clang::DependentDiagnostic
H A DCommentLexer.h322 DiagnosticBuilder Diag(SourceLocation Loc, unsigned DiagID) { function in class:clang::comments::Lexer
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
H A DTextPathDiagnostics.cpp28 DiagnosticsEngine &Diag; member in class:__anon3458::TextPathDiagnostics
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/Format/
H A DUnwrappedLineParser.h206 clang::DiagnosticsEngine &Diag; member in class:clang::format::UnwrappedLineParser
H A DUnwrappedLineParser.cpp128 UnwrappedLineParser( clang::DiagnosticsEngine &Diag, const FormatStyle &Style, FormatTokenSource &Tokens, UnwrappedLineConsumer &Callback) argument
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/Rewrite/Frontend/
H A DFixItRewriter.cpp188 void FixItRewriter::Diag(SourceLocation Loc, unsigned DiagID) { function in class:FixItRewriter
/freebsd-10.0-release/contrib/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinterInlineAsm.cpp49 static void srcMgrDiagHandler(const SMDiagnostic &Diag, void *diagInfo) { argument
/freebsd-10.0-release/contrib/llvm/tools/clang/include/clang/Driver/
H A DDriver.h50 DiagnosticBuilder Diag(unsigned DiagID) const { function in class:clang::driver::Driver
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/ARCMigrate/
H A DFileRemapper.cpp52 bool FileRemapper::initFromDisk(StringRef outputDir, DiagnosticsEngine &Diag, argument
58 bool FileRemapper::initFromFile(StringRef filePath, DiagnosticsEngine &Diag, argument
113 bool FileRemapper::flushToDisk(StringRef outputDir, DiagnosticsEngine &Diag) { argument
124 flushToFile(StringRef outputPath, DiagnosticsEngine &Diag) argument
172 overwriteOriginal(DiagnosticsEngine &Diag, StringRef outputDir) argument
289 report(const Twine &err, DiagnosticsEngine &Diag) argument
[all...]
H A DTransProtectedScope.cpp146 bool handleProtectedNote(const StoredDiagnostic &Diag) { argument
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/AST/
H A DCommentLexer.cpp297 assert(TokenPtr < CommentEnd); while (TokenPtr != CommentEnd) { switch(*TokenPtr) { case �: case �: { tok::TokenKind CommandKind = (*TokenPtr == �) ? tok::at_command : tok::backslash_command; TokenPtr++; if (TokenPtr == CommentEnd) { formTextToken(T, TokenPtr); return; } char C = *TokenPtr; switch (C) { default: break; case �: case �: case �: case �: case �: case �: case �: case �: case �: case �: case �: TokenPtr++; if (C == � && TokenPtr != CommentEnd && *TokenPtr == �) { TokenPtr++; } StringRef UnescapedText(BufferPtr + 1, TokenPtr - (BufferPtr + 1)); formTokenWithChars(T, TokenPtr, tok::text); T.setText(UnescapedText); return; } if (!isCommandNameStartCharacter(*TokenPtr)) { formTextToken(T, TokenPtr); return; } TokenPtr = skipCommandName(TokenPtr, CommentEnd); unsigned Length = TokenPtr - (BufferPtr + 1); if (Length == 1 && TokenPtr[-1] == � && TokenPtr != CommentEnd) { C = *TokenPtr; if (C == � || C == � || C == � || C == � || C == �) { TokenPtr++; Length++; } } const StringRef CommandName(BufferPtr + 1, Length); const CommandInfo *Info = Traits.getCommandInfoOrNULL(CommandName); if (!Info) { formTokenWithChars(T, TokenPtr, tok::unknown_command); T.setUnknownCommandName(CommandName); Diag(T.getLocation(), diag::warn_unknown_comment_command_name); return; } if (Info->IsVerbatimBlockCommand) argument
/freebsd-10.0-release/contrib/llvm/tools/clang/include/clang/Sema/
H A DDelayedDiagnostic.h108 PartialDiagnostic Diag; member in class:clang::sema::AccessedEntity
H A DScope.h159 Scope(Scope *Parent, unsigned ScopeFlags, DiagnosticsEngine &Diag) argument
H A DScopeInfo.h307 FunctionScopeInfo(DiagnosticsEngine &Diag) argument
406 CapturingScopeInfo(DiagnosticsEngine &Diag, ImplicitCaptureStyle Style) argument
487 BlockScopeInfo(DiagnosticsEngine &Diag, Scope *BlockScope, BlockDecl *Block) argument
515 CapturedRegionScopeInfo(DiagnosticsEngine &Diag, Scope *S, CapturedDecl *CD, argument
575 LambdaScopeInfo(DiagnosticsEngine &Diag, CXXRecordDecl *Lambda, argument
[all...]
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/Frontend/
H A DDiagnosticRenderer.cpp185 void DiagnosticRenderer::emitStoredDiagnostic(StoredDiagnostic &Diag) { argument
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/Lex/
H A DLiteralSupport.cpp64 static DiagnosticBuilder Diag(DiagnosticsEngine *Diags, function
[all...]
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/Basic/
H A DDiagnosticIDs.cpp204 getOrAddMappingInfo( diag::kind Diag) argument
687 EmitDiag(DiagnosticsEngine &Diag, Level DiagLevel) const argument
[all...]
H A DDiagnostic.cpp165 void DiagnosticsEngine::setDiagnosticMapping(diag::kind Diag, diag::Mapping Map, argument
248 void DiagnosticsEngine::setDiagnosticWarningAsError(diag::kind Diag, argument
296 setDiagnosticErrorAsFatal(diag::kind Diag, bool Enabled) argument
[all...]
/freebsd-10.0-release/contrib/llvm/tools/clang/utils/TableGen/
H A DClangDiagnosticsEmitter.cpp353 bool InferPedantic::isExtension(const Record *Diag) { argument
358 bool InferPedantic::isOffByDefault(const Record *Diag) { argument
469 static bool isError(const Record &Diag) { argument
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/Parse/
H A DParser.cpp116 DiagnosticBuilder Parser::Diag(SourceLocation Loc, unsigned DiagID) { function in class:Parser
120 DiagnosticBuilder Parser::Diag(const Token &Tok, unsigned DiagID) { function in class:Parser
[all...]
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/Sema/
H A DDeclSpec.cpp33 static DiagnosticBuilder Diag(DiagnosticsEngine &D, SourceLocation Loc, function
[all...]
H A DSema.cpp940 Sema::Diag(SourceLocation Loc, const PartialDiagnostic& PD) { function in class:Sema
[all...]

Completed in 401 milliseconds

12