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

  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
NoReturnFunctionChecker.cpp 45 BuildSinks = FD->hasAttr<AnalyzerNoReturnAttr>() || FD->isNoReturn();
  /src/external/apache2/llvm/dist/clang/include/clang/Basic/
Builtins.h 115 bool isNoReturn(unsigned ID) const {
  /src/external/apache2/llvm/dist/llvm/utils/TableGen/
CodeGenIntrinsics.h 127 bool isNoReturn;
IntrinsicEmitter.cpp 590 if (L->isNoReturn != R->isNoReturn)
591 return R->isNoReturn;
742 Intrinsic.isNoReturn || Intrinsic.isNoSync || Intrinsic.isNoFree ||
750 if (Intrinsic.isNoReturn)
CodeGenTarget.cpp 653 isNoReturn = false;
854 isNoReturn = true;
860 isWillReturn = !isNoReturn;
  /src/external/apache2/llvm/dist/clang/include/clang/CodeGen/
CGFunctionInfo.h 665 bool isNoReturn() const { return NoReturn; }
700 return FunctionType::ExtInfo(isNoReturn(), getHasRegParm(), getRegParm(),
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/UninitializedObject/
UninitializedObjectChecker.cpp 550 auto NoReturnFuncM = callExpr(callee(functionDecl(isNoReturn())));
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGCXXABI.h 235 virtual void emitRethrow(CodeGenFunction &CGF, bool isNoReturn) = 0;
CGVTables.cpp 345 CallFnInfo.isNoReturn() == CurFnInfo->isNoReturn() &&
ItaniumCXXABI.cpp 162 void emitRethrow(CodeGenFunction &CGF, bool isNoReturn) override;
1281 void ItaniumCXXABI::emitRethrow(CodeGenFunction &CGF, bool isNoReturn) {
1289 if (isNoReturn)
MicrosoftCXXABI.cpp 120 void emitRethrow(CodeGenFunction &CGF, bool isNoReturn) override;
880 void MicrosoftCXXABI::emitRethrow(CodeGenFunction &CGF, bool isNoReturn) {
885 if (isNoReturn)
CGCall.cpp 1997 if (FI.isNoReturn())
2046 if (Fn->isNoReturn())
3402 if (FI.isNoReturn()) {
CGDebugInfo.cpp 1765 if (Method->isNoReturn())
3568 if (FD->isNoReturn())
  /src/external/apache2/llvm/dist/clang/lib/ASTMatchers/Dynamic/
Registry.cpp 429 REGISTER_MATCHER(isNoReturn);
  /src/external/apache2/llvm/dist/clang/include/clang/Analysis/
CFG.h 375 bool isNoReturn(ASTContext &astContext) const;
  /src/external/apache2/llvm/dist/clang/include/clang/ASTMatchers/
ASTMatchers.h 4929 /// functionDecl(isNoReturn())
4934 AST_MATCHER(FunctionDecl, isNoReturn) { return Node.isNoReturn(); }
  /src/external/apache2/llvm/dist/clang/lib/Sema/
AnalysisBasedWarnings.cpp 653 HasNoReturn = FD->isNoReturn();
SemaStmt.cpp 3958 if (FD->isNoReturn())
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
DwarfUnit.cpp 1271 if (SP->isNoReturn())
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
Decl.h 2391 bool isNoReturn() const;
  /src/external/apache2/llvm/dist/clang/lib/AST/
Decl.cpp 3222 bool FunctionDecl::isNoReturn() const {
DeclCXX.cpp 1894 if (Destructor->isNoReturn())
ASTContext.cpp 10642 if (BuiltinInfo.isNoReturn(Id)) EI = EI.withNoReturn(true);
  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
DebugInfoMetadata.h 1992 bool isNoReturn() const { return getFlags() & FlagNoReturn; }
  /src/external/apache2/llvm/dist/clang/lib/Analysis/
CFG.cpp 2627 if (FD->isNoReturn() || C->isBuiltinAssumeFalse(*Context))

Completed in 110 milliseconds