Home
last modified time | relevance | path

Searched refs:SelectorType (Results 1 – 5 of 5) sorted by relevance

/third_party/css-what/src/__fixtures__/
Dtests.ts1 import { Selector, SelectorType, AttributeAction, IgnoreCaseMode } from "..";
14 type: SelectorType.Tag,
27 type: SelectorType.Universal,
41 type: SelectorType.Tag,
46 type: SelectorType.Descendant,
49 type: SelectorType.Tag,
62 type: SelectorType.Tag,
67 type: SelectorType.Descendant,
70 type: SelectorType.Tag,
83 type: SelectorType.Tag,
[all …]
/third_party/css-what/src/
Dtypes.ts9 export enum SelectorType { enum
40 type: SelectorType.Attribute;
51 type: SelectorType.Pseudo;
57 type: SelectorType.PseudoElement;
63 type: SelectorType.Tag;
69 type: SelectorType.Universal;
89 | SelectorType.Adjacent
90 | SelectorType.Child
91 | SelectorType.Descendant
92 | SelectorType.Parent
[all …]
Dstringify.ts1 import { Selector, SelectorType, AttributeAction } from "./types";
48 case SelectorType.Child:
50 case SelectorType.Parent:
52 case SelectorType.Sibling:
54 case SelectorType.Adjacent:
56 case SelectorType.Descendant:
58 case SelectorType.ColumnCombinator:
60 case SelectorType.Universal:
68 case SelectorType.Tag:
71 case SelectorType.PseudoElement:
[all …]
Dparse.ts3 SelectorType,
79 case SelectorType.Adjacent:
80 case SelectorType.Child:
81 case SelectorType.Descendant:
82 case SelectorType.Parent:
83 case SelectorType.Sibling:
84 case SelectorType.ColumnCombinator:
226 tokens[tokens.length - 1].type === SelectorType.Descendant
239 type: SelectorType.Attribute,
258 tokens[tokens.length - 1].type === SelectorType.Descendant
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DTargetPassConfig.cpp765 enum class SelectorType { SelectionDAG, FastISel, GlobalISel }; in addCoreISelPasses() enum
766 SelectorType Selector; in addCoreISelPasses()
769 Selector = SelectorType::FastISel; in addCoreISelPasses()
773 Selector = SelectorType::GlobalISel; in addCoreISelPasses()
775 Selector = SelectorType::FastISel; in addCoreISelPasses()
777 Selector = SelectorType::SelectionDAG; in addCoreISelPasses()
780 if (Selector == SelectorType::FastISel) { in addCoreISelPasses()
783 } else if (Selector == SelectorType::GlobalISel) { in addCoreISelPasses()
789 if (Selector == SelectorType::GlobalISel) { in addCoreISelPasses()