HomeSort by: relevance | last modified time | path
    Searched refs:DiagSelect (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/AST/
CommentSema.cpp 103 unsigned DiagSelect;
106 DiagSelect = (!isAnyFunctionDecl() && !isFunctionTemplateDecl())? 1 : 0;
109 DiagSelect = (!isAnyFunctionDecl() && !isFunctionTemplateDecl())? 2 : 0;
112 DiagSelect = !isObjCMethodDecl() ? 3 : 0;
115 DiagSelect = !isObjCMethodDecl() ? 4 : 0;
118 DiagSelect = !isFunctionPointerVarDecl() ? 5 : 0;
121 DiagSelect = 0;
124 if (DiagSelect)
127 << (DiagSelect-1) << (DiagSelect-1
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaChecking.cpp 1339 auto DiagSelect = [&]() -> llvm::Optional<unsigned> {
1348 if (DiagSelect.hasValue()) {
1350 << DiagSelect.getValue() << TheCall->getSourceRange();

Completed in 130 milliseconds