OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:LParenLoc
(Results
1 - 15
of
15
) sorted by relevancy
/src/external/apache2/llvm/dist/clang/lib/Lex/
PPExpressions.cpp
111
SourceLocation
LParenLoc
;
114
LParenLoc
= PeekTok.getLocation();
144
if (
LParenLoc
.isValid()) {
152
PP.Diag(
LParenLoc
, diag::note_matching) << tok::l_paren;
/src/external/apache2/llvm/dist/clang/include/clang/AST/
ExprObjC.h
1633
SourceLocation
LParenLoc
;
1638
ObjCBridgedCastExpr(SourceLocation
LParenLoc
, ObjCBridgeCastKind Kind,
1643
LParenLoc
(
LParenLoc
), BridgeKeywordLoc(BridgeKeywordLoc), Kind(Kind) {}
1649
SourceLocation getLParenLoc() const { return
LParenLoc
; }
1662
SourceLocation getBeginLoc() const LLVM_READONLY { return
LParenLoc
; }
DeclCXX.h
2191
SourceLocation
LParenLoc
;
2366
SourceLocation getLParenLoc() const { return
LParenLoc
; }
DeclObjC.h
741
SourceLocation
LParenLoc
;
776
LParenLoc
(LParenLocation), DeclType(T), DeclTypeSourceInfo(TSI),
796
SourceLocation getLParenLoc() const { return
LParenLoc
; }
797
void setLParenLoc(SourceLocation L) {
LParenLoc
= L; }
ExprCXX.h
1730
SourceLocation
LParenLoc
;
1736
FPOptionsOverride FPO, SourceLocation
lParenLoc
,
1740
LParenLoc
(
lParenLoc
), RParenLoc(rParenLoc) {
1766
SourceLocation getLParenLoc() const { return
LParenLoc
; }
1767
void setLParenLoc(SourceLocation L) {
LParenLoc
= L; }
1772
bool isListInitialization() const { return
LParenLoc
.isInvalid(); }
3438
SourceLocation
LParenLoc
;
3444
SourceLocation
LParenLoc
, ArrayRef<Expr *> Args,
3455
SourceLocation
LParenLoc
,
[
all
...]
OpenMPClause.h
179
SourceLocation
LParenLoc
;
183
OMPVarListLocTy(SourceLocation StartLoc, SourceLocation
LParenLoc
,
185
: StartLoc(StartLoc),
LParenLoc
(
LParenLoc
), EndLoc(EndLoc) {}
195
SourceLocation
LParenLoc
;
205
/// \param
LParenLoc
Location of '('.
209
SourceLocation
LParenLoc
, SourceLocation EndLoc, unsigned N)
210
: OMPClause(K, StartLoc, EndLoc),
LParenLoc
(
LParenLoc
), NumVars(N) {}
248
void setLParenLoc(SourceLocation Loc) {
LParenLoc
= Loc;
[
all
...]
Expr.h
3330
///
LParenLoc
- If non-null, this is the location of the left paren in a
3333
SourceLocation
LParenLoc
;
3341
CompoundLiteralExpr(SourceLocation
lparenloc
, TypeSourceInfo *tinfo,
3344
LParenLoc
(
lparenloc
), TInfoAndScope(tinfo, fileScope), Init(init) {
3359
SourceLocation getLParenLoc() const { return
LParenLoc
; }
3360
void setLParenLoc(SourceLocation L) {
LParenLoc
= L; }
3373
if (
LParenLoc
.isInvalid())
3375
return
LParenLoc
;
4273
SourceLocation
LParenLoc
, RParenLoc
[
all
...]
Stmt.h
1932
SourceLocation
LParenLoc
;
1954
VarDecl *Var, Expr *Cond, SourceLocation
LParenLoc
,
2096
SourceLocation getLParenLoc() const { return
LParenLoc
; }
2097
void setLParenLoc(SourceLocation Loc) {
LParenLoc
= Loc; }
2147
SourceLocation
LParenLoc
;
2163
SourceLocation
LParenLoc
, SourceLocation RParenLoc);
2171
Expr *Cond, SourceLocation
LParenLoc
,
2260
SourceLocation getLParenLoc() const { return
LParenLoc
; }
2261
void setLParenLoc(SourceLocation Loc) {
LParenLoc
= Loc; }
2334
SourceLocation
LParenLoc
, RParenLoc
[
all
...]
/src/external/apache2/llvm/dist/clang/lib/Parse/
ParseDeclCXX.cpp
4097
SourceLocation
LParenLoc
= Tok.getLocation();
4140
Diag(
LParenLoc
, diag::err_attribute_requires_arguments) << AttrName;
4146
Diag(
LParenLoc
, diag::err_cxx11_attribute_forbids_arguments)
4148
<< FixItHint::CreateRemoval(SourceRange(
LParenLoc
, *EndLoc));
ParseExpr.cpp
2269
SourceLocation
LParenLoc
= PP.getLocForEndOfToken(OpTok.getLocation());
2271
if (
LParenLoc
.isInvalid() || RParenLoc.isInvalid()) {
2276
Diag(
LParenLoc
, diag::err_expected_parentheses_around_typename)
2277
<< OpTok.getName() << FixItHint::CreateInsertion(
LParenLoc
, "(")
2299
SourceLocation
LParenLoc
= Tok.getLocation(), RParenLoc;
2303
CastRange = SourceRange(
LParenLoc
, RParenLoc);
2351
SourceLocation
LParenLoc
, RParenLoc;
2357
LParenLoc
= T.getOpenLocation();
2372
LParenLoc
= PP.getLocForEndOfToken(EllipsisLoc);
2374
Diag(
LParenLoc
, diag::err_paren_sizeof_parameter_pack
[
all
...]
ParseObjc.cpp
723
SourceLocation
LParenLoc
;
726
LParenLoc
= Tok.getLocation();
765
getCurScope(), AtLoc,
LParenLoc
, FD, OCDS, GetterSel, SetterSel,
ParseDecl.cpp
6520
SourceLocation
LParenLoc
, RParenLoc;
6521
LParenLoc
= Tracker.getOpenLocation();
6522
StartLoc =
LParenLoc
;
6650
HasProto, IsAmbiguous,
LParenLoc
, ParamInfo.data(),
/src/external/apache2/llvm/dist/clang/include/clang/Sema/
DeclSpec.h
1305
SourceLocation
LParenLoc
;
1422
SourceLocation getLParenLoc() const { return
LParenLoc
; }
1626
SourceLocation
LParenLoc
,
1686
static DeclaratorChunk getParen(SourceLocation
LParenLoc
,
1690
I.Loc =
LParenLoc
;
Sema.h
3814
SourceLocation
LParenLoc
,
3858
SourceLocation
LParenLoc
,
3863
BuildCallToObjectOfClassType(Scope *S, Expr *Object, SourceLocation
LParenLoc
,
4384
SourceLocation
LParenLoc
,
4402
SourceLocation
LParenLoc
,
4663
SourceLocation
LParenLoc
, Stmt *InitStmt,
4667
SourceLocation
LParenLoc
, Stmt *InitStmt,
4671
SourceLocation
LParenLoc
, Stmt *InitStmt,
4676
StmtResult ActOnWhileStmt(SourceLocation WhileLoc, SourceLocation
LParenLoc
,
4684
SourceLocation
LParenLoc
,
[
all
...]
/src/external/apache2/llvm/dist/clang/lib/Sema/
TreeTransform.h
1324
SourceLocation
LParenLoc
, Sema::ConditionResult Cond,
1327
return getSema().ActOnIfStmt(IfLoc, IsConstexpr,
LParenLoc
, Init, Cond,
1336
SourceLocation
LParenLoc
, Stmt *Init,
1339
return getSema().ActOnStartOfSwitchStmt(SwitchLoc,
LParenLoc
, Init, Cond,
1356
StmtResult RebuildWhileStmt(SourceLocation WhileLoc, SourceLocation
LParenLoc
,
1359
return getSema().ActOnWhileStmt(WhileLoc,
LParenLoc
, Cond, RParenLoc, Body);
1367
SourceLocation WhileLoc, SourceLocation
LParenLoc
,
1369
return getSema().ActOnDoStmt(DoLoc, Body, WhileLoc,
LParenLoc
,
1377
StmtResult RebuildForStmt(SourceLocation ForLoc, SourceLocation
LParenLoc
,
1381
return getSema().ActOnForStmt(ForLoc,
LParenLoc
, Init, Cond
[
all
...]
Completed in 88 milliseconds
Indexes created Tue Jun 09 00:24:00 UTC 2026