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

1 2

  /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/llvm/lib/MC/MCDisassembler/
EDInst.cpp 12 // individual tokens, and operands for a single instruction.
47 unsigned int numTokens = Tokens.size();
50 delete Tokens[index];
175 return TokenizeResult.setResult(EDToken::tokenize(Tokens,
185 return Tokens.size();
191 token = Tokens[index];
202 for (iter = Tokens.begin(); iter != Tokens.end(); ++iter) {
EDInst.h 12 // representation, individual tokens and operands for a single instruction.
59 /// string representation, as well as its operands and tokens
93 /// The instruction's tokens
94 tokvec_t Tokens;
156 /// tokenize - populates the Tokens member of the instruction, returning 0 on
159 /// numTokens - returns the number of tokens in the instruction, or -1 on
175 /// @arg visitor - The visitor block to apply to all tokens.
  /external/clang/lib/Lex/
TokenLexer.cpp 39 Tokens = &*Macro->tokens_begin();
49 assert(Tokens[0].getLocation().isValid());
50 assert((Tokens[0].getLocation().isFileID() || Tokens[0].is(tok::comment)) &&
55 // definition. Tokens that get lexed directly from the definition will
58 MacroDefStart = SM.getExpansionLoc(Tokens[0].getLocation());
67 // Tokens to point to the expanded tokens.
89 Tokens = TokArray;
110 // the expanded tokens
    [all...]
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
token.ml 2 * Lexer Tokens
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
token.ml 2 * Lexer Tokens
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
token.ml 2 * Lexer Tokens
  /external/clang/include/clang/Lex/
TokenLexer.h 43 /// Tokens - This is the pointer to an array of tokens that the macro is
45 /// a token stream, these are the tokens we are returning. This points into
51 const Token *Tokens;
54 /// NumTokens - This is the length of the Tokens array.
84 /// OwnsTokens - This is true if this TokenLexer allocated the Tokens
90 /// DisableMacroExpansion - This is true when tokens lexed from the TokenLexer
114 /// specified, this takes ownership of the tokens and delete[]'s them when
125 /// DisableExpansion is true when macro expansion of tokens lexed from this
161 /// return preexpanded tokens from Tokens
    [all...]
  /external/llvm/lib/CodeGen/
IfConversion.cpp 185 std::vector<IfcvtToken*> &Tokens);
188 void AnalyzeBlocks(MachineFunction &MF, std::vector<IfcvtToken*> &Tokens);
286 std::vector<IfcvtToken*> Tokens;
294 AnalyzeBlocks(MF, Tokens);
295 while (!Tokens.empty()) {
296 IfcvtToken *Token = Tokens.back();
297 Tokens.pop_back();
392 // Delete tokens in case of early exit.
393 while (!Tokens.empty()) {
394 IfcvtToken *Token = Tokens.back()
    [all...]
  /external/mesa3d/docs/
MESA_agp_offset.spec 53 New Tokens
MESA_copy_sub_buffer.spec 50 New Tokens
MESA_pixmap_colormap.spec 55 New Tokens
MESA_resize_buffers.spec 50 New Tokens
MESA_set_3dfx_mode.spec 48 New Tokens
MESA_drm_image.spec 54 New Tokens
148 Flesh out the extension a bit, add final EGL tokens, capture
MESA_shader_debug.spec 72 New Tokens
263 Add Overview, New Procedures and Functions, New Tokens sections.
MESA_swap_control.spec 49 New Tokens
  /external/chromium/chrome/common/net/gaia/
gaia_authenticator.cc 232 typedef vector<pair<string, string> > Tokens;
233 Tokens tokens; local
234 base::SplitStringIntoKeyValuePairs(message_text, '=', '\n', &tokens);
235 for (Tokens::iterator i = tokens.begin(); i != tokens.end(); ++i) {
298 // Helper method that extracts tokens from a successful reply, and saves them
302 vector<pair<string, string> > tokens; local
303 base::SplitStringIntoKeyValuePairs(response, '=', '\n', &tokens);
320 vector<pair<string, string> > tokens; local
    [all...]
  /external/clang/tools/libclang/
CIndex.cpp     [all...]
  /external/mesa3d/docs/OLD/
MESA_sprite_point.spec 105 New Tokens
MESA_packed_depth_stencil.spec 59 New Tokens
  /external/clang/include/clang-c/
Index.h 259 * the tokens parsed in the source code. These data types and functions are
562 * test.c:28: warning: extra tokens at end of #endif directive
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/
jsilver.sablecc 25 * The lexer breaks the inbound text stream in to a sequence of tokens.
31 * into a finer grained set of tokens.
49 // These aren't actually tokens, but can be used by tokens. Avoids the
67 /* Tokens and state transitions. */
68 Tokens
137 // Tokens that are valid in multiple states
149 * Below is a BNF-like grammar of how the tokens are assembled.
164 /* Tokens from the lexer that the parser doesn't care about. */
165 Ignored Tokens
    [all...]

Completed in 648 milliseconds

1 2