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

1 2 3 4 5 6 7 8 9

  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
Tokens.cs 35 public static class Tokens
  /frameworks/compile/mclinker/include/mcld/Script/
StringList.h 27 typedef std::vector<StrToken*> Tokens;
28 typedef Tokens::const_iterator const_iterator;
29 typedef Tokens::iterator iterator;
30 typedef Tokens::const_reference const_reference;
31 typedef Tokens::reference reference;
62 Tokens m_Tokens;
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
TreeConstants.cs 37 public static readonly ITree INVALID_NODE = new CommonTree( Tokens.Invalid );
  /external/swiftshader/third_party/subzero/src/
IceRangeSpec.cpp 51 auto Tokens = RangeSpec::tokenize(Token, RangeSpec::DELIM_RANGE);
52 if (Tokens.size() == 1) {
53 *First = std::stoul(Tokens[0]);
55 } else if (Tokens.size() == 2) {
56 *First = Tokens[0].empty() ? 0 : std::stoul(Tokens[0]);
57 *Last = Tokens[1].empty() ? RangeSpec::RangeMax : std::stoul(Tokens[1]);
99 std::vector<std::string> Tokens;
105 Tokens.emplace_back(Spec.substr(StartPos, DelimPos - StartPos))
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
TokenConstants.cs 38 * All tokens go to the parser (unless skip() is called in that rule)
65 public static class Tokens
67 public static readonly IToken EndOfFile = Tokens<CommonToken>.EndOfFile;
79 public static class Tokens<T>
  /external/clang/lib/Format/
FormatTokenLexer.cpp 46 assert(Tokens.empty());
49 Tokens.push_back(getNextToken());
55 if (Tokens.back()->NewlinesBefore > 0 || Tokens.back()->IsMultiline)
56 FirstInLineIndex = Tokens.size() - 1;
57 } while (Tokens.back()->Tok.isNot(tok::eof));
58 return Tokens;
90 if (Tokens.size() < 3)
94 if (Tokens.size() > 3)
95 FourthTokenIsLess = (Tokens.end() - 4)[0]->is(tok::less)
    [all...]
TokenAnnotator.h 42 : First(Line.Tokens.front().Tok), Level(Line.Level),
47 assert(!Line.Tokens.empty());
49 // Calculate Next and Previous for all tokens. Note that we must overwrite
54 for (std::list<UnwrappedLineNode>::const_iterator I = ++Line.Tokens.begin(),
55 E = Line.Tokens.end();
83 /// \c true if this line starts with the given tokens in order, ignoring
85 template <typename... Ts> bool startsWith(Ts... Tokens) const {
86 return First && First->startsSequence(Tokens...);
89 /// \c true if this line ends with the given tokens in reversed order,
91 /// For example, given tokens [T1, T2, T3, ...], the function returns true i
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/combined/
CombinedLexer.h 16 #pragma mark Tokens
CombinedParser.h 13 #pragma mark Tokens
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/lexertest-simple/
TestLexer.h 15 #pragma mark Tokens
TestLexerLexer.h 16 #pragma mark Tokens
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/lexertest-simple/output1/
TestLexer.h 15 #pragma mark Tokens
TestLexerLexer.h 15 #pragma mark Tokens
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treerewrite/output1/
TreeRewriteLexer.h 16 #pragma mark Tokens
  /external/ImageMagick/MagickWand/tests/
script-token-test-data.txt 30 'Empty Tokens, using quotes'
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
token.ml 2 * Lexer Tokens
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
token.ml 2 * Lexer Tokens
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
token.ml 2 * Lexer Tokens
  /external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter2/
token.ml 2 * Lexer Tokens
  /external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter3/
token.ml 2 * Lexer Tokens
  /external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter4/
token.ml 2 * Lexer Tokens
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/hoistedPredicates/
TLexer.h 16 #pragma mark Tokens
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treerewrite/
TreeRewriteLexer.h 16 #pragma mark Tokens
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/
GlobPattern.h 39 std::vector<BitVector> Tokens;
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/Support/
GlobPattern.h 39 std::vector<BitVector> Tokens;

Completed in 628 milliseconds

1 2 3 4 5 6 7 8 9