Home
last modified time | relevance | path

Searched refs:Spacing (Results 1 - 25 of 38) sorted by relevance

12

/third_party/rust/crates/syn/tests/
H A Dtest_ty.rs6 use proc_macro2::{Delimiter, Group, Ident, Punct, Spacing, Span, TokenStream, TokenTree};
26 TokenTree::Punct(Punct::new('<', Spacing::Alone)), in test_macro_variable_type()
28 TokenTree::Punct(Punct::new('>', Spacing::Alone)), in test_macro_variable_type()
59 TokenTree::Punct(Punct::new(':', Spacing::Joint)), in test_macro_variable_type()
60 TokenTree::Punct(Punct::new(':', Spacing::Alone)), in test_macro_variable_type()
61 TokenTree::Punct(Punct::new('<', Spacing::Alone)), in test_macro_variable_type()
63 TokenTree::Punct(Punct::new('>', Spacing::Alone)), in test_macro_variable_type()
98 TokenTree::Punct(Punct::new('<', Spacing::Alone)), in test_group_angle_brackets()
100 TokenTree::Punct(Punct::new('>', Spacing::Alone)), in test_group_angle_brackets()
149 TokenTree::Punct(Punct::new(':', Spacing in test_group_colons()
[all...]
H A Dtest_grouping.rs6 use proc_macro2::{Delimiter, Group, Literal, Punct, Spacing, TokenStream, TokenTree};
13 TokenTree::Punct(Punct::new('+', Spacing::Alone)), in test_grouping()
18 TokenTree::Punct(Punct::new('+', Spacing::Alone)), in test_grouping()
22 TokenTree::Punct(Punct::new('*', Spacing::Alone)), in test_grouping()
H A Dtest_parse_buffer.rs3 use proc_macro2::{Delimiter, Group, Punct, Spacing, TokenStream, TokenTree};
73 TokenTree::Punct(Punct::new('+', Spacing::Alone)), in trailing_empty_none_group()
77 TokenTree::Punct(Punct::new('+', Spacing::Alone)), in trailing_empty_none_group()
H A Dtest_path.rs6 use proc_macro2::{Delimiter, Group, Ident, Punct, Spacing, Span, TokenStream, TokenTree};
15 TokenTree::Punct(Punct::new(':', Spacing::Joint)), in parse_interpolated_leading_component()
16 TokenTree::Punct(Punct::new(':', Spacing::Alone)), in parse_interpolated_leading_component()
H A Dtest_visibility.rs6 use proc_macro2::{Delimiter, Group, Ident, Punct, Spacing, Span, TokenStream, TokenTree};
119 TokenTree::Punct(Punct::new(':', Spacing::Alone)), in test_empty_group_vis()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/AsmParser/
H A DARMAsmParser.cpp4568 int Spacing = 0; in parseVectorList() local
4579 Spacing = 1; // double-spacing requires explicit D registers, otherwise in parseVectorList()
4592 if (!Spacing) in parseVectorList()
4593 Spacing = 1; // Register range implies a single spaced list. in parseVectorList()
4594 else if (Spacing == 2) { in parseVectorList()
4656 Spacing = 1; in parseVectorList()
4665 if (!Spacing) in parseVectorList()
4666 Spacing = 1; // Register range implies a single spaced list. in parseVectorList()
4667 else if (Spacing == 2) { in parseVectorList()
4695 if (!Spacing) in parseVectorList()
7955 getRealVSTOpcode(unsigned Opc, unsigned &Spacing) getRealVSTOpcode() argument
8064 getRealVLDOpcode(unsigned Opc, unsigned &Spacing) getRealVLDOpcode() argument
8458 unsigned Spacing; processInstruction() local
8480 unsigned Spacing; processInstruction() local
8504 unsigned Spacing; processInstruction() local
8530 unsigned Spacing; processInstruction() local
8556 unsigned Spacing; processInstruction() local
8578 unsigned Spacing; processInstruction() local
8602 unsigned Spacing; processInstruction() local
8628 unsigned Spacing; processInstruction() local
8654 unsigned Spacing; processInstruction() local
8674 unsigned Spacing; processInstruction() local
8696 unsigned Spacing; processInstruction() local
8720 unsigned Spacing; processInstruction() local
8745 unsigned Spacing; processInstruction() local
8768 unsigned Spacing; processInstruction() local
8795 unsigned Spacing; processInstruction() local
8826 unsigned Spacing; processInstruction() local
8859 unsigned Spacing; processInstruction() local
8882 unsigned Spacing; processInstruction() local
8909 unsigned Spacing; processInstruction() local
8940 unsigned Spacing; processInstruction() local
8973 unsigned Spacing; processInstruction() local
8994 unsigned Spacing; processInstruction() local
9019 unsigned Spacing; processInstruction() local
9048 unsigned Spacing; processInstruction() local
9081 unsigned Spacing; processInstruction() local
9103 unsigned Spacing; processInstruction() local
9127 unsigned Spacing; processInstruction() local
9152 unsigned Spacing; processInstruction() local
9174 unsigned Spacing; processInstruction() local
9198 unsigned Spacing; processInstruction() local
9223 unsigned Spacing; processInstruction() local
9247 unsigned Spacing; processInstruction() local
9273 unsigned Spacing; processInstruction() local
9300 unsigned Spacing; processInstruction() local
9324 unsigned Spacing; processInstruction() local
9350 unsigned Spacing; processInstruction() local
9377 unsigned Spacing; processInstruction() local
9399 unsigned Spacing; processInstruction() local
9423 unsigned Spacing; processInstruction() local
9448 unsigned Spacing; processInstruction() local
9472 unsigned Spacing; processInstruction() local
9498 unsigned Spacing; processInstruction() local
[all...]
/third_party/rust/crates/syn/src/
H A Dtt.rs8 use proc_macro2::Spacing; in eq()
37 (Spacing::Alone, Spacing::Alone) | (Spacing::Joint, Spacing::Joint) => true, in eq()
50 use proc_macro2::Spacing; in hash()
71 Spacing::Alone => 0u8.hash(h), in hash()
72 Spacing::Joint => 1u8.hash(h), in hash()
H A Derror.rs5 Delimiter, Group, Ident, LexError, Literal, Punct, Spacing, Span, TokenStream, TokenTree,
285 let mut punct = Punct::new(':', Spacing::Joint); in to_compile_error()
290 let mut punct = Punct::new(':', Spacing::Alone); in to_compile_error()
296 let mut punct = Punct::new(':', Spacing::Joint); in to_compile_error()
301 let mut punct = Punct::new(':', Spacing::Alone); in to_compile_error()
307 let mut punct = Punct::new('!', Spacing::Alone); in to_compile_error()
H A Dtoken.rs1023 use proc_macro2::{Spacing, Span};
1064 } else if punct.spacing() != Spacing::Joint { in punct_helper()
1086 } else if punct.spacing() != Spacing::Joint { in peek_punct()
1102 use proc_macro2::{Delimiter, Group, Ident, Punct, Spacing, Span, TokenStream};
1114 let mut op = Punct::new(ch, Spacing::Joint); in punct()
1119 let mut op = Punct::new(ch, Spacing::Alone); in punct()
H A Dbuffer.rs10 use proc_macro2::{Delimiter, Group, Ident, Literal, Punct, Spacing, Span, TokenStream, TokenTree};
265 Entry::Punct(punct) if punct.as_char() == '\'' && punct.spacing() == Spacing::Joint => {
358 Entry::Punct(punct) if punct.as_char() == '\'' && punct.spacing() == Spacing::Joint => {
H A Dlifetime.rs144 use proc_macro2::{Punct, Spacing, TokenStream};
150 let mut apostrophe = Punct::new('\'', Spacing::Joint); in to_tokens()
/third_party/typescript/tests/baselines/reference/
H A DtemplateLiteralTypes1.js242 export type Spacing =
248 const spacing: Spacing = "s12"
251 | `${Spacing} ${Spacing}`
252 | `${Spacing} ${Spacing} ${Spacing}`
253 | `${Spacing} ${Spacing} ${Spacing}
[all...]
/third_party/rust/crates/proc-macro2/tests/
H A Dcomments.rs3 use proc_macro2::{Delimiter, Literal, Spacing, TokenStream, TokenTree};
20 assert_eq!(punct.spacing(), Spacing::Alone); in lit_of_doc_comment()
28 assert_eq!(punct.spacing(), Spacing::Alone); in lit_of_doc_comment()
48 assert_eq!(punct.spacing(), Spacing::Alone); in lit_of_doc_comment()
H A Dmarker.rs4 Delimiter, Group, Ident, LexError, Literal, Punct, Spacing, Span, TokenStream, TokenTree,
45 assert_impl!(Spacing is Send and Sync);
67 Delimiter, Group, Ident, LexError, Literal, Punct, Spacing, Span, TokenStream, TokenTree,
88 Spacing
H A Dtest.rs8 use proc_macro2::{Ident, Literal, Punct, Spacing, Span, TokenStream, TokenTree};
270 assert_eq!(punct.spacing(), Spacing::Alone); in literal_iter_negative()
497 assert_eq!(tt.spacing(), Spacing::Alone); in punct_before_comment()
510 let joint_punct = Punct::new(':', Spacing::Joint); in joint_last_token()
516 assert_eq!(punct.spacing(), Spacing::Joint); in joint_last_token()
/third_party/rust/crates/quote/src/
H A Druntime.rs6 use proc_macro2::{Group, Ident, Punct, Spacing, TokenTree};
312 Some(TokenTree::Punct(Punct::new('\'', Spacing::Joint))) in next()
344 let mut apostrophe = Punct::new('\'', Spacing::Joint); in next()
368 tokens.append(Punct::new($char1, Spacing::Alone));
372 let mut punct = Punct::new($char1, Spacing::Alone);
380 tokens.append(Punct::new($char1, Spacing::Joint));
381 tokens.append(Punct::new($char2, Spacing::Alone));
385 let mut punct = Punct::new($char1, Spacing::Joint);
388 let mut punct = Punct::new($char2, Spacing::Alone);
396 tokens.append(Punct::new($char1, Spacing
[all...]
/third_party/rust/crates/proc-macro2/src/
H A Dwrapper.rs4 use crate::{fallback, Delimiter, Punct, Spacing, TokenTree};
164 Spacing::Joint => proc_macro::Spacing::Joint, in into_compiler_token()
165 Spacing::Alone => proc_macro::Spacing::Alone, in into_compiler_token()
339 proc_macro::Spacing::Joint => Spacing::Joint, in next()
340 proc_macro::Spacing::Alone => Spacing::Alone, in next()
H A Dlib.rs775 /// `Punct` with different forms of `Spacing` returned.
779 spacing: Spacing,
786 pub enum Spacing { enum
804 pub fn new(ch: char, spacing: Spacing) -> Self { in new()
822 pub fn spacing(&self) -> Spacing { in spacing()
H A Dfallback.rs5 use crate::{Delimiter, Spacing, TokenTree};
90 let mut punct = crate::Punct::new('-', Spacing::Alone); in push_token_from_proc_macro()
204 joint = tt.spacing() == Spacing::Joint; in fmt()
/third_party/skia/third_party/externals/dng_sdk/source/
H A Ddng_gain_map.cpp125 fMap.Origin ().v) / fMap.Spacing ().v; in dng_gain_map_interpolator()
191 fMap.Origin ().h) / fMap.Spacing ().h; in ResetColumn()
237 fValueStep = (real32) ((delta * fScale.h) / fMap.Spacing ().h); in ResetColumn()
239 fResetColumn = (int32) ceil (((colIndex + 1) * fMap.Spacing ().h + in ResetColumn()
370 printf ("Spacing: v=%.6f, h=%.6f\n", in GetStream()
H A Ddng_gain_map.h72 const dng_point_real64 & Spacing () const in Spacing() function in dng_gain_map
/third_party/skia/src/sfnt/
H A DSkPanose.h212 enum class Spacing : SK_OT_BYTE { class
456 enum class Spacing : SK_OT_BYTE { class
/third_party/skia/tools/viewer/
H A DImGuiLayer.h59 ImGui::Spacing(); in ~DragCanvas()
/third_party/skia/third_party/externals/imgui/
H A Dimgui_demo.cpp399 ImGui::Spacing(); in ShowDemoWindow()
899 ImGui::Spacing(); in ShowDemoWindowWidgets()
1192 ImGui::Spacing(); in ShowDemoWindowWidgets()
1812 ImGui::Spacing(); in ShowDemoWindowWidgets()
1998 ImGui::Spacing(); in ShowDemoWindowWidgets()
2006 ImGui::Spacing(); in ShowDemoWindowWidgets()
2719 ImGui::Spacing(); in ShowDemoWindowLayout()
2743 ImGui::Spacing(); in ShowDemoWindowLayout()
2875 ImGui::Spacing(); in ShowDemoWindowLayout()
2915 ImGui::Spacing(); in ShowDemoWindowLayout()
[all...]
/third_party/mesa3d/src/mesa/main/
H A Dshader_types.h66 enum gl_tess_spacing Spacing; member

Completed in 41 milliseconds

12