HomeSort by relevance Sort by last modified time
    Searched refs:nodeList (Results 1 - 25 of 246) sorted by null

1 2 3 4 5 6 7 8 910

  /frameworks/base/apct-tests/perftests/utils/src/android/perftests/utils/
LayoutUtils.java 27 private static void recursivelyGather(ViewGroup currentNode, List<View> nodeList) {
28 nodeList.add(currentNode);
33 recursivelyGather((ViewGroup) view, nodeList);
35 nodeList.add(view);
52 public static void requestLayoutForAllNodes(List<View> nodeList) {
53 int count = nodeList.size();
55 nodeList.get(i).requestLayout();
  /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...]
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
hc_nodecommentnodeattributes.java 67 NodeList nodeList;
71 nodeList = doc.getChildNodes();
72 for (int indexN10043 = 0; indexN10043 < nodeList.getLength(); indexN10043++) {
73 commentNode = (Node) nodeList.item(indexN10043);
  /frameworks/av/media/libstagefright/omx/
OMXStore.cpp 36 std::multimap<size_t, IOMXStore::NodeInfo> nodeList;
73 std::vector<NodeInfo>& nodeList = role.nodes;
74 nodeList.reserve(rolePair.second.nodeList.size());
75 for (const auto& nodePair : rolePair.second.nodeList) {
87 nodeList.push_back(std::move(node));
  /hardware/interfaces/media/omx/1.0/vts/functional/master/
VtsHalMediaOmxV1_0TargetMasterTest.cpp 130 void displayComponentInfo(hidl_vec<IOmx::ComponentInfo>& nodeList) {
131 for (size_t i = 0; i < nodeList.size(); i++) {
132 printf("%s | ", nodeList[i].mName.c_str());
133 for (size_t j = 0; j < ((nodeList[i]).mRoles).size(); j++) {
134 printf("%s ", nodeList[i].mRoles[j].c_str());
180 hidl_vec<IOmx::ComponentInfo> nodeList;
183 omx->listNodes([&status, &nodeList](
187 nodeList = _nl;
191 if (nodeList.size() == 0)
194 // displayComponentInfo(nodeList);
    [all...]
  /frameworks/av/media/libstagefright/omx/1.0/
OmxStore.cpp 68 hidl_vec<NodeInfo>& nodeList = role.nodes;
69 nodeList.resize(rolePair.second.nodeList.size());
71 for (const auto& nodePair : rolePair.second.nodeList) {
85 nodeList[j] = std::move(node);
  /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...]
  /hardware/interfaces/media/omx/1.0/
IOmx.hal 45 * @return nodeList The list of ComponentInfo.
50 vec<ComponentInfo> nodeList
  /frameworks/av/media/libmedia/omx/1.0/
WOmx.cpp 45 hidl_vec<IOmx::ComponentInfo> const& nodeList) {
48 for (size_t i = 0; i < nodeList.size(); ++i) {
51 convertTo(&*newInfo, nodeList[i]);
  /cts/hostsidetests/devicepolicy/app/ManagedProfile/src/com/android/cts/managedprofile/
CurrentApiHelper.java 26 import org.w3c.dom.NodeList;
86 NodeList nodes = classElement.getElementsByTagName(TAG_METHOD);
136 NodeList nodeList = parent.getElementsByTagName(childTag);
137 if (nodeList != null && nodeList.getLength() > 0) {
138 for (int i = 0; i < nodeList.getLength(); ++i) {
139 Element el = (Element) nodeList.item(i);
149 NodeList nodes = methodElement.getElementsByTagName(TAG_PARAMETER);
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/tests/functests/sampleProjects/
AndroidManifestWriter.java 25 import org.w3c.dom.NodeList;
69 NodeList nodeList = mDoc.getElementsByTagName(AndroidManifest.NODE_USES_SDK);
70 if (nodeList.getLength() > 0) {
71 usesSdkElement = (Element) nodeList.item(0);
  /tools/tradefederation/core/src/com/android/tradefed/util/xml/
AndroidManifestWriter.java 23 import org.w3c.dom.NodeList;
72 NodeList nodeList = mDoc.getElementsByTagName(NODE_USES_SDK);
73 if (nodeList.getLength() > 0) {
74 usesSdkElement = (Element) nodeList.item(0);
  /test/vts-testcase/hal/media/omx/V1_0/host/
VtsHalMediaOmxV1_0HostTest.py 78 status, nodeList = self._dut.hal.media_omx.listNodes()
82 for node in nodeList:
  /external/icu/icu4c/source/tools/ctestfw/
ctest.c 80 const TestNode** nodeList,
324 * @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.
329 const TestNode** nodeList,
348 nodeList[depth++] = root;
354 strcat(pathToFunction, nodeList[i]->name);
357 strcat(pathToFunction, nodeList[i]->name); /* including 'root' */
440 log_testinfo("---%s%c\n",pathToFunction, nodeList[i]->test?' ':TEST_SEPARATOR );
454 iterateTestsWithLevel ( root->child, depth, nodeList, mode );
486 iterateTestsWithLevel ( root->sibling, depth, nodeList, mode )
    [all...]
  /libcore/luni/src/test/java/libcore/xml/
JaxenXPathTestSuite.java 25 import org.w3c.dom.NodeList;
168 NodeList valueOfElements = element.getElementsByTagName("valueOf");
188 NodeList result = (NodeList) xpath.evaluate(
296 private static List<Element> elementsOf(NodeList nodeList) {
298 for (int i = 0; i < nodeList.getLength(); i++) {
299 Node node = nodeList.item(i);
XsltXPathConformanceTestSuite.java 57 import org.w3c.dom.NodeList;
558 NodeList childNodes = node.getChildNodes();
564 private static List<Element> elementsOf(NodeList nodeList) {
566 for (int i = 0; i < nodeList.getLength(); i++) {
567 Node node = nodeList.item(i);
  /external/mesa3d/src/gallium/drivers/nouveau/codegen/
nv50_ir_graph.cpp 412 std::list<Node *> nodeList;
422 nodeList.push_front(t);
429 for (std::list<Node *>::iterator n = nodeList.begin();
430 n != nodeList.end(); ++n) {
435 n = nodeList.erase(n);
  /frameworks/opt/setupwizard/tools/docs/
jsilver.jar 
  /prebuilts/devtools/tools/lib/
jsilver-1.0.0.jar 
  /prebuilts/tools/common/m2/repository/com/google/jsilver/jsilver/1.0.0/
jsilver-1.0.0.jar 
  /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...]
  /frameworks/av/media/libstagefright/xmlparser/include/media/stagefright/xmlparser/
MediaCodecsXmlParser.h 87 std::multimap<size_t, NodeInfo> nodeList;
  /frameworks/av/media/libstagefright/xmlparser/
MediaCodecsXmlParser.cpp 998 std::multimap<size_t, NodeInfo>* nodeList;
    [all...]
  /frameworks/data-binding/compilerCommon/src/main/java/android/databinding/tool/store/
LayoutFileParser.java 39 import org.w3c.dom.NodeList;
422 return toList((NodeList) expr.evaluate(doc, XPathConstants.NODESET));
425 private List<Node> toList(NodeList nodeList) {
427 for (int i = 0; i < nodeList.getLength(); i++) {
428 result.add(nodeList.item(i));

Completed in 5187 milliseconds

1 2 3 4 5 6 7 8 910