OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ThrowLoc
(Results
1 - 2
of
2
) sorted by null
/external/clang/lib/Parse/
ParseExprCXX.cpp
778
SourceLocation
ThrowLoc
= ConsumeToken(); // Eat the throw token.
790
return Actions.ActOnCXXThrow(getCurScope(),
ThrowLoc
, 0);
795
return Actions.ActOnCXXThrow(getCurScope(),
ThrowLoc
, Expr.take());
[
all
...]
/external/clang/include/clang/AST/
ExprCXX.h
588
SourceLocation
ThrowLoc
;
603
Op(expr),
ThrowLoc
(l), IsThrownVariableInScope(IsThrownVariableInScope) {}
609
SourceLocation getThrowLoc() const { return
ThrowLoc
; }
620
return SourceRange(
ThrowLoc
,
ThrowLoc
);
621
return SourceRange(
ThrowLoc
, getSubExpr()->getSourceRange().getEnd());
[
all
...]
Completed in 16 milliseconds