HomeSort by: relevance | last modified time | path
    Searched defs:canThrow (Results 1 - 6 of 6) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
InlineAsm.h 47 bool CanThrow;
51 bool isAlignStack, AsmDialect asmDialect, bool canThrow);
66 AsmDialect asmDialect = AD_ATT, bool canThrow = false);
71 bool canThrow() const { return CanThrow; }
  /src/external/apache2/llvm/dist/llvm/utils/TableGen/
CodeGenIntrinsics.h 118 bool canThrow;
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaExceptionSpec.cpp 556 CanThrowResult OldCanThrow = Old->canThrow();
557 CanThrowResult NewCanThrow = New->canThrow();
800 CanThrowResult SuperCanThrow = Superset->canThrow();
801 CanThrowResult SubCanThrow = Subset->canThrow();
995 R = mergeCanThrow(R, Self.canThrow(SubStmt));
1054 return FT->canThrow();
1063 CT = mergeCanThrow(CT, Self.canThrow(Init));
1119 CanThrowResult Sema::canThrow(const Stmt *S) {
1125 return canThrow(cast<ConstantExpr>(S)->getSubExpr());
1193 CT = mergeCanThrow(CT, canThrow(*Cap))
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/
WebAssemblyLowerEmscriptenEHSjLj.cpp 280 static bool canThrow(const Value *V) {
812 bool NeedInvoke = AllowExceptions && canThrow(II->getCalledOperand());
  /src/external/apache2/llvm/dist/clang/lib/AST/
Type.cpp 3281 CanThrowResult FunctionProtoType::canThrow() const {
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
Expr.h 5939 BlockVarCopyInit(Expr *CopyExpr, bool CanThrow)
5940 : ExprAndFlag(CopyExpr, CanThrow) {}
5941 void setExprAndFlag(Expr *CopyExpr, bool CanThrow) {
5942 ExprAndFlag.setPointerAndInt(CopyExpr, CanThrow);
5945 bool canThrow() const { return ExprAndFlag.getInt(); }

Completed in 23 milliseconds