HomeSort by relevance Sort by last modified time
    Searched refs:r_square (Results 1 - 25 of 31) sorted by null

1 2

  /external/clang/lib/Parse/
ParseInit.cpp 44 case tok::r_square:
227 SkipUntil(tok::r_square, StopAtSemi);
265 SkipUntil(tok::r_square, StopAtSemi);
277 SkipUntil(tok::r_square, StopAtSemi);
307 SkipUntil(tok::r_square, StopAtSemi);
317 Tok.isNot(tok::r_square)) {
333 SkipUntil(tok::r_square, StopAtSemi);
ParseTentative.cpp 187 if (!SkipUntil(tok::r_square))
596 bool IsAttribute = SkipUntil(tok::r_square);
597 IsAttribute &= Tok.is(tok::r_square);
617 bool IsAttribute = Tok.is(tok::r_square);
636 while (Tok.isNot(tok::r_square)) {
677 if (Tok.is(tok::r_square)) {
679 IsAttribute = Tok.is(tok::r_square);
739 if (Tok.is(tok::l_square) && NextToken().is(tok::r_square)) {
753 if (NextToken().is(tok::r_square)) {
    [all...]
ParseCXXInlineMethods.cpp 703 ConsumeAndStoreUntil(tok::r_square, Toks, /*StopAtSemi=*/false);
723 case tok::r_square:
    [all...]
ParseObjc.cpp     [all...]
ParseExprCXX.cpp 723 SkipUntil(tok::r_square, StopAtSemi);
748 if (Next.is(tok::r_square) || // []
751 (After.is(tok::r_square) ||
754 After.is(tok::r_square))) {
800 (NextToken().is(tok::comma) || NextToken().is(tok::r_square))) {
810 while (Tok.isNot(tok::r_square)) {
    [all...]
RAIIObjectsForParser.h 403 Close = tok::r_square;
Parser.cpp 186 if ((Tok.is(tok::r_paren) || Tok.is(tok::r_square)) &&
313 SkipUntil(tok::r_square, StopAtCodeCompletion);
315 SkipUntil(tok::r_square);
336 case tok::r_square:
    [all...]
ParseExpr.cpp     [all...]
ParseDeclCXX.cpp     [all...]
ParseDecl.cpp     [all...]
  /device/google/contexthub/firmware/os/algos/common/math/
kasa.c 108 float r_square = vec3Dot(&v, &v) - out.w; local
109 float r = (r_square > 0) ? sqrtf(r_square) : 0;
  /external/swiftshader/third_party/LLVM/lib/TableGen/
TGLexer.h 35 l_square, r_square, // [ ] enumerator in enum:llvm::tgtok::TokKind
TGLexer.cpp 103 case ']': return tgtok::r_square;
TGParser.cpp     [all...]
  /external/llvm/lib/TableGen/
TGLexer.h 36 l_square, r_square, // [ ] enumerator in enum:llvm::tgtok::TokKind
TGLexer.cpp 108 case ']': return tgtok::r_square;
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/TableGen/
TGLexer.h 36 l_square, r_square, // [ ] enumerator in enum:llvm::tgtok::TokKind
TGLexer.cpp 110 case ']': return tgtok::r_square;
  /external/clang/lib/Format/
TokenAnnotator.cpp 91 if (CurrentToken->isOneOf(tok::r_paren, tok::r_square, tok::r_brace) ||
158 } else if (Left->Previous && Left->Previous->is(tok::r_square) &&
267 if (CurrentToken->isOneOf(tok::r_square, tok::r_brace))
347 if (CurrentToken->is(tok::r_square)) {
418 if (CurrentToken->isOneOf(tok::r_paren, tok::r_square))
603 case tok::r_square:
    [all...]
UnwrappedLineParser.cpp 350 ProbablyBracedList = NextTok->isOneOf(tok::comma, tok::r_square);
369 tok::r_paren, tok::r_square, tok::l_brace,
738 Previous->isOneOf(tok::r_square, tok::r_paren,
    [all...]
FormatToken.h 342 return isOneOf(tok::r_paren, tok::r_brace, tok::r_square,
ContinuationIndenter.cpp 619 if (Current.isOneOf(tok::r_brace, tok::r_square) && State.Stack.size() > 1) {
    [all...]
WhitespaceManager.cpp 259 Changes[i].Kind == tok::r_square) {
  /external/clang/unittests/Lex/
LexerTest.cpp 274 ExpectedTokens.push_back(tok::r_square);
277 ExpectedTokens.push_back(tok::r_square);
  /external/clang/unittests/Basic/
SourceManagerTest.cpp 103 ASSERT_EQ(tok::r_square, toks[2].getKind());

Completed in 967 milliseconds

1 2