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

1 2 3 4 5 6

  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
JavaScriptFormatter.js 165 var tokens = [ variable
180 var Tokens = {};
181 for (var i = 0; i < tokens.length; ++i)
182 Tokens[tokens[i][0]] = i;
185 for (var i = 0; i < tokens.length; ++i) {
186 if (tokens[i][1])
187 TokensByValue[tokens[i][1]] = i;
191 "eof": Tokens.EOS,
192 "name": Tokens.IDENTIFIER
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
Tokens.cs 35 public static class Tokens
  /external/chromium_org/chrome/browser/ui/app_list/search/
tokenized_string.h 21 typedef std::vector<string16> Tokens;
28 const Tokens& tokens() const { return tokens_; } function in class:app_list::TokenizedString
37 // Broken down tokens and the index mapping of tokens in original string.
38 Tokens tokens_;
tokenized_string_char_iterator.h 53 const TokenizedString::Tokens& 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/chromium_org/third_party/WebKit/Source/core/platform/text/
DateTimeFormatTest.cpp 82 class Tokens {
84 Tokens() { }
86 explicit Tokens(const Vector<Token> tokens)
87 : m_tokens(tokens)
91 explicit Tokens(const String& string)
96 explicit Tokens(Token token1)
101 Tokens(Token token1, Token token2)
107 Tokens(Token token1, Token token2, Token token3)
114 Tokens(Token token1, Token token2, Token token3, Token token4
193 Tokens tokens() const { return Tokens(m_tokens); } function in class:DateTimeFormatTest::TokenHandler
    [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/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/clang/lib/Format/
TokenAnnotator.h 42 : First(Line.Tokens.front()), Level(Line.Level),
46 assert(!Line.Tokens.empty());
48 for (std::list<FormatToken *>::const_iterator I = ++Line.Tokens.begin(),
49 E = Line.Tokens.end();
69 /// \brief Determines extra information about the tokens comprising an
UnwrappedLineParser.h 12 /// which turns a stream of tokens into UnwrappedLines.
37 /// \brief The \c Tokens comprising this \c UnwrappedLine.
38 std::list<FormatToken *> Tokens;
59 UnwrappedLineParser(const FormatStyle &Style, ArrayRef<FormatToken *> Tokens,
141 FormatTokenSource *Tokens;
145 // of the format tokens. The goal is to have the actual tokens created and
  /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/antlr/antlr-3.4/runtime/ObjC/Framework/examples/hoistedPredicates/
TLexer.h 16 #pragma mark Tokens
TParser.h 25 #pragma mark Tokens
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treerewrite/
TreeRewriteLexer.h 16 #pragma mark Tokens
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/scopes/
SymbolTableLexer.h 16 #pragma mark Tokens
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treeparser/
LangLexer.h 16 #pragma mark Tokens
  /external/clang/lib/Lex/
TokenLexer.cpp 40 Tokens = &*Macro->tokens_begin();
50 assert(Tokens[0].getLocation().isValid());
51 assert((Tokens[0].getLocation().isFileID() || Tokens[0].is(tok::comment)) &&
56 // definition. Tokens that get lexed directly from the definition will
59 MacroDefStart = SM.getExpansionLoc(Tokens[0].getLocation());
68 // Tokens to point to the expanded tokens.
90 Tokens = TokArray;
111 // the expanded tokens
    [all...]

Completed in 201 milliseconds

1 2 3 4 5 6