/third_party/python/Lib/test/ |
H A D | test_xml_dom_minicompat.py | 35 node_list = EmptyNodeList() + NodeList() 36 self.assertEqual(node_list, NodeList()) 44 """Tests for the NodeList class.""" 47 # Test items access on a NodeList. 48 # First, use an empty NodeList. 49 node_list = NodeList() 59 # Now, use a NodeList with items. 70 node_list = NodeList([1, 2]) 78 node_list = NodeList([3, 4]) + [1, 2] 79 self.assertEqual(node_list, NodeList([ [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
H A D | DDG.cpp | 130 : 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/ |
H A D | RBTMXImporter.java | 92 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()
|
H A D | RBxliffImporter.java | 105 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() 237 //NodeList group_list = tu_elem.getElementsByTagName("group"); 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_lis in parseTranslationUnit() [all...] |
H A D | RBReporterScanner.java | 103 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/skia/third_party/externals/swiftshader/third_party/subzero/src/ |
H A D | IceCfgNode.h | 71 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
|
H A D | IceLoopAnalyzer.cpp | 61 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()
|
H A D | IceLiveness.cpp | 38 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()
|
H A D | IceLiveness.h | 68 void initPhiEdgeSplits(NodeList::const_iterator FirstNode, 127 void initInternal(NodeList::const_iterator FirstNode,
|
H A D | IceCfg.h | 95 const NodeList &getNodes() const { return Nodes; } in getNodes() 98 void swapNodes(NodeList &NewNodes); 310 NodeList Nodes; /// linearized node list; Entry should be first
|
H A D | IceInst.h | 126 virtual NodeList getTerminatorEdges() const { 132 return NodeList(); 405 NodeList getTerminatorEdges() const override; 720 NodeList getTerminatorEdges() const override { return NodeList(); } 801 NodeList getTerminatorEdges() const override; 831 NodeList getTerminatorEdges() const override { return NodeList(); }
|
/third_party/python/Lib/xml/dom/ |
H A D | minicompat.py | 11 # NodeList -- lightest possible NodeList implementation 13 # EmptyNodeList -- lightest possible NodeList that is guaranteed to 43 __all__ = ["NodeList", "EmptyNodeList", "StringTypes", "defproperty"] 50 class NodeList(list): class 65 doc="The number of nodes in the NodeList.") 78 NL = NodeList() 83 NL = NodeList() 98 doc="The number of nodes in the NodeList.")
|
H A D | minidom.py | 268 self.childNodes = NodeList() 342 self.childNodes = NodeList() 363 self.childNodes = NodeList() 687 self.childNodes = NodeList() 862 return _get_elements_by_tagName_helper(self, name, NodeList()) 866 self, namespaceURI, localName, NodeList()) 1380 self.childNodes = NodeList() 1575 self.childNodes = NodeList() 1800 return _get_elements_by_tagName_helper(self, name, NodeList()) 1804 self, namespaceURI, localName, NodeList()) [all...] |
/third_party/typescript/tests/baselines/reference/ |
H A D | controlFlowBinaryOrExpression.js | 12 export interface NodeList { 20 declare function isNodeList(sourceObj: any): sourceObj is NodeList; 23 type EventTargetLike = {a: string} | HTMLCollection | NodeList;
|
/third_party/libphonenumber/tools/java/common/src/com/google/i18n/phonenumbers/ |
H A D | BuildMetadataFromXml.java | 40 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 possibleLength in populatePossibleLengthSets() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/ |
H A D | DDG.h | 182 NodeList = N.NodeList; in operator =() 188 NodeList = std::move(N.NodeList); in operator =() 194 assert(!NodeList.empty() && "Node list is empty."); in getNodes() 195 return NodeList; in getNodes() 209 PiNodeList NodeList; member in llvm::PiBlockDDGNode
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/ |
H A D | AMDGPUAnnotateKernelFeatures.cpp | 48 SmallVector<CallGraphNode*, 8> NodeList; member in __anon24416::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/Target/Hexagon/ |
H A D | HexagonOptAddrMode.cpp | 95 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 in isSafeToExtLR() [all...] |
H A D | RDFLiveness.cpp | 106 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 D in computePhiInfo() [all...] |
H A D | RDFLiveness.h | 58 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()
|
H A D | RDFGraph.cpp | 174 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 DataFlowGrap [all...] |
H A D | RDFGraph.h | 512 using NodeList = SmallVector<NodeAddr<NodeBase *>, 4>; 605 NodeList members(const DataFlowGraph &G) const; 607 NodeList members_if(Predicate P, const DataFlowGraph &G) const; 765 NodeList getRelatedRefs(NodeAddr<InstrNode*> IA, 913 NodeList CodeNode::members_if(Predicate P, const DataFlowGraph &G) const { in members_if() 914 NodeList MM; in members_if() 948 raw_ostream &operator<<(raw_ostream &OS, const Print<NodeList> &P);
|
H A D | HexagonRDFOpt.cpp | 200 NodeList Refs = IA.Addr->members(DFG); in removeOperand() 256 NodeList Defs; in rewrite()
|
/third_party/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/coverage/ |
H A D | JacocoReportCheck.java | 30 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/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/localeconverter/ |
H A D | XLIFF2ICUConverter.java | 29 import org.w3c.dom.NodeList; 421 NodeList nlist = doc.getElementsByTagName(FILES); in createRB() 432 NodeList sourceList = doc.getElementsByTagName(SOURCE); in createRB() 434 NodeList targetList = doc.getElementsByTagName(TARGET); in createRB() 479 NodeList altTrans = doc.getElementsByTagName(ALTTRANS); in createRB() 485 NodeList list = doc.getElementsByTagName(GROUPS); in createRB() 543 NodeList list = doc.getElementsByTagName(FILE); in getLanguageName() 550 NodeList groupList = doc.getElementsByTagName(GROUPS); in getLanguageName() 579 private String checkLangAttribute(NodeList list, String origName){ in checkLangAttribute()
|