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

1 2 3 4 5 6 78 91011>>

  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/
TestExpressionFeatures.g3 42 tokens {
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/lexer/
properties.rb 32 tokens = lexer.map { |tk| tk }
  /external/clang/bindings/python/tests/cindex/
test_cursor.py 236 """Ensure we can map cursors back to tokens."""
240 tokens = list(foo.get_tokens())
241 assert len(tokens) == 7
242 assert tokens[0].spelling == 'int'
243 assert tokens[1].spelling == 'foo'
  /frameworks/native/opengl/libagl/
TextureObjectManager.h 99 void deleteTextures(GLsizei n, const GLuint *tokens);
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRBufferedTreeNodeStream.h 71 id<ANTLRTokenStream> tokens; variable
89 @property (retain, getter=getTokenStream, setter=setTokenStream:) id<ANTLRTokenStream> tokens; variable
123 - (void) setTokenStream:(id<ANTLRTokenStream>) tokens;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRBufferedTreeNodeStream.h 71 id<ANTLRTokenStream> tokens; variable
89 @property (retain, getter=getTokenStream, setter=setTokenStream:) id<ANTLRTokenStream> tokens; variable
123 - (void) setTokenStream:(id<ANTLRTokenStream>) tokens;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRBufferedTreeNodeStream.h 71 id<ANTLRTokenStream> tokens; variable
89 @property (retain, getter=getTokenStream, setter=setTokenStream:) id<ANTLRTokenStream> tokens; variable
123 - (void) setTokenStream:(id<ANTLRTokenStream>) tokens;
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRBufferedTreeNodeStream.h 72 id<ANTLRTokenStream> tokens; variable
90 @property (retain, getter=getTokenStream, setter=setTokenStream:) id<ANTLRTokenStream> tokens; variable
125 - (void) setTokenStream:(id<ANTLRTokenStream>) tokens;
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowAccountManager.java 192 HashMap<String, String> tokens = cachedAuthTokenValues.get(account);
193 return (tokens != null) ? tokens.get(authTokenType) : null;
  /external/v8/tools/
test-wrapper-gypbuild.py 141 tokens = options.arch_and_mode.split(".")
142 options.arch = tokens[0]
143 options.mode = tokens[1]
  /packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/
LevenshteinFormatterTest.java 44 Token[] tokens = mFormatter.tokenize(input); local
45 assertEquals(output.length, tokens.length);
47 assertEquals(output[i], tokens[i].toString());
61 verifyTokenizeResult("two tokens", "two", "tokens");
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
glslang_lex.cpp 275 * still have a bunch of tokens to match, though, because of
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
BufferedTreeNodeStream.cs 134 protected ITokenStream tokens; field in class:Antlr.Runtime.Tree.BufferedTreeNodeStream
195 return tokens;
198 tokens = value;
515 if (tokens != null) {
525 return tokens.ToString(beginTokenIndex, endTokenIndex);
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
BufferedTreeNodeStream.cs 143 protected ITokenStream tokens; field in class:Antlr.Runtime.Tree.BufferedTreeNodeStream
216 return tokens;
220 tokens = value;
612 if ( tokens != null )
626 return tokens.ToString( beginTokenIndex, endTokenIndex );
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
BaseRecognizer.java 148 //System.out.println("viable tokens="+follow.toString(getTokenNames()));
378 * rule invocation, the parser pushes the set of tokens that can
381 * enclosing rule. This local follow set only includes tokens
389 * thing to do is to consume tokens until you see something that
391 * You don't want the exact set of viable next tokens because the
393 * rest of the input looking for one of the missing tokens.
405 * At each rule invocation, the set of tokens that could follow
430 * all context-sensitive FOLLOW sets--the set of all tokens that
432 * resync to one of those tokens. Note that FOLLOW(c)='^' and if
475 * viable tokens that can possibly come next (lookahead depth 1
    [all...]
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/preprocessor/
atom.c 67 } tokens[] = { variable in typeref:struct:__anon17643
301 // characters and '_', which can be other tokens. Next come the
302 // language tokens with their atom values equal to the token value.
643 // Add single character tokens to the atom table:
657 // Add multiple character scanner tokens :
659 for (ii = 0; ii < sizeof(tokens)/sizeof(tokens[0]); ii++)
660 AddAtomFixed(atable, tokens[ii].str, tokens[ii].val);
tokens.c 45 // tokens.c
337 TokenStream *tokens; member in struct:TokenInputSrc
343 int token = ReadToken(in->tokens, yylvalpp);
367 in->tokens = ts;
435 /////////////////////////////////////// End of tokens.c ///////////////////////////////////////
  /external/webkit/Source/WebCore/bindings/js/
ScriptDebugServer.cpp 87 Vector<String> tokens; local
88 breakpointId.split(":", tokens);
89 if (tokens.size() != 2)
92 intptr_t sourceIDValue = tokens[0].toIntPtr(&success);
95 unsigned lineNumber = tokens[1].toUInt(&success);
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
BaseRecognizer.as 354 * rule invocation, the parser pushes the set of tokens that can
357 * enclosing rule. This local follow set only includes tokens
365 * thing to do is to consume tokens until you see something that
367 * You don't want the exact set of viable next tokens because the
369 * rest of the input looking for one of the missing tokens.
381 * At each rule invocation, the set of tokens that could follow
406 * all context-sensitive FOLLOW sets--the set of all tokens that
408 * resync to one of those tokens. Note that FOLLOW(c)='^' and if
451 * viable tokens that can possibly come next (lookahead depth 1)
459 * FOLLOW(r) is the set of all tokens that can possibly follo
    [all...]
  /external/libvpx/libvpx/examples/includes/PHP-SmartyPants-1.5.1e/
smartypants.php 145 $tokens = _TokenizeHTML($text); variable
150 # for one-character tokens that consist of
154 # character quote tokens correctly.
156 foreach ($tokens as $cur_token) {
254 $tokens = _TokenizeHTML($text); variable
259 # for one-character tokens that consist of
263 # character quote tokens correctly.
265 foreach ($tokens as $cur_token) {
341 $tokens;
342 $tokens = _TokenizeHTML($text) variable
379 $tokens = _TokenizeHTML($text); variable
661 $tokens = array(); variable
    [all...]
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/internet/
MimeMessage.java 459 String[] tokens = header.split(":", 2); local
460 if (tokens.length != 2) {
463 mExtendedHeader.setHeader(tokens[0].trim(), tokens[1].trim());
543 String[] tokens = fieldData.split(":", 2); local
544 ((Part)stack.peek()).addHeader(tokens[0], tokens[1].trim());
  /external/chromium/third_party/libevent/
event_rpcgen.py     [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/streams/
rewrite.rb 39 TokenRewriteStream is a specialized form of CommonTokenStream that provides simple stream editing functionality. By creating <i>rewrite programs</i>, new text output can be created based upon the tokens in the stream. The basic token stream itself is preserved, and text output is rendered on demand using the #to_s method.
122 add text <tt>op.text</tt> to the rewrite buffer in lieu of the text of tokens
160 skip over the tokens indexed within the range <tt>op.index .. op.last_index</tt>
282 tokens = @stream.tokens
291 token = tokens[ cursor ]
  /external/bison/src/
AnnotationList.c 170 bitset tokens = bitset_create (ntokens, BITSET_FIXED); local
173 bitset_copy (tokens, shift_tokens);
176 bitset_and (conflicted_tokens_rule, tokens, reds->lookahead_tokens[i]);
179 bitset_or (tokens, tokens, reds->lookahead_tokens[i]);
185 bitset_free (tokens);
    [all...]
  /frameworks/base/wifi/java/android/net/wifi/
WifiMonitor.java 573 String[] tokens = dataString.split(" "); local
574 if (tokens.length < 2) return err;
575 String[] nameValue = tokens[1].split("=");
648 String[] tokens = dataString.split(" "); local
650 if (tokens[0].equals(AP_STA_CONNECTED_STR)) {
653 } else if (tokens[0].equals(AP_STA_DISCONNECTED_STR)) {
    [all...]

Completed in 987 milliseconds

1 2 3 4 5 6 78 91011>>