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

  /src/sys/external/bsd/compiler_rt/dist/lib/asan/tests/
asan_exceptions_test.cc 11 void Throw(const char& arg) const {
13 throw arg;
21 a.Throw('c');
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
StmtObjC.h 331 /// Represents Objective-C's \@throw statement.
334 Stmt *Throw;
338 : Stmt(ObjCAtThrowStmtClass), Throw(throwExpr) {
344 const Expr *getThrowExpr() const { return reinterpret_cast<Expr*>(Throw); }
345 Expr *getThrowExpr() { return reinterpret_cast<Expr*>(Throw); }
346 void setThrowExpr(Stmt *S) { Throw = S; }
353 return Throw ? Throw->getEndLoc() : AtThrowLoc;
360 child_range children() { return child_range(&Throw, &Throw+1);
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGObjCGNU.cpp 3969 llvm::CallBase *Throw = CGF.EmitRuntimeCallOrInvoke(ExceptionReThrowFn);
3970 Throw->setDoesNotReturn();
3974 llvm::CallBase *Throw =
3976 Throw->setDoesNotReturn();
MicrosoftCXXABI.cpp 753 llvm::FunctionCallee Throw =
757 if (auto *Fn = dyn_cast<llvm::Function>(Throw.getCallee()))
760 return Throw;
4362 // Call into the runtime to throw the exception.

Completed in 71 milliseconds