/third_party/rust/crates/syn/tests/ |
D | test_expr.rs | 4 use proc_macro2::{Delimiter, Group, Ident, Punct, Spacing, Span, TokenStream, TokenTree}; 105 TokenTree::Group(Group::new(Delimiter::None, quote! { f })), in test_macro_variable_func() 106 TokenTree::Group(Group::new(Delimiter::Parenthesis, TokenStream::new())), in test_macro_variable_func() 128 TokenTree::Group(Group::new(Delimiter::Bracket, quote! { outside })), in test_macro_variable_func() 129 TokenTree::Group(Group::new(Delimiter::None, quote! { #[inside] f })), in test_macro_variable_func() 130 TokenTree::Group(Group::new(Delimiter::Parenthesis, TokenStream::new())), in test_macro_variable_func() 183 TokenTree::Group(Group::new(Delimiter::None, quote! { m })), in test_macro_variable_macro() 185 TokenTree::Group(Group::new(Delimiter::Parenthesis, TokenStream::new())), in test_macro_variable_macro() 210 TokenTree::Group(Group::new(Delimiter::None, quote! { S })), in test_macro_variable_struct() 211 TokenTree::Group(Group::new(Delimiter::Brace, TokenStream::new())), in test_macro_variable_struct() [all …]
|
D | test_item.rs | 4 use proc_macro2::{Delimiter, Group, Ident, Span, TokenStream, TokenTree}; 13 TokenTree::Group(Group::new(Delimiter::None, quote! { #[test] })), in test_macro_variable_attr() 16 TokenTree::Group(Group::new(Delimiter::Parenthesis, TokenStream::new())), in test_macro_variable_attr() 17 TokenTree::Group(Group::new(Delimiter::Brace, TokenStream::new())), in test_macro_variable_attr() 127 TokenTree::Group(Group::new(Delimiter::None, quote!(Trait))), in test_macro_variable_impl() 129 TokenTree::Group(Group::new(Delimiter::None, quote!(Type))), in test_macro_variable_impl() 130 TokenTree::Group(Group::new(Delimiter::Brace, TokenStream::new())), in test_macro_variable_impl()
|
D | test_parse_buffer.rs | 3 use proc_macro2::{Delimiter, Group, Punct, Spacing, TokenStream, TokenTree}; 74 TokenTree::Group(Group::new( in trailing_empty_none_group() 78 TokenTree::Group(Group::new(Delimiter::None, TokenStream::new())), in trailing_empty_none_group() 81 TokenTree::Group(Group::new(Delimiter::None, TokenStream::new())), in trailing_empty_none_group() 82 TokenTree::Group(Group::new( in trailing_empty_none_group() 84 TokenStream::from_iter(vec![TokenTree::Group(Group::new( in trailing_empty_none_group()
|
D | test_ty.rs | 4 use proc_macro2::{Delimiter, Group, Ident, Punct, Spacing, Span, TokenStream, TokenTree}; 23 TokenTree::Group(Group::new(Delimiter::None, quote! { ty })), in test_macro_variable_type() 57 TokenTree::Group(Group::new(Delimiter::None, quote! { ty })), in test_macro_variable_type() 99 TokenTree::Group(Group::new(Delimiter::None, quote! { Vec<u8> })), in test_group_angle_brackets() 149 TokenTree::Group(Group::new(Delimiter::None, quote! { Vec<u8> })), in test_group_colons() 186 TokenTree::Group(Group::new(Delimiter::None, quote! { [T] })), in test_group_colons()
|
D | test_stmt.rs | 6 use proc_macro2::{Delimiter, Group, Ident, Span, TokenStream, TokenTree}; 54 let tokens = TokenStream::from_iter(vec![TokenTree::Group(Group::new( in test_none_group() 60 TokenTree::Group(Group::new(Delimiter::Parenthesis, TokenStream::new())), in test_none_group() 61 TokenTree::Group(Group::new(Delimiter::Brace, TokenStream::new())), in test_none_group()
|
D | test_visibility.rs | 4 use proc_macro2::{Delimiter, Group, Ident, Punct, Spacing, Span, TokenStream, TokenTree}; 112 TokenTree::Group(Group::new( in test_empty_group_vis() 115 TokenTree::Group(Group::new(Delimiter::None, TokenStream::new())), in test_empty_group_vis() 116 TokenTree::Group(Group::new( in test_empty_group_vis() 124 TokenTree::Group(Group::new(Delimiter::Parenthesis, TokenStream::new())), in test_empty_group_vis()
|
/third_party/skia/modules/sksg/include/ |
D | SkSGGroup.h | 20 class Group : public RenderNode { 22 static sk_sp<Group> Make() { in Make() 23 return sk_sp<Group>(new Group(std::vector<sk_sp<RenderNode>>())); in Make() 26 static sk_sp<Group> Make(std::vector<sk_sp<RenderNode>> children) { in Make() 27 return sk_sp<Group>(new Group(std::move(children))); in Make() 38 Group(); 39 explicit Group(std::vector<sk_sp<RenderNode>>); 40 ~Group() override;
|
/third_party/skia/modules/sksg/src/ |
D | SkSGGroup.cpp | 16 Group::Group() = default; 18 Group::Group(std::vector<sk_sp<RenderNode>> children) in Group() function in sksg::Group 25 Group::~Group() { in ~Group() 31 void Group::clear() { in clear() 38 void Group::addChild(sk_sp<RenderNode> node) { in addChild() 52 void Group::removeChild(const sk_sp<RenderNode>& node) { in removeChild() 61 void Group::onRender(SkCanvas* canvas, const RenderContext* ctx) const { in onRender() 71 const RenderNode* Group::onNodeAt(const SkPoint& p) const { in onNodeAt() 81 SkRect Group::onRevalidate(InvalidationController* ic, const SkMatrix& ctm) { in onRevalidate()
|
/third_party/rust/crates/proc-macro2/tests/ |
D | test_fmt.rs | 3 use proc_macro2::{Delimiter, Group, Ident, Span, TokenStream, TokenTree}; 10 let parens_empty = Group::new(Delimiter::Parenthesis, TokenStream::new()); in test_fmt_group() 11 let parens_nonempty = Group::new(Delimiter::Parenthesis, inner.clone()); in test_fmt_group() 12 let brackets_empty = Group::new(Delimiter::Bracket, TokenStream::new()); in test_fmt_group() 13 let brackets_nonempty = Group::new(Delimiter::Bracket, inner.clone()); in test_fmt_group() 14 let braces_empty = Group::new(Delimiter::Brace, TokenStream::new()); in test_fmt_group() 15 let braces_nonempty = Group::new(Delimiter::Brace, inner.clone()); in test_fmt_group() 16 let none_empty = Group::new(Delimiter::None, TokenStream::new()); in test_fmt_group() 17 let none_nonempty = Group::new(Delimiter::None, inner); in test_fmt_group()
|
/third_party/curl/tests/data/ |
D | test576 | 44 Group: ftp-default 53 Group: ftp-default 62 Group: ftp-default 75 Group: ftp-default 88 Group: ftp-default 101 Group: ftp-default 110 Group: ftp-default 119 Group: ftp-default 131 Group: ftp-default 144 Group: ftp-default [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/ |
D | X86CmovConversion.cpp | 146 void convertCmovInstsToBranches(SmallVectorImpl<MachineInstr *> &Group) const; 186 for (auto &Group : AllCmovGroups) { in runOnMachineFunction() local 188 if (!llvm::any_of(Group, [&](MachineInstr *I) { return I->mayLoad(); })) in runOnMachineFunction() 195 convertCmovInstsToBranches(Group); in runOnMachineFunction() 247 for (auto &Group : CmovInstGroups) in runOnMachineFunction() local 248 convertCmovInstsToBranches(Group); in runOnMachineFunction() 277 CmovGroup Group; in collectCmovCandidates() local 279 Group.clear(); in collectCmovCandidates() 296 if (Group.empty()) { in collectCmovCandidates() 305 Group.push_back(&I); in collectCmovCandidates() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MCA/HardwareUnits/ |
D | LSUnit.h | 80 void addSuccessor(MemoryGroup *Group) { in addSuccessor() argument 81 Group->NumPredecessors++; in addSuccessor() 84 Group->onGroupIssued(CriticalMemoryInstruction); in addSuccessor() 85 Succ.emplace_back(Group); in addSuccessor() 252 const MemoryGroup &Group = getGroup(GroupID); in isReady() local 253 return Group.isReady(); in isReady() 260 const MemoryGroup &Group = getGroup(GroupID); in isPending() local 261 return Group.isPending(); in isPending() 268 const MemoryGroup &Group = getGroup(GroupID); in isWaiting() local 269 return Group.isWaiting(); in isWaiting() [all …]
|
/third_party/skia/third_party/externals/swiftshader/tests/regres/testlist/ |
D | testlist.go | 44 type Group struct { struct 52 func (g *Group) Load() error { argument 56 func (g *Group) LoadFile(file string) error { argument 77 func (g Group) Filter(pred func(string) bool) Group { argument 78 out := Group{ 92 func (g Group) Limit(limit int) Group { argument 93 out := Group{ 106 type Lists []Group 159 group := Group{
|
/third_party/rust/crates/proc-macro2/src/ |
D | wrapper.rs | 157 TokenTree::Group(tt) => tt.inner.unwrap_nightly().into(), in into_compiler_token() 332 proc_macro::TokenTree::Group(tt) => crate::Group::_new(Group::Compiler(tt)).into(), in next() 582 pub(crate) enum Group { enum 583 Compiler(proc_macro::Group), 584 Fallback(fallback::Group), 587 impl Group { implementation 597 Group::Compiler(proc_macro::Group::new(delimiter, tts.into_token_stream())) in new() 600 Group::Fallback(fallback::Group::new(delimiter, stream)) in new() 607 Group::Compiler(g) => match g.delimiter() { in delimiter() 613 Group::Fallback(g) => g.delimiter(), in delimiter() [all …]
|
D | lib.rs | 555 Group(Group), enumerator 569 TokenTree::Group(t) => t.span(), in span() 583 TokenTree::Group(t) => t.set_span(span), in set_span() 591 impl From<Group> for TokenTree { 592 fn from(g: Group) -> Self { in from() 593 TokenTree::Group(g) in from() 622 TokenTree::Group(t) => Display::fmt(t, f), in fmt() 636 TokenTree::Group(t) => Debug::fmt(t, f), in fmt() 654 pub struct Group { struct 655 inner: imp::Group, argument [all …]
|
/third_party/typescript/tests/baselines/reference/ |
D | returnTagTypeGuard.symbols | 22 class Group { 23 >Group : Symbol(Group, Decl(bug25127.js, 11, 1)) 27 >this.d : Symbol(Group.d, Decl(bug25127.js, 13, 19)) 28 >this : Symbol(Group, Decl(bug25127.js, 11, 1)) 29 >d : Symbol(Group.d, Decl(bug25127.js, 13, 19)) 36 >isInit : Symbol(Group.isInit, Decl(bug25127.js, 15, 5)) 42 /** @param {Entry | Group} chunk */ 56 >chunk.d : Symbol(Group.d, Decl(bug25127.js, 13, 19)) 58 >d : Symbol(Group.d, Decl(bug25127.js, 13, 19))
|
D | returnTagTypeGuard.types | 25 class Group { 26 >Group : Group 48 /** @param {Entry | Group} chunk */ 50 >f : (chunk: Entry | Group) => string | number 51 >chunk : Entry | Group 58 >chunk : Entry | Group 60 >chunk : Entry | Group 65 >chunk : Group
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MCA/HardwareUnits/ |
D | LSUnit.cpp | 57 const MemoryGroup &Group = *GroupIt.second; in dump() local 59 << "[ #Preds = " << Group.getNumPredecessors() in dump() 60 << ", #GIssued = " << Group.getNumExecutingPredecessors() in dump() 61 << ", #GExecuted = " << Group.getNumExecutedPredecessors() in dump() 62 << ", #Inst = " << Group.getNumInstructions() in dump() 63 << ", #IIssued = " << Group.getNumExecuting() in dump() 64 << ", #IExecuted = " << Group.getNumExecuted() << '\n'; in dump() 148 MemoryGroup &Group = getGroup(CurrentLoadGroupID); in dispatch() local 149 Group.addInstruction(); in dispatch()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
D | VectorUtils.cpp | 640 const InterleaveGroup<Instruction> &Group) { in createBitMaskForGaps() argument 642 if (Group.getNumMembers() == Group.getFactor()) in createBitMaskForGaps() 646 assert(!Group.isReverse() && "Reversed group not supported."); in createBitMaskForGaps() 650 for (unsigned j = 0; j < Group.getFactor(); ++j) { in createBitMaskForGaps() 651 unsigned HasMember = Group.getMember(j) ? 1 : 0; in createBitMaskForGaps() 924 InterleaveGroup<Instruction> *Group = nullptr; in analyzeInterleaving() local 927 Group = getInterleaveGroup(B); in analyzeInterleaving() 928 if (!Group) { in analyzeInterleaving() 931 Group = createInterleaveGroup(B, DesB.Stride, DesB.Alignment); in analyzeInterleaving() 934 StoreGroups.insert(Group); in analyzeInterleaving() [all …]
|
/third_party/rust/crates/syn/src/ |
D | buffer.rs | 16 use proc_macro2::{Delimiter, Group, Ident, Literal, Punct, Spacing, Span, TokenStream, TokenTree}; 25 Group(Group, usize), enumerator 51 TokenTree::Group(group) => { in recursive_new() 58 entries[group_start_index] = Entry::Group(group, group_end_offset); in recursive_new() 184 while let Entry::Group(group, _) = self.entry() { in ignore_none() 210 if let Entry::Group(group, end_offset) = self.entry() { in group() 293 Entry::Group(group, end_offset) => (group.clone().into(), *end_offset), in token_tree() 308 Entry::Group(group, _) => group.span(), in span() 332 Entry::Group(_, end_offset) => *end_offset, in skip() 388 Entry::Group(group, _) => group.span_open(), in open_span_of_group() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/ |
D | MCContext.cpp | 316 if (const MCSymbol *Group = Section->getGroup()) in renameELFSection() local 317 GroupName = Group->getName(); in renameELFSection() 333 const MCSymbolELF *Group, in createELFSectionImpl() argument 355 Section, Type, Flags, K, EntrySize, Group, UniqueID, R, Associated); in createELFSectionImpl() 367 const MCSymbolELF *Group, in createELFRelSection() argument 375 I->getKey(), Type, Flags, SectionKind::getReadOnly(), EntrySize, Group, in createELFRelSection() 388 const Twine &Group, unsigned UniqueID, in getELFSection() argument 391 if (!Group.isTriviallyEmpty() && !Group.str().empty()) in getELFSection() 392 GroupSym = cast<MCSymbolELF>(getOrCreateSymbol(Group)); in getELFSection() 403 StringRef Group = ""; in getELFSection() local [all …]
|
D | XCOFFObjectWriter.cpp | 126 for (auto *Group : Groups) in reset() local 127 Group->clear(); in reset() 311 CsectGroup &Group = getCsectGroup(MCSec); in executePostLayoutBinding() local 312 Group.emplace_back(MCSec); in executePostLayoutBinding() 313 WrapperMap[MCSec] = &Group.back(); in executePostLayoutBinding() 367 for (const auto *Group : Section->Groups) { in writeSections() local 368 for (const auto &Csect : *Group) { in writeSections() 563 for (const auto *Group : Section->Groups) { in writeSymbolTable() local 564 if (Group->empty()) in writeSymbolTable() 568 for (const auto &Csect : *Group) { in writeSymbolTable() [all …]
|
/third_party/node/deps/v8/src/tracing/ |
D | trace-categories.h | 35 perfetto::Category::Group("devtools.timeline,v8"), 36 perfetto::Category::Group("devtools.timeline," 55 perfetto::Category::Group("v8,devtools.timeline"), 56 perfetto::Category::Group(TRACE_DISABLED_BY_DEFAULT("v8.turbofan") "," 58 perfetto::Category::Group(TRACE_DISABLED_BY_DEFAULT("v8.inspector") ","
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MC/ |
D | MCSectionELF.h | 45 const MCSymbolELF *Group; variable 57 Flags(flags), UniqueID(UniqueID), EntrySize(entrySize), Group(group), in MCSectionELF() 59 if (Group) in MCSectionELF() 60 Group->setIsSignature(); in MCSectionELF() 75 const MCSymbolELF *getGroup() const { return Group; } in getGroup()
|
/third_party/skia/third_party/externals/swiftshader/src/Pipeline/ |
D | SpirvShaderGroup.cpp | 21 struct SpirvShader::Impl::Group struct in sw::SpirvShader::Impl 347 Impl::Group::BinaryOperation<SIMD::Int>( in EmitGroupNonUniform() 353 Impl::Group::BinaryOperation<SIMD::Float>( in EmitGroupNonUniform() 359 Impl::Group::BinaryOperation<SIMD::Int>( in EmitGroupNonUniform() 365 Impl::Group::BinaryOperation<SIMD::Float>( in EmitGroupNonUniform() 371 Impl::Group::BinaryOperation<SIMD::UInt>( in EmitGroupNonUniform() 377 Impl::Group::BinaryOperation<SIMD::UInt>( in EmitGroupNonUniform() 383 Impl::Group::BinaryOperation<SIMD::UInt>( in EmitGroupNonUniform() 389 Impl::Group::BinaryOperation<SIMD::Int>( in EmitGroupNonUniform() 395 Impl::Group::BinaryOperation<SIMD::UInt>( in EmitGroupNonUniform() [all …]
|