/third_party/rust/crates/syn/tests/ |
H A D | test_ty.rs | 6 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 D | test_grouping.rs | 6 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 D | test_parse_buffer.rs | 3 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 D | test_path.rs | 6 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 D | test_visibility.rs | 6 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 D | ARMAsmParser.cpp | 4568 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 D | tt.rs | 8 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 D | error.rs | 5 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 D | token.rs | 1023 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 D | buffer.rs | 10 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 D | lifetime.rs | 144 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 D | templateLiteralTypes1.js | 242 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 D | comments.rs | 3 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 D | marker.rs | 4 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 D | test.rs | 8 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 D | runtime.rs | 6 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 D | wrapper.rs | 4 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 D | lib.rs | 775 /// `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 D | fallback.rs | 5 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 D | dng_gain_map.cpp | 125 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 D | dng_gain_map.h | 72 const dng_point_real64 & Spacing () const in Spacing() function in dng_gain_map
|
/third_party/skia/src/sfnt/ |
H A D | SkPanose.h | 212 enum class Spacing : SK_OT_BYTE { class 456 enum class Spacing : SK_OT_BYTE { class
|
/third_party/skia/tools/viewer/ |
H A D | ImGuiLayer.h | 59 ImGui::Spacing(); in ~DragCanvas()
|
/third_party/skia/third_party/externals/imgui/ |
H A D | imgui_demo.cpp | 399 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 D | shader_types.h | 66 enum gl_tess_spacing Spacing; member
|