HomeSort by relevance Sort by last modified time
    Searched refs:nodes (Results 51 - 75 of 1616) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRStreamEnumerator.h 39 NSMutableArray *nodes; variable
  /external/pdfium/third_party/libopenjpeg20/
tgt.c 88 tree->nodes = (opj_tgt_node_t*) opj_calloc(tree->numnodes, sizeof(opj_tgt_node_t));
89 if(!tree->nodes) {
90 opj_event_msg(manager, EVT_ERROR, "Not enough memory to create Tag-tree nodes\n");
96 node = tree->nodes;
97 l_parent_node = &tree->nodes[tree->numleafsh * tree->numleafsv];
176 opj_tgt_node_t* new_nodes = (opj_tgt_node_t*) opj_realloc(p_tree->nodes, l_node_size);
182 p_tree->nodes = new_nodes;
183 memset(((char *) p_tree->nodes) + p_tree->nodes_size, 0 , l_node_size - p_tree->nodes_size);
186 l_node = p_tree->nodes;
187 l_parent_node = &p_tree->nodes[p_tree->numleafsh * p_tree->numleafsv]
    [all...]
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/constructor/
AbstractConstruct.java 19 import org.yaml.snakeyaml.nodes.Node;
31 * @see org.yaml.snakeyaml.constructor.Construct#construct2ndStep(org.yaml.snakeyaml.nodes.Node,
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/nodes/
AnchorNode.java 16 package org.yaml.snakeyaml.nodes;
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/
YamlComposeTest.java 22 import org.yaml.snakeyaml.nodes.MappingNode;
23 import org.yaml.snakeyaml.nodes.Node;
24 import org.yaml.snakeyaml.nodes.NodeId;
25 import org.yaml.snakeyaml.nodes.ScalarNode;
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue9/
BeanConstructor.java 19 import org.yaml.snakeyaml.nodes.Node;
20 import org.yaml.snakeyaml.nodes.NodeId;
21 import org.yaml.snakeyaml.nodes.ScalarNode;
22 import org.yaml.snakeyaml.nodes.Tag;
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/nodes/
MappingNodeTest.java 16 package org.yaml.snakeyaml.nodes;
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/partialconstruct/
FragmentComposer.java 19 import org.yaml.snakeyaml.nodes.MappingNode;
20 import org.yaml.snakeyaml.nodes.Node;
21 import org.yaml.snakeyaml.nodes.NodeTuple;
22 import org.yaml.snakeyaml.nodes.ScalarNode;
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/resolver/
ResolverTupleTest.java 22 import org.yaml.snakeyaml.nodes.Tag;
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
RecognitionException.as 93 * imaginary nodes w/o line/col info. We now search backwards looking
124 var nodes:TreeNodeStream = TreeNodeStream(input);
125 this.node = nodes.LT(1);
126 var adaptor:TreeAdaptor = nodes.treeAdaptor;
133 var priorNode:Object = nodes.LT(i);
144 priorNode = nodes.LT(i);
172 var nodes:TreeNodeStream = TreeNodeStream(input);
173 var adaptor:TreeAdaptor = nodes.treeAdaptor;
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
RecognitionException.java 92 * imaginary nodes w/o line/col info. We now search backwards looking
124 TreeNodeStream nodes = (TreeNodeStream)input; local
125 this.node = nodes.LT(1);
126 TreeAdaptor adaptor = nodes.getTreeAdaptor();
133 Object priorNode = nodes.LT(i);
144 priorNode = nodes.LT(i);
172 TreeNodeStream nodes = (TreeNodeStream)input; local
173 TreeAdaptor adaptor = nodes.getTreeAdaptor();
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
RecognitionException.js 106 * imaginary nodes w/o line/col info. We now search backwards looking
117 var nodes = input,
124 this.node = nodes.LT(1);
125 var adaptor = nodes.getTreeAdaptor(),
132 priorNode = nodes.LT(i);
143 priorNode = nodes.LT(i);
173 var nodes = this.input;
174 var adaptor = nodes.getTreeAdaptor();
  /external/libxml2/doc/examples/
xpath1.c 27 void print_xpath_nodes(xmlNodeSetPtr nodes, FILE* output);
199 * @nodes: the nodes set.
202 * Prints the @nodes content to @output.
205 print_xpath_nodes(xmlNodeSetPtr nodes, FILE* output) {
211 size = (nodes) ? nodes->nodeNr : 0;
213 fprintf(output, "Result (%d nodes):\n", size);
215 assert(nodes->nodeTab[i]);
217 if(nodes->nodeTab[i]->type == XML_NAMESPACE_DECL)
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
Graph.java 40 List<Node> edges; // points at which nodes?
53 protected Map<Object,Node> nodes = new HashMap<Object,Node>(); field in class:Graph
63 Node existing = nodes.get(a);
66 nodes.put(a, n);
84 while ( visited.size() < nodes.size() ) {
87 for (Iterator it = nodes.values().iterator(); it.hasNext();) {
  /external/libchrome/base/trace_event/
heap_profiler_stack_frame_deduplicator.cc 30 std::map<StackFrame, int>* nodes = &roots_; local
36 auto node = nodes->find(frame);
37 if (node == nodes->end()) {
47 nodes->insert(std::make_pair(frame, frame_index));
49 // Append the node after modifying |nodes|, because the |frames_| vector
50 // might need to resize, and this invalidates the |nodes| pointer.
57 nodes = &frames_[frame_index].children;
100 // overhead of the tree nodes for the map, but as an estimate this should be
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
LintTooltipManager.java 75 List<UiViewElementNode> nodes = computeNodes(event); local
76 if (nodes != null && !nodes.isEmpty()) {
77 if (nodes.equals(mShowingNodes)) {
80 show(nodes);
112 List<UiViewElementNode> nodes = computeNodes(event); local
113 if (nodes != null && !nodes.isEmpty()) {
114 show(nodes);
118 /** Show a tooltip listing the lint errors for the given nodes */
161 List<UiViewElementNode> nodes = new ArrayList<UiViewElementNode>(); local
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
BufferedTreeNodeStream.cs 41 /** <summary>A buffered stream of tree nodes. Nodes can be from a tree of ANY kind.</summary>
43 * This node stream sucks all nodes out of the tree specified in
46 * includes pointers to DOWN and UP and EOF nodes.
80 if (_index < _outer.nodes.Count)
81 return _outer.nodes[_index];
99 if (_index < _outer.nodes.Count)
102 return _index < _outer.nodes.Count;
112 // all these navigation nodes are shared and hence they
120 * This buffer includes pointers to DOWN, UP, and EOF nodes
128 protected IList nodes; field in class:Antlr.Runtime.Tree.BufferedTreeNodeStream
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
BufferedTreeNodeStream.cs 42 /** <summary>A buffered stream of tree nodes. Nodes can be from a tree of ANY kind.</summary>
44 * This node stream sucks all nodes out of the tree specified in
47 * includes pointers to DOWN and UP and EOF nodes.
86 if ( _index < _outer.nodes.Count )
87 return _outer.nodes[_index];
107 if ( _index < _outer.nodes.Count )
110 return _index < _outer.nodes.Count;
121 // all these navigation nodes are shared and hence they
129 * This buffer includes pointers to DOWN, UP, and EOF nodes
137 protected IList nodes; field in class:Antlr.Runtime.Tree.BufferedTreeNodeStream
    [all...]
  /external/opencv/cv/src/
_cvkdtree.hpp 69 int dim; // split dimension; >=0 for nodes, -1 for leaves
78 node_array nodes; // node storage member in class:CvKDTree
173 int i = nodes.size();
174 node & n = *nodes.insert(nodes.end(), node());
184 int i = nodes.size();
186 node & n = *nodes.insert(nodes.end(), node());
192 nodes[i].left = left;
194 nodes[i].right = right
    [all...]
  /external/autotest/client/cros/audio/
cras_utils.py 121 """Gets a command to query the nodes from Cras.
123 @returns: The command to query nodes information from Cras using dbus-send.
183 """Gets nodes information from Cras.
192 """Gets selected output nodes and input nodes.
196 Note that there may be multiple output/input nodes being selected
202 nodes = get_cras_nodes()
203 for node in nodes:
300 nodes = get_cras_nodes()
301 for node in nodes
    [all...]
  /external/opencv3/3rdparty/jinja2/
ext.py 13 from jinja2 import nodes
103 list of multiple nodes.
115 return nodes.ExtensionAttribute(self.identifier, name, lineno=lineno)
120 :meth:`attr` + :class:`jinja2.nodes.Call`.
126 return nodes.Call(self.attr(name, lineno=lineno), args, kwargs,
245 variables[name.value] = var = nodes.Name(name.value, 'load')
248 if isinstance(var, nodes.Call):
249 plural_expr = nodes.Name('_trans', 'load')
251 plural_expr_assignment = nodes.Assign(
252 nodes.Name('_trans', 'store'), var
    [all...]
  /build/core/
node_fns.mk 121 # $(call get-inherited-nodes,PREFIX,A B)
128 define get-inherited-nodes
151 $(eval ### "Get the list of nodes that this variable inherits") \
198 $(call get-inherited-nodes,$(1).$(2),$(3)))
199 $(call _import-nodes-inner,$(1),$($(1).$(2).inherited),$(3))
216 # $(2): list of makefiles representing nodes to import
221 define _import-nodes-inner
238 # $(2): list of makefiles representing nodes to import
241 define import-nodes
248 $(call _import-nodes-inner,$(_node_import_context),$(_in),$(3))
    [all...]
  /external/antlr/antlr-3.4/runtime/Python/tests/
t047treeparser.py 64 nodes = antlr3.tree.CommonTreeNodeStream(r.tree)
65 nodes.setTokenStream(tStream)
66 walker = self.getWalker(nodes)
113 nodes = antlr3.tree.CommonTreeNodeStream(r.tree)
114 nodes.setTokenStream(tStream)
115 walker = self.getWalker(nodes)
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue60/
SkipBeanTest.java 25 import org.yaml.snakeyaml.nodes.CollectionNode;
26 import org.yaml.snakeyaml.nodes.MappingNode;
27 import org.yaml.snakeyaml.nodes.Node;
28 import org.yaml.snakeyaml.nodes.NodeTuple;
29 import org.yaml.snakeyaml.nodes.SequenceNode;
30 import org.yaml.snakeyaml.nodes.Tag;
  /external/opencv3/modules/objdetect/src/
haar.cpp 647 CvHidHaarTreeNode* nodes[8]; local
653 nodes[0] = (classifier+0)->node + idxV[0];
654 nodes[1] = (classifier+1)->node + idxV[1];
655 nodes[2] = (classifier+2)->node + idxV[2];
656 nodes[3] = (classifier+3)->node + idxV[3];
657 nodes[4] = (classifier+4)->node + idxV[4];
658 nodes[5] = (classifier+5)->node + idxV[5];
659 nodes[6] = (classifier+6)->node + idxV[6];
660 nodes[7] = (classifier+7)->node + idxV[7];
664 t = _mm256_mul_ps(t, _mm256_set_ps(nodes[7]->threshold
907 CvHidHaarTreeNode* nodes[8]; local
    [all...]

Completed in 2690 milliseconds

1 23 4 5 6 7 8 91011>>