Home
last modified time | relevance | path

Searched refs:Group (Results 1 - 25 of 221) sorted by relevance

123456789

/third_party/skia/modules/sksg/include/
H A DSkSGGroup.h20 class Group : public RenderNode { class
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() overrid
[all...]
/third_party/skia/modules/sksg/src/
H A DSkSGGroup.cpp16 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
[all...]
/third_party/rust/crates/syn/tests/
H A Dtest_item.rs6 use proc_macro2::{Delimiter, Group, Ident, Span, TokenStream, TokenTree};
14 TokenTree::Group(Group::new(Delimiter::None, quote! { #[test] })), in test_macro_variable_attr()
17 TokenTree::Group(Group::new(Delimiter::Parenthesis, TokenStream::new())), in test_macro_variable_attr()
18 TokenTree::Group(Group::new(Delimiter::Brace, TokenStream::new())), in test_macro_variable_attr()
126 TokenTree::Group(Group::new(Delimiter::None, quote!(Trait))), in test_macro_variable_impl()
128 TokenTree::Group(Grou in test_macro_variable_impl()
[all...]
H A Dtest_parse_buffer.rs3 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(Grou in trailing_empty_none_group()
[all...]
H A Dtest_visibility.rs6 use proc_macro2::{Delimiter, Group, Ident, Punct, Spacing, Span, TokenStream, TokenTree};
108 TokenTree::Group(Group::new( in test_empty_group_vis()
111 TokenTree::Group(Group::new(Delimiter::None, TokenStream::new())), in test_empty_group_vis()
112 TokenTree::Group(Group::new( in test_empty_group_vis()
120 TokenTree::Group(Group::new(Delimiter::Parenthesis, TokenStream::new())), in test_empty_group_vis()
H A Dtest_ty.rs6 use proc_macro2::{Delimiter, Group, Ident, Punct, Spacing, Span, TokenStream, TokenTree};
25 TokenTree::Group(Group::new(Delimiter::None, quote! { ty })), in test_macro_variable_type()
58 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()
111 GenericArgument::Type(Type::Group { in test_group_angle_brackets()
148 TokenTree::Group(Group in test_group_colons()
[all...]
H A Dtest_stmt.rs10 use proc_macro2::{Delimiter, Group, Ident, Span, TokenStream, TokenTree};
61 let tokens = TokenStream::from_iter(vec![TokenTree::Group(Group::new( in test_none_group()
67 TokenTree::Group(Group::new(Delimiter::Parenthesis, TokenStream::new())), in test_none_group()
68 TokenTree::Group(Group::new(Delimiter::Brace, TokenStream::new())), in test_none_group()
86 let tokens = Group::new(Delimiter::None, quote!(let None = None)).to_token_stream(); in test_none_group()
91 Expr::Group { in test_none_group()
H A Dtest_expr.rs6 use proc_macro2::{Delimiter, Group};
104 let path = Group::new(Delimiter::None, quote!(f)); in test_macro_variable_func()
109 func: Expr::Group { in test_macro_variable_func()
123 let path = Group::new(Delimiter::None, quote! { #[inside] f }); in test_macro_variable_func()
140 func: Expr::Group { in test_macro_variable_func()
170 let mac = Group::new(Delimiter::None, quote!(m)); in test_macro_variable_macro()
193 let s = Group::new(Delimiter::None, quote! { S }); in test_macro_variable_struct()
212 let inner = Group::new(Delimiter::None, quote!(&self)); in test_macro_variable_unary()
216 receiver: Expr::Group { in test_macro_variable_unary()
237 let expr = Group in test_macro_variable_match_arm()
[all...]
/third_party/rust/crates/proc-macro2/tests/
H A Dtest_fmt.rs3 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/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/
H A DX86CmovConversion.cpp145 /// \param Group Consecutive CMOV instructions to be converted into branch.
146 void convertCmovInstsToBranches(SmallVectorImpl<MachineInstr *> &Group) const;
186 for (auto &Group : AllCmovGroups) { in runOnMachineFunction()
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()
248 convertCmovInstsToBranches(Group); in runOnMachineFunction()
276 // Current processed CMOV-Group. in collectCmovCandidates()
277 CmovGroup Group; in collectCmovCandidates() local
279 Group in collectCmovCandidates()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MCA/HardwareUnits/
H A DLSUnit.h80 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 in isWaiting()
274 const MemoryGroup &Group = getGroup(GroupID); hasDependentUsers() local
[all...]
/third_party/rust/crates/syn/src/
H A Dbuffer.rs10 use proc_macro2::{Delimiter, Group, Ident, Literal, Punct, Spacing, Span, TokenStream, TokenTree};
18 // Group entries contain the offset to the matching End entry.
19 Group(Group, usize),
43 TokenTree::Group(group) => { in recursive_new()
50 entries[group_start_index] = Entry::Group(group, group_end_offset); in recursive_new()
154 /// If the cursor is looking at an `Entry::Group`, the bumped cursor will
166 while let Entry::Group(group, _) = self.entry() { in ignore_none()
182 /// If the cursor is pointing at a `Group` with the given delimiter, returns
192 if let Entry::Group(grou in group()
[all...]
H A Dtoken.rs209 impl_token!("group token" proc_macro2::Group);
619 pub struct Group { structure names
625 pub fn Group<S: IntoSpans<Span>>(span: S) -> Group { in Group() functions
626 Group { in Group()
631 impl std::default::Default for Group {
633 Group { in default()
641 impl Copy for Group {}
645 impl Clone for Group {
653 impl Debug for Group {
677 impl Group { global() impls
[all...]
/third_party/skia/third_party/externals/swiftshader/tests/regres/testlist/
H A Dtestlist.go43 // Group is a list of tests to be run for a single API.
44 type Group struct { type
51 // Load loads the test list file and appends all tests to the Group.
52 func (g *Group) Load() error {
56 func (g *Group) LoadFile(file string) error {
76 // Filter returns a new Group that contains only tests that match the predicate.
77 func (g Group) Filter(pred func(string) bool) Group {
78 out := Group{
91 // Limit returns a new Group tha
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MCA/HardwareUnits/
H A DLSUnit.cpp57 const MemoryGroup &Group = *GroupIt.second; in dump() local
58 dbgs() << "[LSUnit] Group (" << GroupIt.first << "): " in dump()
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 in dispatch()
[all...]
/third_party/rust/crates/proc-macro2/src/
H A Dwrapper.rs161 TokenTree::Group(tt) => tt.inner.unwrap_nightly().into(), in into_compiler_token()
336 proc_macro::TokenTree::Group(tt) => crate::Group::_new(Group::Compiler(tt)).into(), in next()
547 pub(crate) enum Group {
548 Compiler(proc_macro::Group),
549 Fallback(fallback::Group),
552 impl Group { impls
562 Group::Compiler(proc_macro::Group in new()
[all...]
H A Dlib.rs299 /// possibly `TokenTree::Group`s with `Delimiter::None` delimiters and negative
550 Group(Group),
564 TokenTree::Group(t) => t.span(), in span()
573 /// Note that if this token is a `Group` then this method will not configure
578 TokenTree::Group(t) => t.set_span(span), in set_span()
586 impl From<Group> for TokenTree {
587 fn from(g: Group) -> Self { in from()
588 TokenTree::Group(g) in from()
612 /// possibly `TokenTree::Group`
649 pub struct Group { global() structure names
672 impl Group { global() impls
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/
H A DXCOFFObjectWriter.cpp126 for (auto *Group : Groups) in reset()
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()
368 for (const auto &Csect : *Group) { in writeSections()
563 for (const auto *Group : Section->Groups) { in writeSymbolTable()
564 if (Group->empty()) in writeSymbolTable()
568 for (const auto &Csect : *Group) { in writeSymbolTable()
[all...]
H A DMCContext.cpp316 if (const MCSymbol *Group = Section->getGroup()) in renameELFSection()
317 GroupName = Group->getName(); in renameELFSection()
333 const MCSymbolELF *Group, in createELFSectionImpl()
355 Section, Type, Flags, K, EntrySize, Group, UniqueID, R, Associated); in createELFSectionImpl()
367 const MCSymbolELF *Group, in createELFRelSection()
375 I->getKey(), Type, Flags, SectionKind::getReadOnly(), EntrySize, Group, in createELFRelSection()
388 const Twine &Group, unsigned UniqueID, in getELFSection()
391 if (!Group.isTriviallyEmpty() && !Group.str().empty()) in getELFSection()
392 GroupSym = cast<MCSymbolELF>(getOrCreateSymbol(Group)); in getELFSection()
330 createELFSectionImpl(StringRef Section, unsigned Type, unsigned Flags, SectionKind K, unsigned EntrySize, const MCSymbolELF *Group, unsigned UniqueID, const MCSymbolELF *Associated) createELFSectionImpl() argument
365 createELFRelSection(const Twine &Name, unsigned Type, unsigned Flags, unsigned EntrySize, const MCSymbolELF *Group, const MCSectionELF *RelInfoSection) createELFRelSection() argument
386 getELFSection(const Twine &Section, unsigned Type, unsigned Flags, unsigned EntrySize, const Twine &Group, unsigned UniqueID, const MCSymbolELF *Associated) getELFSection() argument
403 StringRef Group = ""; getELFSection() local
429 createELFGroupSection(const MCSymbolELF *Group) createELFGroupSection() argument
496 getWasmSection(const Twine &Section, SectionKind K, const Twine &Group, unsigned UniqueID, const char *BeginSymName) getWasmSection() argument
512 StringRef Group = ""; getWasmSection() local
[all...]
/third_party/node/deps/v8/src/tracing/
H A Dtrace-categories.h35 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/lib/Analysis/
H A DVectorUtils.cpp640 const InterleaveGroup<Instruction> &Group) { in createBitMaskForGaps()
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 in analyzeInterleaving()
639 createBitMaskForGaps(IRBuilder< &Builder, unsigned VF, const InterleaveGroup<Instruction> &Group) createBitMaskForGaps() argument
1133 InterleaveGroup<Instruction> *Group = I.second; invalidateGroupsRequiringScalarEpilogue() local
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MC/
H A DMCSectionELF.h45 const MCSymbolELF *Group; member in llvm::final
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/
H A DSpirvShaderGroup.cpp21 struct SpirvShader::Impl::Group struct in sw::SpirvShader::Impl
72 UNSUPPORTED("EmitGroupNonUniform op: %s Group operation: %d", in BinaryOperation()
86 ASSERT_MSG(scope == spv::ScopeSubgroup, "Scope for Non Uniform Group Operations must be Subgroup for Vulkan 1.1"); in EmitGroupNonUniform()
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 in EmitGroupNonUniform()
[all...]
/third_party/skia/third_party/externals/abseil-cpp/absl/container/internal/
H A Draw_hash_set_test.cc86 if (capacity + 1 < Group::kWidth) { in TEST()
97 for (size_t capacity = Group::kWidth - 1; capacity < 10000; in TEST()
137 // See the non-SSE version of Group for details on what this math is for. in TEST()
170 TEST(Group, EmptyGroup) { in TEST()
171 for (h2_t h = 0; h != 128; ++h) EXPECT_FALSE(Group{EmptyGroup()}.Match(h)); in TEST()
174 TEST(Group, Match) { in TEST()
175 if (Group::kWidth == 16) { in TEST()
180 EXPECT_THAT(Group{group}.Match(0), ElementsAre()); in TEST()
181 EXPECT_THAT(Group{group}.Match(1), ElementsAre(1, 11, 12, 13, 14, 15)); in TEST()
182 EXPECT_THAT(Group{grou in TEST()
[all...]
/third_party/skia/third_party/externals/angle2/src/libANGLE/
H A DDebug.h116 struct Group struct in gl::Debug
118 Group();
119 ~Group();
120 Group(const Group &other);
135 std::vector<Group> mGroups;

Completed in 15 milliseconds

123456789