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

1 2 3 4 5 6 7

  /external/webkit/WebCore/dom/
StaticNodeList.h 43 // Adopts the contents of the nodes vector.
44 static PassRefPtr<StaticNodeList> adopt(Vector<RefPtr<Node> >& nodes)
46 return adoptRef(new StaticNodeList(nodes));
54 StaticNodeList(Vector<RefPtr<Node> >& nodes)
56 m_nodes.swap(nodes);
SelectorNodeList.cpp 45 Vector<RefPtr<Node> > nodes; local
55 nodes.append(element);
62 nodes.append(n);
70 return StaticNodeList::adopt(nodes);
  /external/webkit/WebCore/bindings/v8/custom/
V8NamedNodesCollection.h 43 explicit V8NamedNodesCollection(const Vector<RefPtr<Node> >& nodes)
44 : m_nodes(nodes) { }
  /external/webkit/WebCore/xml/
XPathPath.cpp 59 NodeSet& nodes = v.modifiableNodeSet(); local
60 nodes.sort();
65 evaluationContext.size = nodes.size();
68 for (unsigned j = 0; j < nodes.size(); j++) {
69 Node* node = nodes[j];
77 nodes.swap(newNodes);
104 NodeSet nodes; local
105 nodes.append(context);
106 evaluate(nodes);
109 return Value(nodes, Value::adopt)
200 NodeSet& nodes = v.modifiableNodeSet(); local
    [all...]
XPathStep.cpp 60 // E.g., there is no need to build a set of all "foo" nodes to evaluate "foo[@bar]", we can check the predicate while enumerating.
114 void Step::evaluate(Node* context, NodeSet& nodes) const
119 nodesInAxis(context, nodes);
126 if (!nodes.isSorted())
129 for (unsigned j = 0; j < nodes.size(); j++) {
130 Node* node = nodes[j];
133 evaluationContext.size = nodes.size();
139 nodes.swap(newNodes);
176 // In XPath land, namespace nodes are not accessible on the attribute axis.
202 // An expression without any prefix shouldn't match no-namespace nodes (because HTML5 says so)
    [all...]
XPathResult.cpp 155 const NodeSet& nodes = m_value.toNodeSet(); local
157 return nodes.firstNode();
159 return nodes.anyNode();
210 const NodeSet& nodes = m_value.toNodeSet(); local
211 if (index >= nodes.size())
214 return nodes[index];
  /libcore/luni/src/main/java/java/util/prefs/
NodeSet.java 12 public NodeSet(Iterator<Node> nodes) {
13 while(nodes.hasNext()) {
14 list.add(nodes.next());
  /libcore/luni/src/main/java/org/apache/xpath/functions/
FuncSum.java 49 DTMIterator nodes = m_arg0.asIterator(xctxt, xctxt.getCurrentNode()); local
53 while (DTM.NULL != (pos = nodes.nextNode()))
55 DTM dtm = nodes.getDTM(pos);
61 nodes.detach();
  /build/tools/droiddoc/src/
Hierarchy.java 26 HashMap<String,TreeSet<String>> nodes local
32 TreeSet<String> me = nodes.get(name);
35 nodes.put(name, me);
42 TreeSet<String> s = nodes.get(sname);
45 nodes.put(sname, s);
52 Set<String> keys = nodes.keySet();
56 TreeSet<String> values = nodes.get(n);
63 int depth = depth(nodes, "java.lang.Object");
68 recurse(nodes, "java.lang.Object", hdf.getObj("classes.0"),depth,depth);
71 Set<String> keys = nodes.keySet()
    [all...]
  /packages/apps/Email/src/org/apache/james/mime4j/field/address/parser/
JJTAddressListParserState.java 6 private java.util.Stack nodes; field in class:JJTAddressListParserState
9 private int sp; // number of nodes on stack
14 nodes = new java.util.Stack();
30 nodes.removeAllElements();
39 return (Node)nodes.elementAt(0);
44 nodes.push(n);
54 return (Node)nodes.pop();
59 return (Node)nodes.peek();
85 children. That number of nodes are popped from the stack and
102 the nodes that have been pushed since the node was opened ar
    [all...]
  /external/openssl/crypto/x509v3/
pcy_node.c 76 X509_POLICY_NODE *tree_find_sk(STACK_OF(X509_POLICY_NODE) *nodes,
86 idx = sk_X509_POLICY_NODE_find(nodes, &l);
90 return sk_X509_POLICY_NODE_value(nodes, idx);
100 for (i = 0; i < sk_X509_POLICY_NODE_num(level->nodes); i++)
102 node = sk_X509_POLICY_NODE_value(level->nodes, i);
135 if (!level->nodes)
136 level->nodes = policy_node_cmp_new();
137 if (!level->nodes)
139 if (!sk_X509_POLICY_NODE_push(level->nodes, node))
pcy_lib.c 115 if (level->nodes)
116 n += sk_X509_POLICY_NODE_num(level->nodes);
130 return sk_X509_POLICY_NODE_value(level->nodes, i);
pcy_tree.c 114 for (i = 0; i < sk_X509_POLICY_NODE_num(plev->nodes); i++)
116 node = sk_X509_POLICY_NODE_value(plev->nodes, i);
316 /* Iterate through all in nodes linking matches */
317 for (i = 0; i < sk_X509_POLICY_NODE_num(last->nodes); i++)
319 node = sk_X509_POLICY_NODE_value(last->nodes, i);
363 /* Look for matching nodes in previous level */
427 /* Locate unmatched nodes */
452 for (i = 0; i < sk_X509_POLICY_NODE_num(last->nodes); i++)
454 node = sk_X509_POLICY_NODE_value(last->nodes, i);
462 * nodes
    [all...]
  /dalvik/dx/src/com/android/dx/ssa/
DomFront.java 39 private final ArrayList<SsaBasicBlock> nodes; field in class:DomFront
64 nodes = meth.getBlocks();
66 int szNodes = nodes.size();
80 int szNodes = nodes.size();
84 SsaBasicBlock node = nodes.get(i);
124 int szNodes = nodes.size();
127 SsaBasicBlock node = nodes.get(i);
152 int szNodes = nodes.size();
159 SsaBasicBlock domParent = nodes.get(info.idom);
160 domParent.addDomChild(nodes.get(i))
    [all...]
  /external/libxml2/include/libxml/
c14n.h 38 * a) default attributes (if any) are added to all nodes
58 xmlNodeSetPtr nodes,
66 xmlNodeSetPtr nodes,
74 xmlNodeSetPtr nodes,
91 * Signature for a C14N callback on visible nodes
  /system/core/sh/
Android.mk 20 nodes.c \
44 p4 edit init.c nodes.c nodes.h token.h
50 sh ./mknodes.sh nodetypes nodes.c.pat .
  /external/clearsilver/util/
neo_hash.c 37 my_hash->nodes = (NE_HASHNODE **) calloc (my_hash->size, sizeof(NE_HASHNODE *));
38 if (my_hash->nodes == NULL)
62 node = my_hash->nodes[x];
70 free(my_hash->nodes);
71 my_hash->nodes = NULL;
175 if (hash->nodes[bucket])
177 *key = hash->nodes[bucket]->key;
178 return hash->nodes[bucket]->value;
196 node = &(hash->nodes[bucket]);
227 new_nodes = (NE_HASHNODE **) realloc (hash->nodes, (hash->size*2) * sizeof(NE_HASHNODE))
    [all...]
  /packages/apps/Mms/src/com/android/mms/dom/smil/
ElementSequentialTimeContainerImpl.java 47 ArrayList<Node> nodes = new ArrayList<Node>(); local
51 nodes.add(allChildren.item(i));
52 return new NodeListImpl(nodes);
55 return new NodeListImpl(nodes);
  /build/core/
node_fns.mk 123 # $(call get-inherited-nodes,PREFIX,A B)
130 define get-inherited-nodes
153 $(eval ### "Get the list of nodes that this variable inherits") \
200 $(call get-inherited-nodes,$(1).$(2),$(3)))
201 $(call _import-nodes-inner,$(1),$($(1).$(2).inherited),$(3))
218 # $(2): list of makefiles representing nodes to import
223 define _import-nodes-inner
240 # $(2): list of makefiles representing nodes to import
243 define import-nodes
250 $(call _import-nodes-inner,$(_node_import_context),$(_in),$(3))
    [all...]
  /libcore/luni/src/main/java/org/apache/xalan/transformer/
KeyTable.java 113 * @return a set of nodes referenced by the key named <CODE>name</CODE> and the reference <CODE>ref</CODE>. If no node is referenced by this key, an empty node set is returned.
241 XNodeSet nodes = (XNodeSet) m_refsTable.get(ref); local
242 if (nodes == null)
244 nodes = new XNodeSet(node, xctxt.getDTMManager());
245 nodes.nextNode();
246 m_refsTable.put(ref, nodes);
250 // Nodes are passed to this method in document order. Since we need to
252 // in each nodeset. We use nodes.nextNode after each entry so we can
254 if (nodes.getCurrentNode() != node) {
255 nodes.mutableNodeset().addNode(node)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/tree/
UiActions.java 139 public void doRemove(final List<UiElementNode> nodes, Shell shell) {
141 if (nodes == null || nodes.size() == 0) {
145 final int len = nodes.size();
148 for (UiElementNode node : nodes) {
164 UiElementNode node = nodes.get(i);
189 public void doUp(final List<UiElementNode> nodes) {
190 if (nodes == null || nodes.size() < 1) {
198 for (int i = 0; i < nodes.size(); i++)
    [all...]
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
documentimportnode21.java 40 * second element node whose tagName is address and import these nodes into another document.
41 * Verify if the nodes have been imported correctly by checking the nodeNames of the
42 * imported nodes, since they are imported into a new document which doesnot have thes defined,
43 * the imported nodes should not have any children.
44 * Now import the entityRef nodes into the same document and verify if the nodes have been
45 * imported correctly by checking the nodeNames of the imported nodes, and by checking the
46 * value of the replacement text of the imported nodes.
97 NodeList nodes; local
120 nodes = entRefImp2.getChildNodes()
    [all...]
  /libcore/luni/src/main/java/org/apache/xalan/templates/
FuncKey.java 61 XNodeSet nodes = null; local
138 nodes = new XNodeSet(upi);
143 nodes = kmgr.getNodeSetDTMByKey(xctxt, docContext, keyname,
146 nodes.setRoot(xctxt.getCurrentNode(), xctxt);
149 return nodes;
  /external/webkit/WebKit/mac/DOM/
WebDOMOperations.mm 123 Vector<RefPtr<Node> > nodes;
124 core(self)->getFocusableNodes(nodes);
125 NSMutableArray *array = [NSMutableArray arrayWithCapacity:nodes.size()];
126 for (unsigned i = 0; i < nodes.size(); ++i)
127 [array addObject:kit(nodes[i].get())];
  /hardware/ti/omap3/omx/core_plugin/omx_core_plugin/
Android.mk 19 $(PV_TOP)/nodes/pvmediaoutputnode/include \
20 $(PV_TOP)/nodes/pvdownloadmanagernode/config/opencore \

Completed in 723 milliseconds

1 2 3 4 5 6 7