Searched refs:tokens (Results 226 - 250 of 709) sorted by relevance

1234567891011>>

/external/srec/portable/src/
H A DPFileSystem.c181 LCHAR** tokens = NULL; local
207 CHKLOG(rc, PFileSystemLinearToPathTokens(path, &tokens, &tokenLen));
212 if (LSTRCMP(tokens[i], L("../")) == 0)
220 else if (LSTRCMP(tokens[i], L("./")) == 0)
232 LSTRCAT(path, tokens[i]);
233 FREE(tokens[i]);
234 tokens[i] = NULL;
236 FREE(tokens);
239 if (tokens != NULL)
243 FREE(tokens[
[all...]
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
H A DTokenSource.pm10 # Where are you getting tokens from? normally the implication will simply
24 A source of tokens must provide a sequence of tokens via nextToken()
/external/chromium_org/chrome/browser/webdata/
H A Dtoken_service_table.cc93 std::map<std::string, std::string>* tokens) {
109 (*tokens)[service] = decrypted_token;
92 GetAllTokens( std::map<std::string, std::string>* tokens) argument
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/rbug/
H A Drbug_shader.h70 uint32_t *tokens; member in struct:rbug_proto_shader_replace
111 uint32_t *tokens,
/external/chromium_org/third_party/yasm/source/patched-yasm/Mkfiles/vc9/genperf/
H A Drun.bat3 for /f "usebackq tokens=1*" %%f in (`reg query HKCR\Python.File\shell\open\command`) do (set _my_=%%f %%g)
/external/chromium_org/tools/json_comment_eater/
H A Djson_comment_eater.py20 def _FindNextToken(string, tokens, start):
21 '''Finds the next token in |tokens| that occurs in |string| from |start|.
25 for k in tokens:
/external/mesa3d/src/gallium/auxiliary/rbug/
H A Drbug_shader.h70 uint32_t *tokens; member in struct:rbug_proto_shader_replace
111 uint32_t *tokens,
/external/nist-sip/java/gov/nist/javax/sip/parser/
H A DParser.java80 Token[] tokens = this.lexer.peekNextToken(1);
81 Token token = (Token) tokens[0];
/external/smack/asmack-master/static-src/novell-openldap-jldap/com/novell/sasl/client/
H A DTokenParser.java19 * The TokenParser class will parse individual tokens from a list of tokens that
20 * are a directive value for a DigestMD5 authentication.The tokens are separated
39 String tokens)
41 m_tokens = tokens;
48 * This function parses the next token from the tokens string and returns
49 * it as a string. If there are no more tokens a null reference is returned.
52 * tokens
38 TokenParser( String tokens) argument
/external/smack/src/com/novell/sasl/client/
H A DTokenParser.java19 * The TokenParser class will parse individual tokens from a list of tokens that
20 * are a directive value for a DigestMD5 authentication.The tokens are separated
39 String tokens)
41 m_tokens = tokens;
48 * This function parses the next token from the tokens string and returns
49 * it as a string. If there are no more tokens a null reference is returned.
52 * tokens
38 TokenParser( String tokens) argument
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
H A DCommonTreeNodeStream.js199 return this.tokens;
202 setTokenStream: function(tokens) {
203 this.tokens = tokens;
350 if ( this.tokens ) {
362 return this.tokens.toString(beginTokenIndex, endTokenIndex);
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
H A Dsvga_tgsi.c278 tgsi_scan_shader( shader->tokens, &emit.info);
305 if (!svga_shader_emit_instructions( &emit, shader->tokens )) {
315 result->tokens = (const unsigned *)emit.buf;
324 tgsi_dump( shader->tokens, 0 );
327 svga_shader_dump( result->tokens,
386 FREE((unsigned *)result->tokens);
/external/chromium_org/v8/tools/
H A Dlexer-shell.cc170 std::vector<TokenWithLocation>* tokens,
179 tokens->push_back(TokenWithLocation(token, beg, end));
187 const std::vector<TokenWithLocation>& tokens) {
188 printf("No of tokens: %d\n",
189 static_cast<int>(tokens.size()));
191 for (size_t i = 0; i < tokens.size(); ++i) {
192 tokens[i].Print("=>");
234 } else if (strcmp(argv[i], "--print-tokens") == 0) {
166 RunBaselineScanner(const char* fname, Isolate* isolate, Encoding encoding, bool dump_tokens, std::vector<TokenWithLocation>* tokens, int repeat) argument
186 PrintTokens(const char* name, const std::vector<TokenWithLocation>& tokens) argument
/external/clang/bindings/python/tests/cindex/
H A Dtest_translation_unit.py229 tokens = list(tu.get_tokens(extent=r))
231 assert tokens[0].spelling == 'int'
233 assert tokens[0].spelling == 'int'
235 del tokens[1]
237 assert tokens[0].spelling == 'int'
240 del tokens
/external/mesa3d/src/gallium/drivers/svga/
H A Dsvga_tgsi.c278 tgsi_scan_shader( shader->tokens, &emit.info);
305 if (!svga_shader_emit_instructions( &emit, shader->tokens )) {
315 result->tokens = (const unsigned *)emit.buf;
324 tgsi_dump( shader->tokens, 0 );
327 svga_shader_dump( result->tokens,
386 FREE((unsigned *)result->tokens);
/external/chromium/testing/gtest/scripts/
H A Dpump.py383 """A generator that yields the tokens in the given string."""
475 def ParseElseNode(tokens):
477 return PopToken(tokens, token_type)
479 next = PeekToken(tokens)
485 code_node = ParseCodeNode(tokens)
492 code_node = ParseCodeNode(tokens)
494 inner_else_node = ParseElseNode(tokens)
498 return ParseElseNode(tokens)
503 def ParseAtomicCodeNode(tokens):
505 return PopToken(tokens, token_typ
[all...]
/external/chromium_org/testing/gtest/scripts/
H A Dpump.py383 """A generator that yields the tokens in the given string."""
475 def ParseElseNode(tokens):
477 return PopToken(tokens, token_type)
479 next = PeekToken(tokens)
485 code_node = ParseCodeNode(tokens)
492 code_node = ParseCodeNode(tokens)
494 inner_else_node = ParseElseNode(tokens)
498 return ParseElseNode(tokens)
503 def ParseAtomicCodeNode(tokens):
505 return PopToken(tokens, token_typ
[all...]
/external/gtest/scripts/
H A Dpump.py383 """A generator that yields the tokens in the given string."""
475 def ParseElseNode(tokens):
477 return PopToken(tokens, token_type)
479 next = PeekToken(tokens)
485 code_node = ParseCodeNode(tokens)
492 code_node = ParseCodeNode(tokens)
494 inner_else_node = ParseElseNode(tokens)
498 return ParseElseNode(tokens)
503 def ParseAtomicCodeNode(tokens):
505 return PopToken(tokens, token_typ
[all...]
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3tokenstream.c138 if (stream->tokens != NULL)
140 stream->tokens->free(stream->tokens);
141 stream->tokens = NULL;
180 // Now, if there were any existing tokens in the stream,
187 if (cts->tokens != NULL)
189 cts->tokens->clear(cts->tokens);
195 cts->tokens = antlr3VectorNew(0);
280 stream->tokens
[all...]
/external/chromium_org/third_party/libjingle/source/talk/base/
H A Dlogging.cc295 std::vector<std::string> tokens; local
296 tokenize(params, ' ', &tokens);
298 for (size_t i = 0; i < tokens.size(); ++i) {
299 if (tokens[i].empty())
303 if (tokens[i] == "tstamp") {
305 } else if (tokens[i] == "thread") {
309 } else if (tokens[i] == "sensitive") {
311 } else if (tokens[i] == "verbose") {
313 } else if (tokens[i] == "info") {
315 } else if (tokens[
[all...]
/external/libvpx/libvpx/examples/includes/PHP-SmartyPants-1.5.1e/
H A Dsmartypants.php145 $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 variable
379 $tokens = _TokenizeHTML($text); variable
661 $tokens = array(); variable
[all...]
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
H A DCommonTreeNodeStream.as76 protected var tokens:TokenStream;
242 return tokens;
245 public function set tokenStream(tokens:TokenStream):void {
246 this.tokens = tokens;
394 if ( tokens!=null ) {
405 return tokens.toStringWithRange(beginTokenIndex, endTokenIndex);
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
H A DBufferedTreeNodeStream.java103 protected TokenStream tokens; field in class:BufferedTreeNodeStream
275 return tokens;
278 public void setTokenStream(TokenStream tokens) { argument
279 this.tokens = tokens;
436 if ( tokens!=null ) {
447 return tokens.toString(beginTokenIndex, endTokenIndex);
/external/chromium_org/gpu/command_buffer/client/
H A Dring_buffer_test.cc159 int32 tokens[kAllocCount]; local
163 tokens[ii] = helper_->InsertToken();
164 allocator_->FreePendingToken(offset, tokens[ii]);
178 EXPECT_LE(tokens[0], GetToken());
276 int32 tokens[kAllocCount]; local
280 tokens[ii] = helper_->InsertToken();
295 EXPECT_LE(tokens[0], GetToken());
/external/chromium_org/ui/base/dragdrop/
H A Dos_exchange_data_provider_aurax11.cc198 std::vector<base::string16> tokens; local
199 size_t num_tokens = Tokenize(unparsed, ASCIIToUTF16("\n"), &tokens);
202 *title = tokens[1];
206 *url = GURL(tokens[0]);
215 std::vector<std::string> tokens; local
216 size_t num_tokens = Tokenize(unparsed, "\n", &tokens);
222 *url = GURL(tokens[0]);

Completed in 1105 milliseconds

1234567891011>>