Home
last modified time | relevance | path

Searched refs:ChildType (Results 1 – 10 of 10) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/PDB/
DIPDBEnumChildren.h19 template <typename ChildType> class IPDBEnumChildren {
21 using ChildTypePtr = std::unique_ptr<ChildType>;
22 using MyType = IPDBEnumChildren<ChildType>;
32 template <typename ChildType>
33 class NullEnumerator : public IPDBEnumChildren<ChildType> {
35 virtual std::unique_ptr<ChildType>
39 virtual std::unique_ptr<ChildType> getNext() override { in getNext()
DConcreteSymbolEnumerator.h22 template <typename ChildType>
23 class ConcreteSymbolEnumerator : public IPDBEnumChildren<ChildType> {
34 std::unique_ptr<ChildType> getChildAtIndex(uint32_t Index) const override { in getChildAtIndex()
36 return unique_dyn_cast_or_null<ChildType>(Child); in getChildAtIndex()
39 std::unique_ptr<ChildType> getNext() override { in getNext()
40 return unique_dyn_cast_or_null<ChildType>(Enumerator->getNext()); in getNext()
DPDBSymbolExe.h38 void dumpChildren(raw_ostream &OS, StringRef Label, PDB_SymType ChildType,
/third_party/skia/src/core/
DSkRuntimeEffect.cpp48 using ChildType = SkRuntimeEffect::ChildType; typedef
134 static ChildType child_type(const SkSL::Type& type) { in child_type()
136 case SkSL::Type::TypeKind::kBlender: return ChildType::kBlender; in child_type()
137 case SkSL::Type::TypeKind::kColorFilter: return ChildType::kColorFilter; in child_type()
138 case SkSL::Type::TypeKind::kShader: return ChildType::kShader; in child_type()
152 skstd::optional<ChildType> effectType = effectPtrs[i].type(); in verify_child_effects()
172 if (child.type == ChildType::kShader) { in read_child_effects()
174 } else if (child.type == ChildType::kColorFilter) { in read_child_effects()
176 } else if (child.type == ChildType::kBlender) { in read_child_effects()
572 return c.type == ChildType::kColorFilter; in Make()
[all …]
/third_party/libxml2/result/schemas/
Dissue491_0_0.err1 …e491_0.xsd:8: element complexType: Schemas parser error : complex type 'ChildType': The content ty…
/third_party/skia/include/effects/
DSkRuntimeEffect.h82 enum class ChildType { enum
90 ChildType type;
174 skstd::optional<ChildType> type() const;
/third_party/flutter/flutter/packages/flutter/lib/src/rendering/
Dobject.dart2829 mixin RenderObjectWithChildMixin<ChildType extends RenderObject> on RenderObject {
2839 if (child is! ChildType) {
2842 'A $runtimeType expected a child of type $ChildType but received a '
2853 'The $runtimeType that expected a $ChildType child was created by',
2871 ChildType _child;
2873 ChildType get child => _child;
2874 set child(ChildType value) {
2915 mixin ContainerParentDataMixin<ChildType extends RenderObject> on ParentData {
2917 ChildType previousSibling;
2919 ChildType nextSibling;
[all …]
Dbox.dart836 … class ContainerBoxParentData<ChildType extends RenderObject> extends BoxParentData with Container…
2421 …ltsMixin<ChildType extends RenderBox, ParentDataType extends ContainerBoxParentData<ChildType>> im…
2428 ChildType child = firstChild;
2446 ChildType child = firstChild;
2473 ChildType child = lastChild;
2498 ChildType child = firstChild;
2511 List<ChildType> getChildrenAsList() {
2512 final List<ChildType> result = <ChildType>[];
/third_party/flutter/flutter/packages/flutter/lib/src/widgets/
Dlayout_builder.dart160 …lder<ConstraintType extends Constraints, ChildType extends RenderObject> on RenderObjectWithChildM…
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/BPF/
DBPFAbstractMemberAccess.cpp360 const MDNode *ChildType) { in IsValidAIChain() argument
361 if (!ChildType) in IsValidAIChain()
365 const DIType *CType = stripQualifiers(cast<DIType>(ChildType)); in IsValidAIChain()