/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/ |
transformer.py | 179 def file_input(self, nodelist): 180 doc = self.get_docstring(nodelist, symbol.file_input) 186 for node in nodelist[i:]: 191 def eval_input(self, nodelist): 194 return Expression(self.com_node(nodelist[0])) 196 def decorator_name(self, nodelist): 197 listlen = len(nodelist) 200 item = self.atom_name(nodelist) 203 assert nodelist[i][0] == token.DOT 204 assert nodelist[i + 1][0] == token.NAM [all...] |
ast.py | 77 nodelist = [] 78 nodelist.extend(flatten_nodes(self.nodes)) 79 return tuple(nodelist) 109 nodelist = [] 110 nodelist.extend(flatten_nodes(self.nodes)) 111 return tuple(nodelist) 140 nodelist = [] 141 nodelist.extend(flatten_nodes(self.nodes)) 142 return tuple(nodelist) 160 nodelist = [ [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/compiler/ |
transformer.py | 179 def file_input(self, nodelist): 180 doc = self.get_docstring(nodelist, symbol.file_input) 186 for node in nodelist[i:]: 191 def eval_input(self, nodelist): 194 return Expression(self.com_node(nodelist[0])) 196 def decorator_name(self, nodelist): 197 listlen = len(nodelist) 200 item = self.atom_name(nodelist) 203 assert nodelist[i][0] == token.DOT 204 assert nodelist[i + 1][0] == token.NAM [all...] |
ast.py | 77 nodelist = [] 78 nodelist.extend(flatten_nodes(self.nodes)) 79 return tuple(nodelist) 109 nodelist = [] 110 nodelist.extend(flatten_nodes(self.nodes)) 111 return tuple(nodelist) 140 nodelist = [] 141 nodelist.extend(flatten_nodes(self.nodes)) 142 return tuple(nodelist) 160 nodelist = [ [all...] |
/external/apache-xml/src/main/java/org/apache/xpath/objects/ |
XNodeSetForDOM.java | 28 import org.w3c.dom.NodeList; 33 * Node object, NodeList object, or NodeIterator. 61 public XNodeSetForDOM(NodeList nodeList, XPathContext xctxt) 64 m_origObj = nodeList; 69 // m_obj=new org.apache.xpath.NodeSetDTM(nodeList, xctxt); 70 org.apache.xpath.NodeSetDTM nsdtm=new org.apache.xpath.NodeSetDTM(nodeList, xctxt); 101 * Cast result object to a nodelist. Always issues an error. 114 * Cast result object to a nodelist. Always issues an error. 120 public NodeList nodelist() throws javax.xml.transform.TransformerExceptio method in class:XNodeSetForDOM [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/dom/ |
minicompat.py | 7 # NodeList -- lightest possible NodeList implementation 9 # EmptyNodeList -- lightest possible NodeList that is guaranteed to 39 __all__ = ["NodeList", "EmptyNodeList", "StringTypes", "defproperty"] 51 class NodeList(list): 66 doc="The number of nodes in the NodeList.") 79 NL = NodeList() 84 NL = NodeList() 99 doc="The number of nodes in the NodeList.")
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/dom/ |
minicompat.py | 7 # NodeList -- lightest possible NodeList implementation 9 # EmptyNodeList -- lightest possible NodeList that is guaranteed to 39 __all__ = ["NodeList", "EmptyNodeList", "StringTypes", "defproperty"] 51 class NodeList(list): 66 doc="The number of nodes in the NodeList.") 79 NL = NodeList() 84 NL = NodeList() 99 doc="The number of nodes in the NodeList.")
|
/packages/apps/Mms/src/org/w3c/dom/smil/ |
ElementTimeContainer.java | 15 import org.w3c.dom.NodeList; 23 * A NodeList that contains all timed childrens of this node. If there are 24 * no timed children, the <code>Nodelist</code> is empty. An iterator 28 public NodeList getTimeChildren(); 36 public NodeList getActiveChildrenAt(float instant);
|
SMILLayoutElement.java | 14 * 2) ADD public NodeList getRegions(); 19 import org.w3c.dom.NodeList; 46 public NodeList getRegions();
|
/libcore/luni/src/main/java/java/util/prefs/ |
NodeSet.java | 6 import org.w3c.dom.NodeList; 8 class NodeSet implements NodeList {
|
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/parser/ |
Parser.java | 19 protected ArrayList nodeList; 42 this.nodeList = listNode; 46 this.stack.add(new State(numstate, this.nodeList)); 52 s.nodes = this.nodeList; 875 @SuppressWarnings("hiding") ArrayList nodeList = new ArrayList(); 883 nodeList.add(pcommandNode1); 884 return nodeList; 892 @SuppressWarnings("hiding") ArrayList nodeList = new ArrayList(); 897 nodeList.add(pcommandNode1); 898 return nodeList; [all...] |
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
NodeList.h | 34 class NodeList : public RefCountedWillBeGarbageCollectedFinalized<NodeList>, public ScriptWrappable { 37 virtual ~NodeList() { } 39 // DOM methods & attributes for NodeList 52 NodeList() { }
|
ChildNodeList.h | 29 #include "core/dom/NodeList.h" 35 class ChildNodeList FINAL : public NodeList { 73 DEFINE_TYPE_CASTS(ChildNodeList, NodeList, nodeList, nodeList->isChildNodeList(), nodeList.isChildNodeList());
|
EmptyNodeList.h | 35 #include "core/dom/NodeList.h" 40 class EmptyNodeList FINAL : public NodeList { 64 DEFINE_TYPE_CASTS(EmptyNodeList, NodeList, nodeList, nodeList->isEmptyNodeList(), nodeList.isEmptyNodeList());
|
/external/llvm/test/Transforms/ADCE/ |
2002-05-23-ZeroArgPHITest.ll | 11 define void @localize_local(%node_t* %nodelist) { 13 %nodelist.upgrd.1 = alloca %node_t* ; <%node_t**> [#uses=2] 14 store %node_t* %nodelist, %node_t** %nodelist.upgrd.1 18 %reg107 = load %node_t** %nodelist.upgrd.1 ; <%node_t*> [#uses=2]
|
/libcore/luni/src/main/java/org/w3c/dom/ |
NodeList.java | 16 * The <code>NodeList</code> interface provides the abstraction of an ordered 18 * is implemented. <code>NodeList</code> objects in the DOM are live. 19 * <p>The items in the <code>NodeList</code> are accessible via an integral 23 public interface NodeList { 30 * <code>NodeList</code>, or <code>null</code> if that is not a valid
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src_rss/org/eclipse/releng/generators/rss/ |
RSSFeedUpdateEntryTask.java | 38 import org.w3c.dom.NodeList; 215 NodeList nodelist = getNodeList(document, xpath); local 216 // Process the elements in the nodelist 217 if (nodelist != null && nodelist.getLength()>0) { 218 for (int i=0; i<nodelist.getLength(); i++) { 219 Node node = (Node)nodelist.item(i); 223 aNode = (Attr)nodelist.item(i); 228 aNode = (Element)nodelist.item(i) 278 NodeList nodelist = getNodeList(document, xpath.substring(0, xpath.lastIndexOf("\/"))); local 297 NodeList nodelist = null; local [all...] |
/libcore/luni/src/test/java/tests/org/w3c/dom/ |
ElementGetElementsByTagNameNS.java | 5 import org.w3c.dom.NodeList; 10 * The method getElementsByTagNameNS returns a NodeList of all the Elements with 14 * '*' and localName '*'. Verify if this returns a nodeList of 0 elements. 53 NodeList elementList; 67 NodeList elementList; 90 NodeList elementList;
|
GetElementsByTagNameNS.java | 28 import org.w3c.dom.NodeList; 36 * should return a new NodeList of all Elements that have a namespace when local 40 * with namespaceURI and localName as " ". Method should return a new NodeList 73 NodeList newList; 82 NodeList newList; 97 NodeList elementList; 129 NodeList elementList; 154 NodeList elementList; 161 NodeList elementList; 169 NodeList elementList [all...] |
DocumentGetElementsByTagnameNS.java | 6 import org.w3c.dom.NodeList; 12 * The method getElementsByTagNameNS returns a NodeList of all the Elements with 17 * values of namespaceURI=* and localName=*. This should return a nodeList of 1 64 NodeList childList; 78 NodeList childList; 90 NodeList childList; 98 NodeList childList; 108 NodeList childList;
|
/external/chromium_org/third_party/WebKit/PerformanceTests/Bindings/ |
get-elements-by-tag-name.html | 8 description: "This benchmark covers 'getElementsByTagName (not in document)', 'getElementsByTagName', 'getElementsByName (not in document)' and 'getElementsByName' in Dromaeo/dom-query.html, and other DOM methods that return a NodeList.",
|
/external/chromium_org/third_party/WebKit/Source/bindings/tests/idls/core/ |
TestSpecialOperations.idl | 10 [ImplementedAs=getItem] getter (Node or NodeList) namedItem(DOMString name);
|
/packages/apps/Mms/src/com/android/mms/dom/smil/ |
ElementSequentialTimeContainerImpl.java | 23 import org.w3c.dom.NodeList; 45 public NodeList getActiveChildrenAt(float instant) { 46 NodeList allChildren = this.getTimeChildren(); 61 NodeList children = getTimeChildren();
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/res/ |
StringArrayResourceLoader.java | 4 import org.w3c.dom.NodeList; 31 NodeList childNodes = (NodeList) itemXPath.evaluate(node, XPathConstants.NODESET);
|
XpathResourceXmlLoader.java | 5 import org.w3c.dom.NodeList; 23 NodeList nodes = (NodeList) stringsXPath.evaluate(document, XPathConstants.NODESET);
|