Home
last modified time | relevance | path

Searched refs:NodeList (Results 1 – 25 of 58) sorted by relevance

123

/third_party/python/Lib/test/
Dtest_xml_dom_minicompat.py35 node_list = EmptyNodeList() + NodeList()
36 self.assertEqual(node_list, NodeList())
49 node_list = NodeList()
70 node_list = NodeList([1, 2])
78 node_list = NodeList([3, 4]) + [1, 2]
79 self.assertEqual(node_list, NodeList([3, 4, 1, 2]))
82 node_list = [1, 2] + NodeList([3, 4])
83 self.assertEqual(node_list, NodeList([1, 2, 3, 4]))
90 node_list = NodeList()
106 node_list = NodeList()
[all …]
/third_party/typescript/tests/baselines/reference/
DcontrolFlowBinaryOrExpression.symbols25 export interface NodeList {
26 >NodeList : Symbol(NodeList, Decl(controlFlowBinaryOrExpression.ts, 8, 2))
29 >length : Symbol(NodeList.length, Decl(controlFlowBinaryOrExpression.ts, 10, 27))
39 declare function isNodeList(sourceObj: any): sourceObj is NodeList;
43 >NodeList : Symbol(NodeList, Decl(controlFlowBinaryOrExpression.ts, 8, 2))
51 type EventTargetLike = {a: string} | HTMLCollection | NodeList;
55 >NodeList : Symbol(NodeList, Decl(controlFlowBinaryOrExpression.ts, 8, 2))
89 >sourceObj.length : Symbol(NodeList.length, Decl(controlFlowBinaryOrExpression.ts, 10, 27))
91 >length : Symbol(NodeList.length, Decl(controlFlowBinaryOrExpression.ts, 10, 27))
DcontrolFlowBinaryOrExpression.types38 export interface NodeList {
48 declare function isNodeList(sourceObj: any): sourceObj is NodeList;
49 >isNodeList : (sourceObj: any) => sourceObj is NodeList
56 type EventTargetLike = {a: string} | HTMLCollection | NodeList;
67 >isNodeList : (sourceObj: any) => sourceObj is NodeList
72 >sourceObj : NodeList | HTMLCollection
83 >sourceObj : NodeList | HTMLCollection
90 >isNodeList : (sourceObj: any) => sourceObj is NodeList
98 >sourceObj : NodeList
DcontrolFlowBinaryOrExpression.js12 export interface NodeList {
20 declare function isNodeList(sourceObj: any): sourceObj is NodeList;
23 type EventTargetLike = {a: string} | HTMLCollection | NodeList;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DDDG.cpp130 : DDGNode(NodeKind::PiBlock), NodeList(List) { in PiBlockDDGNode()
131 assert(!NodeList.empty() && "pi-block node constructed with an empty list."); in PiBlockDDGNode()
135 : DDGNode(N), NodeList(N.NodeList) { in PiBlockDDGNode()
136 assert(getKind() == NodeKind::PiBlock && !NodeList.empty() && in PiBlockDDGNode()
141 : DDGNode(std::move(N)), NodeList(std::move(N.NodeList)) { in PiBlockDDGNode()
142 assert(getKind() == NodeKind::PiBlock && !NodeList.empty() && in PiBlockDDGNode()
146 PiBlockDDGNode::~PiBlockDDGNode() { NodeList.clear(); } in ~PiBlockDDGNode()
/third_party/icu/tools/unicodetools/com/ibm/rbm/
DRBxliffImporter.java105 NodeList header_note_list = ((Element)header).getElementsByTagName("note"); in importDoc()
116 NodeList prop_list = prop_group_list.getChildNodes(); in importDoc()
167 NodeList tu_list = body.getElementsByTagName("group"); in importDoc()
169 NodeList body_list = body.getChildNodes(); in importDoc()
228 NodeList notes_list = tu_elem.getElementsByTagName("note"); in importDoc()
245 NodeList trans_unit_list = tu_elem.getElementsByTagName("trans-unit"); in importDoc()
264 NodeList text_list = target_elem.getChildNodes(); in parseTranslationUnit()
295 NodeList note_list = note_elem.getChildNodes(); in parseTranslationUnit()
307 NodeList prop_list = prop_group_elem.getChildNodes(); in parseTranslationUnit()
DRBTMXImporter.java92 NodeList tu_list = body.getElementsByTagName("tu"); in importDoc()
101 NodeList prop_list = tu_elem.getElementsByTagName("prop"); in importDoc()
107 NodeList text_list = prop_elem.getChildNodes(); in importDoc()
116 NodeList tuv_list = tu_elem.getElementsByTagName("tuv"); in importDoc()
130 NodeList seg_list = tuv_elem.getElementsByTagName("seg"); in importDoc()
135 NodeList text_list = seg_elem.getChildNodes(); in importDoc()
215 NodeList tu_list = body.getElementsByTagName("tu"); in getEncodingsVector()
218 NodeList tuv_list = tu_elem.getElementsByTagName("tuv"); in getEncodingsVector()
DRBReporterScanner.java103 NodeList nl = root.getElementsByTagName("Scan"); in performScan()
111 NodeList rules_list = dir_elem.getElementsByTagName("Rules"); in performScan()
114 NodeList frules_list = rules_elem.getElementsByTagName("ApplyFileRule"); in performScan()
120 NodeList prules_list = frule_elem.getElementsByTagName("ApplyParseRule"); in performScan()
197 NodeList frules_list = root.getElementsByTagName("FileRules"); in getFileRules()
213 NodeList prules_list = root.getElementsByTagName("ParseRules"); in getParseRules()
/third_party/typescript/tests/cases/conformance/controlFlow/
DcontrolFlowBinaryOrExpression.ts11 export interface NodeList { interface
19 declare function isNodeList(sourceObj: any): sourceObj is NodeList;
22 type EventTargetLike = {a: string} | HTMLCollection | NodeList;
/third_party/libphonenumber/tools/java/common/src/com/google/i18n/phonenumbers/
DBuildMetadataFromXml.java40 import org.w3c.dom.NodeList;
116 NodeList territory = rootElement.getElementsByTagName("territory"); in buildPhoneMetadataCollection()
252 NodeList intlFormatPattern = numberFormatElement.getElementsByTagName(INTL_FORMAT); in loadInternationalFormat()
291 NodeList formatPattern = numberFormatElement.getElementsByTagName(FORMAT); in loadNationalFormat()
319 NodeList numberFormatElements = element.getElementsByTagName(NUMBER_FORMAT); in loadAvailableFormats()
369 NodeList leadingDigitsPatternNodes = numberFormatElement.getElementsByTagName(LEADING_DIGITS); in setLeadingDigitsPatterns()
444 NodeList phoneNumberDescList = countryElement.getElementsByTagName(numberType); in processPhoneNumberDescElement()
470 NodeList validPattern = element.getElementsByTagName(NATIONAL_NUMBER_PATTERN); in processPhoneNumberDescElement()
476 NodeList exampleNumber = element.getElementsByTagName(EXAMPLE_NUMBER); in processPhoneNumberDescElement()
596 NodeList possibleLengths = data.getElementsByTagName(POSSIBLE_LENGTHS); in populatePossibleLengthSets()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/
DIceCfgNode.h71 const NodeList &getInEdges() const { return InEdges; } in getInEdges()
72 const NodeList &getOutEdges() const { return OutEdges; } in getOutEdges()
146 NodeList InEdges; /// in no particular order
147 NodeList OutEdges; /// in no particular order
DIceLoopAnalyzer.cpp61 NodeList::const_iterator successorsEnd() const;
62 NodeList::const_iterator currentSuccessor() const { return Succ; } in currentSuccessor()
88 NodeList::const_iterator Succ;
128 NodeList::const_iterator LoopAnalyzer::LoopNode::successorsEnd() const { in successorsEnd()
145 const NodeList &Nodes = Func->getNodes(); in LoopAnalyzer()
DIceLiveness.cpp38 void Liveness::initInternal(NodeList::const_iterator FirstNode, in initInternal()
124 NodeList::const_iterator FirstNode = Func->getNodes().begin(); in init()
129 void Liveness::initPhiEdgeSplits(NodeList::const_iterator FirstNode, in initPhiEdgeSplits()
DIceCfg.h95 const NodeList &getNodes() const { return Nodes; } in getNodes()
98 void swapNodes(NodeList &NewNodes);
310 NodeList Nodes; /// linearized node list; Entry should be first
/third_party/flutter/skia/src/core/
DSkTLList.h39 typedef SkTInternalLList<Node> NodeList; typedef
51 typename NodeList::Iter iter; in ~SkTLList()
178 class Iter : private NodeList::Iter {
180 typedef typename NodeList::Iter INHERITED;
300 typename NodeList::Iter iter; in validate()
345 NodeList fList;
346 NodeList fFreeList;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/
DHexagonOptAddrMode.cpp95 const NodeList &UNodeList);
97 bool analyzeUses(unsigned DefR, const NodeList &UNodeList,
101 const NodeList &UNodeList);
103 unsigned LRExtReg, const NodeList &UNodeList);
104 void getAllRealUses(NodeAddr<StmtNode *> SN, NodeList &UNodeList);
105 bool allValidCandidates(NodeAddr<StmtNode *> SA, NodeList &UNodeList);
160 const NodeList &UNodeList) { in canRemoveAddasl()
213 NodeList &UNodeList) { in allValidCandidates()
245 NodeList &UNodeList) { in getAllRealUses()
286 const NodeList &UNodeList) { in isSafeToExtLR()
[all …]
DRDFLiveness.cpp106 NodeList Liveness::getAllReachingDefs(RegisterRef RefRR, in getAllReachingDefs()
109 NodeList RDefs; // Return value. in getAllReachingDefs()
235 NodeList Ds; in getAllReachingDefs()
288 NodeList RDs = getAllReachingDefs(RefRR, RefA, false, true, DefRRs); in getAllReachingDefsRecImpl()
325 NodeList Ins = BA.Addr->members(DFG); in getNearestAliasedRef()
339 NodeList Refs = I.Addr->members(DFG); in getNearestAliasedRef()
428 NodeList Phis; in computePhiInfo()
430 NodeList Blocks = FA.Addr->members(DFG); in computePhiInfo()
446 NodeList PhiRefs = PhiA.Addr->members(DFG); in computePhiInfo()
560 NodeList Ds = getAllReachingDefs(UR, PUA, true, false, NoRegs); in computePhiInfo()
[all …]
DRDFLiveness.h58 NodeList getAllReachingDefs(RegisterRef RefRR, NodeAddr<RefNode*> RefA,
61 NodeList getAllReachingDefs(NodeAddr<RefNode*> RefA) { in getAllReachingDefs()
66 NodeList getAllReachingDefs(RegisterRef RefRR, NodeAddr<RefNode*> RefA) { in getAllReachingDefs()
DRDFGraph.cpp174 raw_ostream &operator<< (raw_ostream &OS, const Print<NodeList> &P) { in operator <<()
198 PrintListV(const NodeList &L, const DataFlowGraph &G) : List(L), G(G) {} in PrintListV()
201 const NodeList &List;
527 NodeList CodeNode::members(const DataFlowGraph &G) const { in members()
581 NodeList Ms = members_if(EqBB, G); in findBlock()
884 NodeList Blocks = Func.Addr->members(*this); in build()
927 NodeList Preds; in build()
1052 NodeList Rel = getRelatedRefs(IA, DA); in pushClobbers()
1098 NodeList Rel = getRelatedRefs(IA, DA); in pushDefs()
1128 NodeList DataFlowGraph::getRelatedRefs(NodeAddr<InstrNode*> IA, in getRelatedRefs()
[all …]
/third_party/python/Lib/xml/dom/
Dminicompat.py50 class NodeList(list): class
78 NL = NodeList()
83 NL = NodeList()
/third_party/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/coverage/
DJacocoReportCheck.java30 import org.w3c.dom.NodeList;
153 NodeList nodes = doc.getElementsByTagName("report"); in parseReport()
160 NodeList packages = reportElement.getElementsByTagName("package"); in parseReport()
167 NodeList classes = pkgElement.getChildNodes(); in parseReport()
181 NodeList methods = clsNode.getChildNodes(); in parseReport()
216 NodeList counters = mtdNode.getChildNodes(); in parseReport()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/
DDDG.h182 NodeList = N.NodeList;
188 NodeList = std::move(N.NodeList);
194 assert(!NodeList.empty() && "Node list is empty."); in getNodes()
195 return NodeList; in getNodes()
209 PiNodeList NodeList;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
DAMDGPUAnnotateKernelFeatures.cpp48 SmallVector<CallGraphNode*, 8> NodeList; member in __anon2e3b46740111::AMDGPUAnnotateKernelFeatures
217 for (auto *Node : reverse(NodeList)) { in processUniformWorkGroupAttribute()
349 NodeList.push_back(I); in runOnSCC()
352 NodeList.clear(); in runOnSCC()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Demangle/
DMicrosoftDemangle.cpp37 struct NodeList { struct
39 NodeList *Next = nullptr; argument
1557 static NodeArrayNode *nodeListToNodeArray(ArenaAllocator &Arena, NodeList *Head, in nodeListToNodeArray()
1572 NodeList *Head = Arena.alloc<NodeList>(); in demangleNameScopeChain()
1579 NodeList *NewHead = Arena.alloc<NodeList>(); in demangleNameScopeChain()
2083 NodeList *Head = Arena.alloc<NodeList>(); in demangleArrayType()
2084 NodeList *Tail = Head; in demangleArrayType()
2095 Tail->Next = Arena.alloc<NodeList>(); in demangleArrayType()
2121 NodeList *Head = Arena.alloc<NodeList>(); in demangleFunctionParameterList()
2122 NodeList **Current = &Head; in demangleFunctionParameterList()
[all …]
/third_party/typescript/src/lib/
Ddom.iterable.d.ts23 interface NodeList { interface
33 … forEach(callbackfn: (value: Node, index: number, listObj: NodeList) => void, thisArg?: any): void;

123