OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MatchingParen
(Results
1 - 4
of
4
) sorted by null
/external/clang/lib/Format/
FormatToken.cpp
105
while (State.NextToken != LBrace->
MatchingParen
) {
147
if (!Token->
MatchingParen
|| Token->isNot(tok::l_brace))
183
ItemEnd = Token->
MatchingParen
;
194
ItemEnd = Token->
MatchingParen
->Previous;
209
if (ItemEnd->getNextNonComment() == Token->
MatchingParen
)
TokenAnnotator.cpp
67
Left->
MatchingParen
= CurrentToken;
68
CurrentToken->
MatchingParen
= Left;
130
Left->Previous->
MatchingParen
&&
131
Left->Previous->
MatchingParen
->is(TT_LambdaLSquare)) {
148
} else if (Left->Previous && Left->Previous->
MatchingParen
&&
149
Left->Previous->
MatchingParen
->is(TT_ObjCBlockLParen)) {
194
Left->
MatchingParen
= CurrentToken;
195
CurrentToken->
MatchingParen
= Left;
315
Left->
MatchingParen
= CurrentToken;
316
CurrentToken->
MatchingParen
= Left
[
all
...]
FormatToken.h
261
FormatToken *
MatchingParen
= nullptr;
424
return
MatchingParen
&&
MatchingParen
->opensBlockOrBlockTypeList(Style);
ContinuationIndenter.cpp
32
if (!Tok.
MatchingParen
)
34
FormatToken *End = Tok.
MatchingParen
;
353
(Previous.
MatchingParen
&&
354
(Previous.TotalLength - Previous.
MatchingParen
->TotalLength > 10))) {
396
if (Previous.
MatchingParen
) {
397
const FormatToken *Next = Previous.
MatchingParen
->getNextNonComment();
580
if (Current.
MatchingParen
&&
581
Current.
MatchingParen
->BlockKind == BK_BracedInit)
[
all
...]
Completed in 250 milliseconds