Searched defs:tokens (Results 176 - 200 of 325) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_from_tgsi.cpp591 const struct tgsi_token *tokens; member in class:tgsi::Source
618 tokens = (const struct tgsi_token *)info->bin.source;
621 tgsi_dump(tokens, 0);
647 tgsi_scan_shader(tokens, &scan);
678 tgsi_parse_init(&parse, tokens);
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/rbug/
H A Drbug_core.c104 struct tgsi_token *tokens)
109 pss.tokens = tokens;
579 original_len = tgsi_num_tokens(tr_shdr->tokens);
586 (uint32_t*)tr_shdr->tokens, original_len,
682 tr_shdr->replaced_tokens = tgsi_dup_tokens((struct tgsi_token *)rep->tokens);
102 rbug_shader_create_locked(struct pipe_context *pipe, struct rbug_shader *rb_shader, struct tgsi_token *tokens) argument
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/gd3d1x/
H A Dsm4_to_tgsi.cpp801 const struct tgsi_token * tokens = ureg_get_tokens(ureg, 0); local
803 return (void*)tokens;
858 const struct tgsi_token* tokens = ureg_get_tokens(ureg, 0); local
860 return (void*)tokens;
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/r200/
H A Dr200_vertprog.c469 gl_state_index tokens[STATE_LENGTH] = { STATE_FOG_PARAMS, 0, 0, 0, 0 }; local
471 vp->fogpidx = _mesa_add_state_reference(paramList, tokens);
/external/chromium_org/third_party/skia/src/animator/
H A DSkAnimatorScript.cpp152 const char* tokens = (const char*) callBack; local
154 if (MapEnums(tokens, token, len, (int*)&value->fOperand.fS32))
H A DSkAnimatorScript2.cpp108 SkAnimatorScript_Enum(const char* tokens) : fTokens(tokens) {} argument
/external/chromium_org/tools/android/memdump/
H A Dmemdump.cc122 std::vector<std::string>* tokens,
124 tokens->clear();
125 base::SplitString(line, ' ', tokens);
126 if (tokens->size() < 2)
128 const std::string& addr_range = tokens->at(0);
142 if (tokens->at(1).size() != strlen("rwxp"))
144 memory_map->flags.swap(tokens->at(1));
145 if (!base::HexStringToUInt64(tokens->at(2), &tmp))
151 if (tokens->size() >= map_name_index + 1) {
153 tokens
187 std::vector<std::string> tokens; local
[all...]
/external/clang/lib/Lex/
H A DPPMacroExpansion.cpp169 /// method should have no observable side-effect on the lexed tokens.
232 /// for each macro argument, the list of tokens that were provided to the
311 // If this macro expands to no tokens, don't bother to push it onto the
358 // Update the tokens location to include both its expansion and physical
425 /// vector of tokens in NewTokens. The new number of arguments will be placed
495 // Copy over argument tokens
537 // Read arguments as unexpanded tokens. This avoids issues, e.g., where
542 // ArgTokens - Build up a list of tokens that make up each argument. Each
566 // Read arguments as unexpanded tokens. This avoids issues, e.g., where
799 /// \brief Keeps macro expanded tokens fo
804 cacheMacroExpandedTokens(TokenLexer *tokLexer, ArrayRef<Token> tokens) argument
[all...]
/external/icu4c/test/intltest/
H A Ducdtest.cpp75 getTokenIndex(const char *const tokens[], int32_t countTokens, const char *s) { argument
81 t=tokens[i];
/external/ipsec-tools/src/racoon/
H A Dgssapi.c444 gssapi_get_itokens(struct ph1handle *iph1, vchar_t **tokens) argument
470 *tokens = toks;
473 "%d itokens of length %zu\n", gps->gsscnt, (*tokens)->l);
479 gssapi_get_rtokens(struct ph1handle *iph1, vchar_t **tokens) argument
511 *tokens = toks;
/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_tgsi_aos.c984 const struct tgsi_token *tokens,
1031 tgsi_parse_init(&parse, tokens);
1091 tgsi_dump(tokens, 0);
983 lp_build_tgsi_aos(struct gallivm_state *gallivm, const struct tgsi_token *tokens, struct lp_type type, const unsigned char swizzles[4], LLVMValueRef consts_ptr, const LLVMValueRef *inputs, LLVMValueRef *outputs, struct lp_build_sampler_aos *sampler, const struct tgsi_shader_info *info) argument
/external/mesa3d/src/gallium/drivers/i915/
H A Di915_fpc_translate.c1202 * \param tokens the TGSI token array
1206 const struct i915_token_list *tokens,
1210 for(i = 0; i<tokens->NumTokens; i++) {
1211 i915_translate_token(p, &tokens->Tokens[i], fs);
1364 const struct tgsi_token *tokens = fs->state.tokens; local
1368 tgsi_dump(tokens, 0);
1381 i_tokens = i915_optimize(tokens);
1205 i915_translate_instructions(struct i915_fp_compile *p, const struct i915_token_list *tokens, struct i915_fragment_shader *fs) argument
/external/mesa3d/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_from_tgsi.cpp591 const struct tgsi_token *tokens; member in class:tgsi::Source
618 tokens = (const struct tgsi_token *)info->bin.source;
621 tgsi_dump(tokens, 0);
647 tgsi_scan_shader(tokens, &scan);
678 tgsi_parse_init(&parse, tokens);
/external/mesa3d/src/gallium/drivers/rbug/
H A Drbug_core.c104 struct tgsi_token *tokens)
109 pss.tokens = tokens;
579 original_len = tgsi_num_tokens(tr_shdr->tokens);
586 (uint32_t*)tr_shdr->tokens, original_len,
682 tr_shdr->replaced_tokens = tgsi_dup_tokens((struct tgsi_token *)rep->tokens);
102 rbug_shader_create_locked(struct pipe_context *pipe, struct rbug_shader *rb_shader, struct tgsi_token *tokens) argument
/external/mesa3d/src/gallium/state_trackers/d3d1x/gd3d1x/
H A Dsm4_to_tgsi.cpp801 const struct tgsi_token * tokens = ureg_get_tokens(ureg, 0); local
803 return (void*)tokens;
858 const struct tgsi_token* tokens = ureg_get_tokens(ureg, 0); local
860 return (void*)tokens;
/external/mesa3d/src/mesa/drivers/dri/r200/
H A Dr200_vertprog.c469 gl_state_index tokens[STATE_LENGTH] = { STATE_FOG_PARAMS, 0, 0, 0, 0 }; local
471 vp->fogpidx = _mesa_add_state_reference(paramList, tokens);
/external/skia/src/animator/
H A DSkAnimatorScript.cpp152 const char* tokens = (const char*) callBack; local
154 if (MapEnums(tokens, token, len, (int*)&value->fOperand.fS32))
H A DSkAnimatorScript2.cpp108 SkAnimatorScript_Enum(const char* tokens) : fTokens(tokens) {} argument
/external/webp/src/utils/
H A Dhuffman_encode.c283 HuffmanTreeToken* tokens,
287 tokens->code = value;
288 tokens->extra_bits = 0;
289 ++tokens;
296 tokens->code = value;
297 tokens->extra_bits = 0;
298 ++tokens;
302 tokens->code = 16;
303 tokens->extra_bits = repetitions - 3;
304 ++tokens;
282 CodeRepeatedValues(int repetitions, HuffmanTreeToken* tokens, int value, int prev_value) argument
316 CodeRepeatedZeros(int repetitions, HuffmanTreeToken* tokens) argument
347 VP8LCreateCompressedHuffmanTree(const HuffmanTreeCode* const tree, HuffmanTreeToken* tokens, int max_tokens) argument
[all...]
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3baserecognizer.c560 // There is no information about the tokens that can follow the last one
594 // Now compute the visiable tokens that can follow this rule, according to context
788 /// During rule invocation, the parser pushes the set of tokens that can
791 /// enclosing rule. This local follow set only includes tokens
799 /// thing to do is to consume tokens until you see something that
801 /// You don't want the exact set of viable next tokens because the
803 /// rest of the input looking for one of the missing tokens.
815 /// At each rule invocation, the set of tokens that could follow
840 /// all context-sensitive FOLLOW sets--the set of all tokens that
842 /// resync to one of those tokens
1832 toStrings(pANTLR3_BASE_RECOGNIZER recognizer, pANTLR3_HASH_TABLE tokens) argument
[all...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DBaseRecognizer.cs177 //System.out.println("viable tokens="+follow.toString(getTokenNames()));
405 * rule invocation, the parser pushes the set of tokens that can
408 * enclosing rule. This local follow set only includes tokens
416 * thing to do is to consume tokens until you see something that
418 * You don't want the exact set of viable next tokens because the
420 * rest of the input looking for one of the missing tokens.
432 * At each rule invocation, the set of tokens that could follow
457 * all context-sensitive FOLLOW sets--the set of all tokens that
459 * resync to one of those tokens. Note that FOLLOW(c)='^' and if
503 * viable tokens tha
824 ToStrings(ICollection<IToken> tokens) argument
[all...]
/external/antlr/antlr-3.4/runtime/Python/unittests/
H A Dtesttree.py1263 tokens = [ variable in class:TestTreeIterator
1269 wiz = TreeWizard(adaptor, self.tokens)
1279 wiz = TreeWizard(adaptor, self.tokens)
1289 wiz = TreeWizard(adaptor, self.tokens)
1299 wiz = TreeWizard(adaptor, self.tokens)
1309 wiz = TreeWizard(adaptor, self.tokens)
1319 wiz = TreeWizard(adaptor, self.tokens)
1329 wiz = TreeWizard(adaptor, self.tokens)
/external/chromium/third_party/libjingle/source/talk/base/
H A Dlogging.cc276 std::vector<std::string> tokens; local
277 tokenize(params, ' ', &tokens);
279 for (size_t i = 0; i < tokens.size(); ++i) {
280 if (tokens[i].empty())
284 if (tokens[i] == "tstamp") {
286 } else if (tokens[i] == "thread") {
290 } else if (tokens[i] == "sensitive") {
292 } else if (tokens[i] == "verbose") {
294 } else if (tokens[i] == "info") {
296 } else if (tokens[
[all...]
/external/chromium_org/chrome/browser/sync/test/integration/
H A Dsync_test.cc416 std::vector<std::string> tokens; local
418 Tokenize(file_contents, delimiters, &tokens);
419 ASSERT_EQ(2U, tokens.size()) << "Password file \""
422 username_ = tokens[0];
423 password_ = tokens[1];
/external/chromium_org/chrome/browser/translate/
H A Dtranslate_prefs.cc69 std::vector<std::string> tokens; local
70 base::SplitString(language, '-', &tokens);
71 if (tokens.size() == 0)
73 const std::string& main_part = tokens[0];
472 std::vector<std::string> tokens; local
473 base::SplitString(lang, '-', &tokens);
474 if (tokens.size() < 1)
477 std::string main_part = tokens[0];

Completed in 1906 milliseconds

1234567891011>>