/external/chromium_org/third_party/WebKit/Source/core/dom/ |
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());
|
StaticNodeList.h | 32 #include "core/dom/NodeList.h" 44 class StaticNodeTypeList FINAL : public NodeList { 75 RefPtrWillBeRawPtr<StaticNodeTypeList<NodeType> > nodeList = adoptRefWillBeNoop(new StaticNodeTypeList<NodeType>); 76 nodeList->m_nodes.swap(nodes); 77 v8::Isolate::GetCurrent()->AdjustAmountOfExternalAllocatedMemory(nodeList->AllocationSize()); 78 return nodeList.release(); 105 NodeList::trace(visitor);
|
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());
|
MutationRecord.cpp | 36 #include "core/dom/NodeList.h" 103 static StaticNodeList* lazilyInitializeEmptyNodeList(RefPtrWillBeMember<StaticNodeList>& nodeList) 105 if (!nodeList) 106 nodeList = StaticNodeList::createEmpty(); 107 return nodeList.get();
|
/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/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...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/generators/ |
TestVersionTracker.java | 47 import org.w3c.dom.NodeList; 239 NodeList nodeList = doc.getElementsByTagName("import"); 240 if (nodeList == null || nodeList.getLength() == 0) { 243 for (int i = 0; i < nodeList.getLength(); i++) { 244 Node node = nodeList.item(i); 304 NodeList nodeList = doc.getElementsByTagName("target"); 305 if (nodeList == null || nodeList.getLength() == 0) [all...] |
TestResultsGenerator.java | 35 import org.w3c.dom.NodeList; 312 NodeList nodeList = aDocument.getElementsByTagName("problem"); 313 if (nodeList == null ||nodeList.getLength()==0) 316 int length = nodeList.getLength(); 318 Node problemNode = nodeList.item(i); [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/ |
UnpackUpdateJars.java | 30 import org.w3c.dom.NodeList; 180 NodeList nodeList=aDocument.getElementsByTagName("plugin"); 181 if (nodeList==null) 184 for (int i = 0; i < nodeList.getLength(); i++) { 185 Node pluginNode = nodeList.item(i);
|
/cts/common/host-side/xml-plan-generator/src/com/android/compatibility/common/xmlgenerator/ |
XmlPlanGenerator.java | 23 import org.w3c.dom.NodeList; 202 NodeList nodeList = parent.getElementsByTagName(elem); 203 if (nodeList.getLength() > 0) { 204 Element element = (Element) nodeList.item(0);
|
/cts/tools/cts-xml-generator/src/com/android/cts/xmlgenerator/ |
CtsXmlGenerator.java | 20 import org.w3c.dom.NodeList; 148 NodeList nodeList = parentElement.getElementsByTagName(elementName); 149 if (nodeList.getLength() > 0) { 150 Element element = (Element) nodeList.item(0);
|
/external/chromium_org/third_party/icu/source/tools/ctestfw/ |
ctest.c | 78 const TestNode** nodeList, 322 * @param nodeList an array of MAXTESTS depth that's used for keeping track of where we are. nodeList[depth] points to the 'parent' at depth depth. 327 const TestNode** nodeList, 346 nodeList[depth++] = root; 352 strcat(pathToFunction, nodeList[i]->name); 355 strcat(pathToFunction, nodeList[i]->name); /* including 'root' */ 438 log_testinfo("---%s%c\n",pathToFunction, nodeList[i]->test?' ':TEST_SEPARATOR ); 452 iterateTestsWithLevel ( root->child, depth, nodeList, mode ); 484 iterateTestsWithLevel ( root->sibling, depth, nodeList, mode ) [all...] |
/external/icu/icu4c/source/tools/ctestfw/ |
ctest.c | 78 const TestNode** nodeList, 322 * @param nodeList an array of MAXTESTS depth that's used for keeping track of where we are. nodeList[depth] points to the 'parent' at depth depth. 327 const TestNode** nodeList, 346 nodeList[depth++] = root; 352 strcat(pathToFunction, nodeList[i]->name); 355 strcat(pathToFunction, nodeList[i]->name); /* including 'root' */ 438 log_testinfo("---%s%c\n",pathToFunction, nodeList[i]->test?' ':TEST_SEPARATOR ); 452 iterateTestsWithLevel ( root->child, depth, nodeList, mode ); 484 iterateTestsWithLevel ( root->sibling, depth, nodeList, mode ) [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/ |
nv50_ir_graph.cpp | 402 std::list<Node *> nodeList; 412 nodeList.push_front(t); 419 for (std::list<Node *>::iterator n = nodeList.begin(); 420 n != nodeList.end(); ++n) { 425 n = nodeList.erase(n);
|
/external/mesa3d/src/gallium/drivers/nv50/codegen/ |
nv50_ir_graph.cpp | 402 std::list<Node *> nodeList; 412 nodeList.push_front(t); 419 for (std::list<Node *>::iterator n = nodeList.begin(); 420 n != nodeList.end(); ++n) { 425 n = nodeList.erase(n);
|
/external/apache-xml/src/main/java/org/apache/xpath/ |
NodeSetDTM.java | 32 import org.w3c.dom.NodeList; 38 * NodeList, or NodeIterator. However, in order for it to 39 * act as a NodeVector or NodeList, it's required that 53 * <p>Thought: Should NodeSetDTM really implement NodeList and NodeIterator, 61 implements /* NodeList, NodeIterator, */ DTMIterator, 67 * Create an empty nodelist. 90 // * given nodelist into it. 92 // * @param nodelist List of Nodes to be made members of the new set. 94 // public NodeSetDTM(NodeList nodelist) [all...] |
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/ |
DTMNodeProxy.java | 41 import org.w3c.dom.NodeList; 363 public final NodeList getChildNodes() 743 public final NodeList getElementsByTagName(String tagname) 752 NodeList nodeList = retNode.getChildNodes(); 753 for (int i = 0; i < nodeList.getLength(); i++) 755 traverseChildren(listVector, nodeList.item(i), tagname, 769 return (NodeList) nodeSet; 800 NodeList nodeList = tempNode.getChildNodes() [all...] |
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/ |
command_store.js | 105 * nodeList: (undefined|string), 122 * nodeList: The id from the map above if this command is used for 363 nodeList: 'formField', 366 'showHeadingsList': {announce: false, nodeList: 'heading', 370 'showLandmarksList': {announce: false, nodeList: 'landmark', 374 'showLinksList': {announce: false, nodeList: 'link', 378 'showTablesList': {announce: false, nodeList: 'table',
|
/external/deqp/modules/glshared/ |
glsShaderLibrary.cpp | [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/ |
buildTools.jar | |
/external/chromium_org/third_party/WebKit/Source/core/xml/ |
XSLTUnicodeSort.cpp | 68 list = ctxt->nodeList;
|
/external/chromium_org/ui/accessibility/extensions/caretbrowsing/ |
caretbrowsing.js | 363 * @param {Array.<Node>} nodeList An array of nodes to focus. 366 CaretBrowsing.setFocusToFirstFocusable = function(nodeList) { 367 for (var i = 0; i < nodeList.length; i++) { 368 if (CaretBrowsing.setFocusToNode(nodeList[i])) { [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/93/1/.cp/ |
convert.jar | |
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/injected/ |
user_commands.js | 684 if (!cmdStruct.nodeList) { 688 cvox.CommandStore.NODE_INFO_MAP[cmdStruct.nodeList];
|
/external/chromium_org/third_party/readability/js/ |
readability.js | 709 * Fix for odd IE7 Crash where siblingNode does not exist even though this should be a live nodeList. [all...] |