OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SEHExceptStmt
(Results
1 - 13
of
13
) sorted by relevancy
/src/external/apache2/llvm/dist/clang/lib/AST/
Stmt.cpp
1238
SEHExceptStmt
* SEHTryStmt::getExceptHandler() const {
1239
return dyn_cast<
SEHExceptStmt
>(getHandler());
1246
SEHExceptStmt
::
SEHExceptStmt
(SourceLocation Loc, Expr *FilterExpr, Stmt *Block)
1252
SEHExceptStmt
*
SEHExceptStmt
::Create(const ASTContext &C, SourceLocation Loc,
1254
return new(C)
SEHExceptStmt
(Loc,FilterExpr,Block);
StmtPrinter.cpp
126
void PrintRawSEHExceptHandler(
SEHExceptStmt
*S);
592
SEHExceptStmt
*E = Node->getExceptHandler();
609
void StmtPrinter::PrintRawSEHExceptHandler(
SEHExceptStmt
*Node) {
617
void StmtPrinter::VisitSEHExceptStmt(
SEHExceptStmt
*Node) {
StmtProfile.cpp
363
void StmtProfiler::VisitSEHExceptStmt(const
SEHExceptStmt
*S) {
/src/external/apache2/llvm/dist/clang/include/clang/AST/
Stmt.h
3300
class
SEHExceptStmt
: public Stmt {
3309
SEHExceptStmt
(SourceLocation Loc, Expr *FilterExpr, Stmt *Block);
3310
explicit
SEHExceptStmt
(EmptyShell E) : Stmt(SEHExceptStmtClass, E) {}
3313
static
SEHExceptStmt
* Create(const ASTContext &C,
3415
SEHExceptStmt
*getExceptHandler() const;
RecursiveASTVisitor.h
2677
DEF_TRAVERSE_STMT(
SEHExceptStmt
, {})
/src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGException.cpp
2055
const
SEHExceptStmt
&Except) {
2163
const
SEHExceptStmt
*Except = S.getExceptHandler();
2204
const
SEHExceptStmt
*Except = S.getExceptHandler();
CodeGenFunction.h
3234
const
SEHExceptStmt
&Except);
/src/external/apache2/llvm/dist/clang/lib/Analysis/
CFG.cpp
600
CFGBlock *VisitSEHExceptStmt(
SEHExceptStmt
*S);
2306
return VisitSEHExceptStmt(cast<
SEHExceptStmt
>(S));
3123
CFGBlock *CFGBuilder::VisitSEHExceptStmt(
SEHExceptStmt
*ES) {
3124
//
SEHExceptStmt
are treated like labels, so they are the first statement in a
3199
if (
SEHExceptStmt
*Except = Terminator->getExceptHandler()) {
5667
} else if (
SEHExceptStmt
*ES = dyn_cast<
SEHExceptStmt
>(Label)) {
/src/external/apache2/llvm/dist/clang/lib/Sema/
JumpDiagnostics.cpp
444
if (
SEHExceptStmt
*Except = TS->getExceptHandler()) {
SemaStmt.cpp
4567
return
SEHExceptStmt
::Create(Context, Loc, FilterExpr, Block);
TreeTransform.h
8376
StmtResult TreeTransform<Derived>::TransformSEHExceptStmt(
SEHExceptStmt
*S) {
8394
return getDerived().TransformSEHExceptStmt(cast<
SEHExceptStmt
>(Handler));
/src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTReaderStmt.cpp
2233
void ASTStmtReader::VisitSEHExceptStmt(
SEHExceptStmt
*S) {
2236
S->Children[
SEHExceptStmt
::FILTER_EXPR] = Record.readSubStmt();
2237
S->Children[
SEHExceptStmt
::BLOCK] = Record.readSubStmt();
3133
S = new (Context)
SEHExceptStmt
(Empty);
ASTWriterStmt.cpp
2140
void ASTStmtWriter::VisitSEHExceptStmt(
SEHExceptStmt
*S) {
Completed in 77 milliseconds
Indexes created Wed Aug 05 00:25:39 UTC 2026