HomeSort by relevance Sort by last modified time
    Searched refs:tokens (Results 351 - 375 of 1090) sorted by null

<<11121314151617181920>>

  /external/libopus/win32/
genversion.bat 19 for /f "delims== tokens=2" %%v in (%~dps0..\version.mk) do set version=%%v
  /external/mesa3d/src/gallium/auxiliary/util/
u_pstipple.c 57 /** Approx number of new tokens for instructions in pstip_transform_inst() */
411 const uint newLen = tgsi_num_tokens(fs->tokens) + NUM_NEW_TOKENS;
418 new_fs->tokens = tgsi_alloc_tokens(newLen);
419 if (!new_fs->tokens) {
436 tgsi_scan_shader(fs->tokens, &transform.info);
444 tgsi_transform_shader(fs->tokens,
445 (struct tgsi_token *) new_fs->tokens,
449 tgsi_dump(fs->tokens, 0);
450 tgsi_dump(new_fs->tokens, 0);
  /external/mesa3d/src/gallium/tools/trace/
parse.py 68 self.tokens = []
85 self.tokens.append(token)
91 self.tokens.append(token)
103 self.tokens.append(token)
108 while self.index >= len(self.tokens) and not self.final:
109 self.tokens = []
122 if self.index >= len(self.tokens):
126 token = self.tokens[self.index]
  /external/owasp/sanitizer/src/main/org/owasp/html/
CssGrammar.java 62 // Split tokens by semicolons/curly-braces, then by first colon,
66 CssTokens tokens = CssTokens.lex(css); local
67 CssTokens.TokenIterator it = tokens.iterator();
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/ast-output/
hetero-nodes.rb 286 tokens {LIST;}
433 tokens { ROOT; }
467 tokens { ROOT; }
505 tokens { ROOT; }
539 tokens { ROOT; }
581 tokens { ROOT; }
596 tokens = ANTLR3::CommonTokenStream.new( lexer )
597 parser = grammar_module::Parser.new( tokens )
608 tokens = ANTLR3::CommonTokenStream.new( lexer )
609 parser = grammar_module::Parser.new( tokens )
    [all...]
  /external/chromium_org/third_party/libwebp/enc/
vp8l.c 298 const HuffmanTreeToken* const tokens, const int num_tokens,
302 const int ix = tokens[i].code;
303 const int extra_bits = tokens[i].extra_bits;
319 // 'huff_tree' and 'tokens' are pre-alloacted buffers.
322 HuffmanTreeToken* const tokens,
334 num_tokens = VP8LCreateCompressedHuffmanTree(tree, tokens, max_tokens);
340 ++histogram[tokens[i].code];
355 const int ix = tokens[i].code;
378 StoreHuffmanTreeToBitMask(bw, tokens, length, &huffman_code);
382 // 'huff_tree' and 'tokens' are pre-alloacted buffers
491 HuffmanTreeToken* tokens = NULL; local
573 HuffmanTreeToken* tokens = NULL; local
    [all...]
  /external/webp/src/enc/
vp8l.c 298 const HuffmanTreeToken* const tokens, const int num_tokens,
302 const int ix = tokens[i].code;
303 const int extra_bits = tokens[i].extra_bits;
319 // 'huff_tree' and 'tokens' are pre-alloacted buffers.
322 HuffmanTreeToken* const tokens,
334 num_tokens = VP8LCreateCompressedHuffmanTree(tree, tokens, max_tokens);
340 ++histogram[tokens[i].code];
355 const int ix = tokens[i].code;
378 StoreHuffmanTreeToBitMask(bw, tokens, length, &huffman_code);
382 // 'huff_tree' and 'tokens' are pre-alloacted buffers
491 HuffmanTreeToken* tokens = NULL; local
573 HuffmanTreeToken* tokens = NULL; local
    [all...]
  /cts/hostsidetests/appsecurity/test-apps/AppWithData/src/com/android/cts/appwithdata/
CreatePrivateDataTest.java 184 String tokens[] = line.split(" "); local
185 if (tokens.length > 3 && tokens[3].equals(String.valueOf(ownAppUid))) {
186 if (!tokens[2].equals("0x0")) {
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/lexer/
filter-mode.rb 73 example "skipping tokens that aren't important with filter mode" do
82 TokenStream tokens = new CommonTokenStream(lex);
83 tokens.toString();
84 //System.out.println(tokens);
91 tokens = lexer.map { |tk| tk }
216 TokenStream tokens = new CommonTokenStream(lex);
217 tokens.toString();
218 //System.out.println(tokens);
232 found var tokens
234 found call tokens.toStrin
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/token-rewrite/
basic.rb 20 tokens = ANTLR3::TokenRewriteStream.new( lexer )
21 yield( tokens )
22 tokens.render.should == expected
23 return( tokens )
  /external/chromium_org/gpu/command_buffer/client/
ring_buffer_test.cc 166 int32 tokens[kAllocCount]; local
171 tokens[ii] = helper_->InsertToken();
172 allocator_->FreePendingToken(pointer, tokens[ii]);
186 EXPECT_LE(tokens[0], GetToken());
  /external/chromium_org/net/url_request/
url_request_http_job_unittest.cc 77 std::vector<std::string> tokens;
78 size_t num_tokens = Tokenize(encoding_headers, ", ", &tokens);
80 if (!base::strncasecmp(tokens[i].data(), "sdch", tokens[i].length()))
  /external/chromium_org/remoting/webapp/
oauth2_api.js 80 var tokens = JSON.parse(xhr.responseText);
81 onDone(tokens['access_token'], tokens['expires_in']);
106 * Asynchronously exchanges an authorization code for access and refresh tokens.
128 var tokens = JSON.parse(xhr.responseText);
129 onDone(tokens['refresh_token'],
130 tokens['access_token'], tokens['expires_in']);
  /external/chromium_org/rlz/win/lib/
machine_deal.cc 109 std::vector<std::string> tokens;
110 base::SplitString(response_line, ':', &tokens);
111 if (tokens.size() != 2)
116 *value = tokens[1];
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
BackgroundHTMLParser.cpp 41 // So we limit our outstanding tokens arbitrarily to 10,000.
50 // We limit our chucks to 1000 tokens, to make sure the main
51 // thread is never waiting on the parser thread for tokens.
59 static void checkThatTokensAreSafeToSendToAnotherThread(const CompactHTMLTokenStream* tokens)
61 for (size_t i = 0; i < tokens->size(); ++i)
62 ASSERT(tokens->at(i).isSafeToSendToAnotherThread());
255 chunk->tokens = m_pendingTokens.release();
  /external/chromium_org/third_party/closure_linter/closure_linter/
runner.py 37 from closure_linter.common import tokens namespace
56 tokens.TokenType.WHITESPACE, tokens.TokenType.BLANK_LINE])
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
peerconnection.cc 48 // The min number of tokens must present in Turn host uri.
51 // Number of tokens must be preset when TURN uri has transport param.
192 std::vector<std::string> tokens; local
194 rtc::tokenize(server.uri, '?', &tokens);
195 std::string uri_without_transport = tokens[0];
197 if (tokens.size() == kTurnTransportTokensNum) { // ?transport= is present.
198 std::string uri_transport_param = tokens[1];
199 rtc::tokenize(uri_transport_param, '=', &tokens);
200 if (tokens[0] == kTransport) {
203 if (tokens[1] != kUdpTransportType && tokens[1] != kTcpTransportType)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
lp_bld_tgsi.h 207 lp_build_tgsi_info(const struct tgsi_token *tokens,
213 const struct tgsi_token *tokens,
227 const struct tgsi_token *tokens,
561 const struct tgsi_token *tokens);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv30/
nv30_vertprog.c 227 vp->pipe.tokens = tgsi_dup_tokens(cso->tokens);
228 tgsi_scan_shader(vp->pipe.tokens, &vp->info);
239 FREE((void *)vp->pipe.tokens);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/
r300_vs.c 175 tgsi_scan_shader(vs->state.tokens, &vs->info);
196 shader->state.tokens = tgsi_dup_tokens(ureg_finalize(ureg));
230 tgsi_dump(vs->state.tokens, 0);
238 r300_tgsi_to_rc(&ttr, vs->state.tokens);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
svga_tgsi.h 96 /* Compiled shader tokens:
98 const unsigned *tokens; member in struct:svga_shader_result
  /external/chromium_org/ui/app_list/search/
tokenized_string_char_iterator.cc 22 : tokens_(tokenized.tokens()),
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_tgsi.h 207 lp_build_tgsi_info(const struct tgsi_token *tokens,
213 const struct tgsi_token *tokens,
227 const struct tgsi_token *tokens,
561 const struct tgsi_token *tokens);
  /external/mesa3d/src/gallium/drivers/nv30/
nv30_vertprog.c 227 vp->pipe.tokens = tgsi_dup_tokens(cso->tokens);
228 tgsi_scan_shader(vp->pipe.tokens, &vp->info);
239 FREE((void *)vp->pipe.tokens);
  /external/mesa3d/src/gallium/drivers/r300/
r300_vs.c 175 tgsi_scan_shader(vs->state.tokens, &vs->info);
196 shader->state.tokens = tgsi_dup_tokens(ureg_finalize(ureg));
230 tgsi_dump(vs->state.tokens, 0);
238 r300_tgsi_to_rc(&ttr, vs->state.tokens);

Completed in 741 milliseconds

<<11121314151617181920>>