Home
last modified time | relevance | path

Searched defs:tokens (Results 1 – 25 of 245) sorted by relevance

12345678910

/third_party/rust/crates/syn/tests/
Dtest_item.rs13 let tokens = TokenStream::from_iter(vec![ in test_macro_variable_attr() localVariable
54 let tokens = quote! { in test_negative_impl() localVariable
67 let tokens = quote! { in test_negative_impl() localVariable
79 let tokens = quote! { in test_negative_impl() localVariable
110 let tokens = quote! { in test_negative_impl() localVariable
124 let tokens = TokenStream::from_iter(vec![ in test_macro_variable_impl() localVariable
165 let tokens = quote!(trait Trait where {}); in test_supertraits() localVariable
177 let tokens = quote!(trait Trait: where {}); in test_supertraits() localVariable
190 let tokens = quote!(trait Trait: Sized where {}); in test_supertraits() localVariable
214 let tokens = quote!(trait Trait: Sized + where {}); in test_supertraits() localVariable
[all …]
Dtest_expr.rs13 let tokens = quote!(..100u32); in test_expr_parse() localVariable
23 let tokens = quote!(..100u32); in test_expr_parse() localVariable
37 let tokens = quote!(fut.await); in test_await() localVariable
105 let tokens = quote!(#path()); in test_macro_variable_func() localVariable
124 let tokens = quote!(#[outside] #path()); in test_macro_variable_func() localVariable
171 let tokens = quote!(#mac!()); in test_macro_variable_macro() localVariable
194 let tokens = quote!(#s {}); in test_macro_variable_struct() localVariable
213 let tokens = quote!(#inner.method()); in test_macro_variable_unary() localVariable
238 let tokens = quote!(match v { _ => #expr }); in test_macro_variable_match_arm() localVariable
275 let tokens = quote!(match v { _ => #expr }); in test_macro_variable_match_arm() localVariable
[all …]
Dtest_ty.rs24 let tokens = TokenStream::from_iter(vec![ in test_macro_variable_type() localVariable
57 let tokens = TokenStream::from_iter(vec![ in test_macro_variable_type() localVariable
96 let tokens = TokenStream::from_iter(vec![ in test_group_angle_brackets() localVariable
147 let tokens = TokenStream::from_iter(vec![ in test_group_colons() localVariable
183 let tokens = TokenStream::from_iter(vec![ in test_group_colons() localVariable
220 let tokens = quote!(dyn for<'a> Trait<'a> + 'static); in test_trait_object() localVariable
258 let tokens = quote!(dyn 'a + Trait); in test_trait_object() localVariable
288 let tokens = quote!(impl Trait +); in test_trailing_plus() localVariable
307 let tokens = quote!(dyn Trait +); in test_trailing_plus() localVariable
327 let tokens = quote!(Trait +); in test_trailing_plus() localVariable
Dtest_stmt.rs61 let tokens = TokenStream::from_iter(vec![TokenTree::Group(Group::new( in test_none_group() localVariable
86 let tokens = Group::new(Delimiter::None, quote!(let None = None)).to_token_stream(); in test_none_group() localVariable
115 let tokens = quote! { in test_let_dot_dot() localVariable
133 let tokens = quote! { in test_let_else() localVariable
184 let tokens = quote! { in test_macros() localVariable
270 let tokens = quote! { in test_early_parse_loop() localVariable
294 let tokens = quote! { in test_early_parse_loop() localVariable
Dtest_generics.rs130 let tokens = quote!('a); in test_ty_param_bound() localVariable
137 let tokens = quote!('_); in test_ty_param_bound() localVariable
144 let tokens = quote!(Debug); in test_ty_param_bound() localVariable
157 let tokens = quote!(?Sized); in test_ty_param_bound() localVariable
Dtest_path.rs13 let tokens = TokenStream::from_iter(vec![ in parse_interpolated_leading_component() localVariable
108 let tokens = quote!(dyn FnOnce::() -> !); in parse_parenthesized_path_arguments_with_disambiguator() localVariable
Dtest_grouping.rs11 let tokens: TokenStream = TokenStream::from_iter(vec![ in test_grouping() localVariable
/third_party/rust/crates/quote/tests/
Dtest.rs27 let tokens = quote! { in test_quote_impl() localVariable
49 let tokens = quote_spanned! {span=> in test_quote_spanned_impl() localVariable
71 let tokens = quote!(#x <#x> (#x) [#x] {#x}); in test_substitution() localVariable
124 let tokens = quote! { in test_advanced() localVariable
180 let tokens = quote! { in test_integer() localVariable
196 let tokens = quote! { in test_floating() localVariable
213 let tokens = quote! { in test_char() localVariable
223 let tokens = quote!(#s); in test_str() localVariable
231 let tokens = quote!(#s); in test_string() localVariable
244 let tokens = m!(1); in test_interpolated_literal() localVariable
[all …]
/third_party/rust/crates/syn/tests/regression/
Dissue1235.rs8 let tokens = quote! { in main() localVariable
20 let tokens = quote!(pub #inner;); in main() localVariable
29 let tokens = quote!(pub #inner;); in main() localVariable
/third_party/mesa3d/src/gallium/auxiliary/tgsi/
Dtgsi_parse.c36 const struct tgsi_token *tokens ) in tgsi_parse_init()
279 tgsi_dup_tokens(const struct tgsi_token *tokens) in tgsi_dup_tokens()
305 tgsi_free_tokens(const struct tgsi_token *tokens) in tgsi_free_tokens()
312 tgsi_dump_tokens(const struct tgsi_token *tokens) in tgsi_dump_tokens()
327 tgsi_get_processor_type(const struct tgsi_token *tokens) in tgsi_get_processor_type()
Dtgsi_iterate.c33 const struct tgsi_token *tokens, in tgsi_iterate_shader()
/third_party/mesa3d/src/gallium/drivers/nouveau/
Dnouveau_compiler.c38 nv30_fp(int chipset, struct tgsi_token tokens[], in nv30_fp()
51 nv30_vp(int chipset, struct tgsi_token tokens[], in nv30_vp()
65 nv30_codegen(int chipset, int type, struct tgsi_token tokens[], in nv30_codegen()
105 nouveau_codegen(int chipset, int type, struct tgsi_token tokens[], in nouveau_codegen()
142 struct tgsi_token tokens[4096]; in main() local
/third_party/rust/crates/syn/benches/
Dfile.rs40 let tokens = get_tokens(); in baseline() localVariable
46 let tokens = get_tokens(); in create_token_buffer() localVariable
55 let tokens = get_tokens(); in parse_file() localVariable
/third_party/nghttp2/
Dgentokenlookup.py26 def gen_enum(tokens, prefix): argument
36 def gen_index_header(tokens, prefix, comp_fun, return_type, fail_value): argument
66 def gentokenlookup(tokens, prefix, comp_fun='util::streq', return_type='int', fail_value='-1'): argument
/third_party/mesa3d/src/gallium/targets/graw-null/
Dgraw_util.c19 struct tgsi_token tokens[1024]; in graw_parse_geometry_shader() local
34 struct tgsi_token tokens[1024]; in graw_parse_vertex_shader() local
49 struct tgsi_token tokens[1024]; in graw_parse_fragment_shader() local
/third_party/rust/crates/syn/tests/macros/
Dmod.rs39 let tokens = crate::macros::TryIntoTokens::try_into_tokens($expr).unwrap(); localVariable
50 let tokens = crate::macros::TryIntoTokens::try_into_tokens($($expr)*).unwrap(); localVariable
83 let tokens = proc_macro2::TokenStream::from_str(self)?; in try_into_tokens() localVariable
/third_party/typescript/tests/baselines/reference/
DundefinedSymbolReferencedInArrayLiteral1.js2 var tokens = [{ startIndex: deltaOffset }]; variable
12 var tokens = [{ startIndex: deltaOffset }]; variable
/third_party/rust/crates/proc-macro2/tests/
Dtest.rs162 let mut tokens = strings.parse::<TokenStream>().unwrap().into_iter(); in literal_c_string() localVariable
265 let tokens = TokenStream::from(TokenTree::Literal(negative_literal)); in literal_iter_negative() localVariable
332 let mut tokens = input in source_text() localVariable
655 let tokens = "a b (c d) e".parse::<TokenStream>().unwrap(); in tokenstream_size_hint() localVariable
663 let mut tokens = "tuple.0.0".parse::<TokenStream>().unwrap().into_iter(); in tuple_indexing() localVariable
741 let tokens = various_spaces.parse::<TokenStream>().unwrap(); in whitespace() localVariable
751 let tokens = string.parse::<TokenStream>().unwrap(); in byte_order_mark() localVariable
/third_party/musl/libc-test/src/functionalext/supplement/misc/
Dgetsubopt.c28 char *tokens[] = {"getsubopt", "test", NULL}; in getsubopt_0100() local
44 char *tokens[] = {"getsubopt", "test", NULL}; in getsubopt_0200() local
/third_party/mesa3d/src/gallium/drivers/radeonsi/
Dsi_shaderlib_tgsi.c386 struct tgsi_token tokens[1024]; in si_create_query_result_cs() local
425 struct tgsi_token tokens[1024]; in si_clear_render_target_shader() local
460 struct tgsi_token tokens[1024]; in si_clear_render_target_shader_1d_array() local
492 struct tgsi_token tokens[1024]; in si_clear_12bytes_buffer_shader() local
777 struct tgsi_token tokens[1024]; in gfx10_create_sh_query_result_cs() local
/third_party/parse5/scripts/generate-parser-feedback-test/
Dindex.ts17 const tokens: HtmlLibToken[] = []; constant
41 const lastToken = tokens[tokens.length - 1]; constant
/third_party/mindspore/mindspore-src/source/mindspore/ccsrc/plugin/device/gpu/kernel/cuda_impl/cuda_ops/
Dno_repeat_ngram_impl.cu33 __global__ void reassign_probability(StateType *__restrict__ tokens, LogProbType *__restrict__ lpro… in reassign_probability()
70 __global__ void reassign_probability_no_shared(StateType *__restrict__ tokens, LogProbType *__restr… in reassign_probability_no_shared()
100 cudaError_t CalculateNoRepeatNGram(const StateType *tokens, LogProbType *lprobs, LogProbType *outpu… in CalculateNoRepeatNGram()
/third_party/typescript/tests/cases/compiler/
DundefinedSymbolReferencedInArrayLiteral1.ts1 var tokens = [{ startIndex: deltaOffset }]; variable
DuncaughtCompilerError1.ts1 declare var index, lineTokens, token, tokens; variable
/third_party/mesa3d/src/gallium/drivers/i915/
Di915_fpc_optimize.c289 struct i915_token_list *tokens) in liveness_analysis()
396 struct i915_token_list *tokens, int index) in i915_fpc_optimize_mov_before_tex()
589 struct i915_token_list *tokens, in i915_fpc_optimize_useless_mov_after_inst()
620 i915_optimize(const struct tgsi_token *tokens) in i915_optimize()
677 i915_optimize_free(struct i915_token_list *tokens) in i915_optimize_free()

12345678910