HomeSort by relevance Sort by last modified time
    Searched refs:tokens (Results 201 - 225 of 476) sorted by null

1 2 3 4 5 6 7 891011>>

  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
IccProvider.java 203 String[] tokens = where.split("AND"); local
204 int n = tokens.length;
207 String param = tokens[n];
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
ContactLocaleUtils.java 357 ArrayList<Token> tokens = HanziToPinyin.getInstance().get(name); local
358 final int tokenCount = tokens.size();
366 final Token token = tokens.get(i);
  /external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/
gUnitExecutor.java 323 CommonTokenStream tokens = new CommonTokenStream((Lexer) lexObj); local
328 Object[] parArgs = new Object[]{tokens}; // assign value to parser's args
380 if ( tokens.index()!=tokens.size()-1 ) {
464 CommonTokenStream tokens = new CommonTokenStream((Lexer) lexObj); local
469 Object[] parArgs = new Object[]{tokens}; // assign value to parser's args
509 nodes.setTokenStream(tokens);
548 if ( tokens.index()!=tokens.size()-1 ) {
  /external/antlr/antlr-3.4/runtime/C/include/
antlr3tokenstream.h 63 /** Whoever is providing tokens, needs to provide a string factory too
67 /** A special pre-allocated token, which signifies End Of Tokens. Because this must
88 * name from whence the tokens were produced by the lexer. This pointer is a
125 * i<0 indicates tokens in the past. So -1 is previous token and -2 is
126 * two tokens ago. LT(0) is undefined. For i>=n, return Token.EOFToken.
134 * If you don't want to buffer up tokens, then this method makes no
141 /** Where is this stream pulling tokens from? This is not the name, but
153 /** Return the text of all the tokens in the stream, as the old tramp in
158 /** Return the text of all tokens from start to stop, inclusive.
159 * If the stream does not buffer all the tokens then it can jus
211 pANTLR3_VECTOR tokens; member in struct:ANTLR3_COMMON_TOKEN_STREAM_struct
    [all...]
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
BaseRecognizer.js 105 * @param {org.antlr.runtime.BitSet} [follow] set of tokens that can follow the
149 * @param {org.antlr.runtime.BitSet} [follow] set of tokens that can follow the
189 * @param {org.antlr.runtime.BitSet} [follow] set of tokens that can follow the
421 * <p>During rule invocation, the parser pushes the set of tokens that can
424 * enclosing rule. This local follow set only includes tokens
432 * thing to do is to consume tokens until you see something that
434 * You don't want the exact set of viable next tokens because the
436 * rest of the input looking for one of the missing tokens.</p>
449 * <p>At each rule invocation, the set of tokens that could follow
478 * all context-sensitive FOLLOW sets--the set of all tokens tha
    [all...]
Token.js 32 /** All tokens go to the parser (unless skip() is called in that rule)
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/parser/
ll-star.rb 30 * and look for blue tokens in the input window pane. :)
basic.rb 39 tokens = ANTLR3::CommonTokenStream.new( lexer )
40 parser = Identifiers::Parser.new( tokens )
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
Rule.java 82 /** A list of all LabelElementPair attached to tokens like id=ID */
85 /** A list of all LabelElementPair attached to tokens like x=. in tree grammar */
88 /** A list of all LabelElementPair attached to tokens like x+=. in tree grammar */
137 * Rewrite rules force tracking of all tokens.
308 /** For use with rewrite rules, we must track all tokens matched on the
310 * token types for which the rule needs a list of tokens. This
315 Set<String> tokens = new HashSet<String>(); local
318 return tokens;
328 tokens.add(label);
332 return tokens;
    [all...]
  /external/bison/src/
state.h 67 Conflict resolution can decide that certain tokens in certain
69 For each state, the tokens that are errors for this reason are
175 errs *errs_new (int num, symbol **tokens);
245 /* Print on OUT all the lookahead tokens such that this STATE wants to
  /external/chromium/base/
string_util.h 496 // |delimiters|. Each field is added to the |tokens| vector. Returns the
497 // number of tokens found.
500 std::vector<std::wstring>* tokens);
503 std::vector<string16>* tokens);
506 std::vector<std::string>* tokens);
509 std::vector<base::StringPiece>* tokens);
  /external/freetype/src/psaux/
psobjs.h 89 T1_Token tokens,
  /external/llvm/utils/lit/lit/
ShUtil.py 55 # we don't have to track whitespace tokens.
171 self.tokens = ShLexer(data, win32Escapes = win32Escapes).lex()
175 return self.tokens.next()
182 self.tokens = itertools.chain([next], self.tokens)
  /external/qemu/
json-parser.c 36 * 1) add geometry information to tokens
41 static QObject *parse_value(JSONParserContext *ctxt, QList **tokens, va_list *ap);
46 * tokens are dictionaries that contain a type, a string value, and geometry information
270 static int parse_pair(JSONParserContext *ctxt, QDict *dict, QList **tokens, va_list *ap)
273 QList *working = qlist_copy(*tokens);
298 QDECREF(*tokens);
299 *tokens = working;
311 static QObject *parse_object(JSONParserContext *ctxt, QList **tokens, va_list *ap)
315 QList *working = qlist_copy(*tokens);
355 QDECREF(*tokens);
    [all...]
qjson.c 31 static void parse_json(JSONMessageParser *parser, QList *tokens)
34 s->result = json_parser_parse(tokens, s->ap);
  /frameworks/base/core/java/android/view/
IWindowManager.aidl 107 void moveAppTokensToTop(in List<IBinder> tokens);
108 void moveAppTokensToBottom(in List<IBinder> tokens);
  /frameworks/base/media/java/android/media/audiofx/
PresetReverb.java 251 int tokens = st.countTokens(); local
  /external/webp/src/enc/
vp8l.c 283 const HuffmanTreeToken* const tokens, const int num_tokens,
287 const int ix = tokens[i].code;
288 const int extra_bits = tokens[i].extra_bits;
312 HuffmanTreeToken* const tokens = local
313 (HuffmanTreeToken*)WebPSafeMalloc((uint64_t)max_tokens, sizeof(*tokens));
314 if (tokens == NULL) return 0;
321 num_tokens = VP8LCreateCompressedHuffmanTree(tree, tokens, max_tokens);
326 ++histogram[tokens[i].code];
343 const int ix = tokens[i].code;
366 StoreHuffmanTreeToBitMask(bw, tokens, length, &huffman_code)
    [all...]
  /external/antlr/antlr-3.4/gunit/src/main/antlr3/org/antlr/gunit/swingui/parsers/
StGUnit.g 34 tokens {
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/tool/templates/messages/languages/
en.stg 43 CANNOT_FIND_TOKENS_FILE(arg) ::= "cannot find tokens file <arg>"
59 problems creating lexer rule listing all tokens: <exception>
112 "literals are illegal in lexer tokens{} section: <arg>"
272 UNREACHABLE_TOKENS(tokens) ::= <<
273 The following token definitions can never be matched because prior tokens match the same input: <tokens; separator=",">
  /external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/
tokenutil.py 25 from closure_linter.common import tokens namespace
29 Type = tokens.TokenType
78 """Returns all tokens in the same line as the given token.
84 All tokens on the same line as the given token.
107 distance: The number of tokens to look through before failing search. Must
110 reverse: When true, search the tokens before this one instead of the tokens
153 distance: The number of tokens to look through before failing search. Must
156 reverse: When true, search the tokens before this one instead of the tokens
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-apache-bcel.jar 
  /frameworks/ex/common/java/com/android/common/contacts/
DataUsageStatUpdater.java 86 Rfc822Token[] tokens = Rfc822Tokenizer.tokenize(text.toString().trim()); local
87 for (Rfc822Token token : tokens) {
  /frameworks/native/opengl/libagl/
TextureObjectManager.cpp 303 void EGLSurfaceManager::deleteTextures(GLsizei n, const GLuint *tokens)
308 const GLuint t(*tokens++);
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
RemoteDebugEventSocketListener.cs 710 string[] tokens = @event.Split('\t');
711 Array.Copy(tokens, elements, Math.Min(tokens.Length, MAX_EVENT_ELEMENTS));
712 if (tokens.Length >= MAX_EVENT_ELEMENTS)
717 elements[tokens.Length] = str;

Completed in 683 milliseconds

1 2 3 4 5 6 7 891011>>