Searched refs:tokens (Results 201 - 225 of 796) sorted by relevance

1234567891011>>

/external/icu/icu4c/source/i18n/
H A Daffixpatternparser.h143 : tokens(), literals(), hasCurrencyToken(FALSE),
164 * currency tokens each with count=1 (two currency symbols).
174 * Provides an iterator over the tokens in this instance.
185 * Returns TRUE if this instance has currency tokens in it.
201 * would have if none of the special tokens were escaped.
275 return (tokens == other.tokens)
290 * token (e=0) can be followed by 0 or more extendo tokens (e=1) with
291 * the same type. Right now only kLiteral Tokens have extendo tokens.
293 * If a kLiteral token is followed by 2 extendo tokens the
297 UnicodeString tokens; member in class:AffixPattern
354 const UnicodeString *tokens; member in class:AffixPatternIterator
[all...]
/external/python/cpython2/Lib/lib2to3/pgen2/
H A Ddriver.py38 def parse_tokens(self, tokens, debug=False):
39 """Parse a series of tokens and return the syntax tree."""
47 for quintuple in tokens:
88 tokens = tokenize.generate_tokens(stream.readline)
89 return self.parse_tokens(tokens, debug)
105 tokens = tokenize.generate_tokens(StringIO.StringIO(text).readline)
106 return self.parse_tokens(tokens, debug)
/external/python/cpython3/Lib/lib2to3/pgen2/
H A Ddriver.py38 def parse_tokens(self, tokens, debug=False):
39 """Parse a series of tokens and return the syntax tree."""
47 for quintuple in tokens:
88 tokens = tokenize.generate_tokens(stream.readline)
89 return self.parse_tokens(tokens, debug)
105 tokens = tokenize.generate_tokens(io.StringIO(text).readline)
106 return self.parse_tokens(tokens, debug)
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
H A DANTLRCommonTreeNodeStream.h43 id <ANTLRTokenStream> tokens; variable
61 @property (retain, getter=getTokens,setter=setTokens:) id<ANTLRTokenStream> tokens; variable
87 - (void) setTokenStream:(id<ANTLRTokenStream>) tokens;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
H A DANTLRCommonTreeNodeStream.h43 id <ANTLRTokenStream> tokens; variable
61 @property (retain, getter=getTokens,setter=setTokens:) id<ANTLRTokenStream> tokens; variable
87 - (void) setTokenStream:(id<ANTLRTokenStream>) tokens;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
H A DANTLRCommonTreeNodeStream.h43 id <ANTLRTokenStream> tokens; variable
61 @property (retain, getter=getTokens,setter=setTokens:) id<ANTLRTokenStream> tokens; variable
87 - (void) setTokenStream:(id<ANTLRTokenStream>) tokens;
/external/avb/libavb/
H A Davb_cmdline.h49 char* tokens[AVB_MAX_NUM_CMDLINE_SUBST]; member in struct:AvbCmdlineSubstList
/external/libbrillo/brillo/strings/
H A Dstring_utils.cc21 std::vector<std::string> tokens; local
23 return tokens;
32 tokens.emplace_back(std::move(tmp_str));
37 return tokens;
/external/mesa3d/src/gallium/auxiliary/tgsi/
H A Dtgsi_iterate.h73 const struct tgsi_token *tokens,
/external/mesa3d/src/gallium/drivers/svga/
H A Dsvga_pipe_fs.c53 fs->base.tokens = tgsi_dup_tokens(templ->tokens);
57 tgsi_scan_shader(fs->base.tokens, &fs->base.info);
119 FREE((void *)fs->base.tokens);
H A Dsvga_pipe_gs.c51 gs->base.tokens = tgsi_dup_tokens(templ->tokens);
55 tgsi_scan_shader(gs->base.tokens, &gs->base.info);
132 FREE((void *)gs->base.tokens);
H A Dsvga_state_tgsi_transform.c65 const struct tgsi_token *tokens)
77 assert(tokens != NULL);
79 orig_tokens = tokens;
110 * to transform the original tokens to support point sprite.
123 /* if no new tokens are generated for whatever reason, just return */
134 templ.tokens = new_tokens;
151 /* Create a new geometry shader state with the new tokens */
196 const struct tgsi_token *tokens; local
217 tokens = orig_gs->base.tokens;
63 emulate_point_sprite(struct svga_context *svga, struct svga_shader *shader, const struct tgsi_token *tokens) argument
[all...]
H A Dsvga_tgsi.h76 boolean svga_shader_verify(const uint32_t *tokens, unsigned nr_tokens);
/external/mesa3d/src/mesa/state_tracker/
H A Dst_atifs_to_tgsi.h60 st_fixup_atifs(const struct tgsi_token *tokens,
H A Dst_cb_bitmap_shader.c130 st_get_bitmap_shader(const struct tgsi_token *tokens, argument
147 tgsi_scan_shader(tokens, &ctx.info);
149 newlen = tgsi_num_tokens(tokens) + 20;
154 tgsi_transform_shader(tokens, newtoks, newlen, &ctx.base);
/external/ply/ply/example/hedit/
H A Dhedit.py6 # These tokens can't be easily tokenized because they are of the following
14 # such tokens
21 tokens = ( variable
/external/ply/ply/test/
H A Dlex_hedit.py6 # These tokens can't be easily tokenized because they are of the following
14 # such tokens
21 tokens = ( variable
H A Dlex_module_import.py7 tokens = ( variable
H A Dlex_state_try.py10 tokens = [ variable
H A Dyacc_inf.py11 from calclex import tokens namespace
H A Dyacc_nested.py11 tokens = ('A', 'B', 'C') variable
/external/ply/ply/test/pkg_test1/parsing/
H A Dcalclex.py7 tokens = ( variable
/external/ply/ply/test/pkg_test4/parsing/
H A Dcalclex.py7 tokens = ( variable
/external/python/cpython2/Lib/
H A Dtoken.py103 tokens = {}
109 tokens[val] = name # reverse so we can sort them...
110 keys = tokens.keys()
128 lines.append("%s = %d" % (tokens[val], val))
/external/python/cpython3/Lib/
H A Dtoken.py107 tokens = {}
113 tokens[val] = name # reverse so we can sort them...
114 keys = sorted(tokens.keys())
131 lines.append("%s = %d" % (tokens[val], val))

Completed in 474 milliseconds

1234567891011>>