OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CXXThrowExpr
(Results
1 - 15
of
15
) sorted by null
/external/clang/include/clang/AST/
ExprCXX.h
582
///
CXXThrowExpr
- [C++ 15] C++ Throw Expression. This handles
586
class
CXXThrowExpr
: public Expr {
598
CXXThrowExpr
(Expr *expr, QualType Ty, SourceLocation l,
604
CXXThrowExpr
(EmptyShell Empty) : Expr(CXXThrowExprClass, Empty) {}
627
static bool classof(const
CXXThrowExpr
*) { return true; }
[
all
...]
RecursiveASTVisitor.h
[
all
...]
/external/clang/lib/Sema/
AnalysisBasedWarnings.cpp
175
if (isa<
CXXThrowExpr
>(S)) {
SemaExprCXX.cpp
533
return Owned(new (Context)
CXXThrowExpr
(Ex, Context.VoidTy, OpLoc,
[
all
...]
TreeTransform.h
[
all
...]
/external/clang/lib/AST/
StmtProfile.cpp
742
void StmtProfiler::VisitCXXThrowExpr(const
CXXThrowExpr
*S) {
ItaniumMangle.cpp
[
all
...]
StmtPrinter.cpp
1114
void StmtPrinter::VisitCXXThrowExpr(
CXXThrowExpr
*Node) {
[
all
...]
/external/clang/lib/Serialization/
ASTReaderStmt.cpp
[
all
...]
ASTWriterStmt.cpp
[
all
...]
/external/clang/lib/CodeGen/
CGException.cpp
378
void CodeGenFunction::EmitCXXThrowExpr(const
CXXThrowExpr
*E) {
[
all
...]
CGExprAgg.cpp
143
void VisitCXXThrowExpr(const
CXXThrowExpr
*E) { CGF.EmitCXXThrowExpr(E); }
[
all
...]
CodeGenFunction.h
[
all
...]
CGExprScalar.cpp
393
Value *VisitCXXThrowExpr(const
CXXThrowExpr
*E) {
[
all
...]
/external/clang/lib/Analysis/
CFG.cpp
313
CFGBlock *VisitCXXThrowExpr(
CXXThrowExpr
*T);
914
return VisitCXXThrowExpr(cast<
CXXThrowExpr
>(S));
[
all
...]
Completed in 69 milliseconds