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

<<11121314151617181920>>

  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRTreeIterator.h 48 ANTLRFastQueue *nodes; variable
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRTreeIterator.h 48 ANTLRFastQueue *nodes; variable
  /external/antlr/antlr-3.4/runtime/Python/unittests/
testdottreegen.py 32 " $nodes$\n" +
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
tree.rb 89 Mainly, it customizes a few methods specifically to deal with tree nodes
95 assumptions about the class of the actual nodes it processes. One consequence of
98 construction and analysis of your tree nodes.
187 ############################################ Tree Nodes ############################################
200 tree nodes as well as the methods trees need to implement.
211 tree nodes
214 [siblings] all other nodes sharing the same parent as some node
453 value) and contains zero or more child tree nodes. Additionally, it tracks
677 * copying and creating tree nodes and tokens
678 * defining parent-child relationships between nodes
    [all...]
  /external/libgdx/extensions/gdx-bullet/src/com/badlogic/gdx/physics/bullet/
Bullet.java 121 public static <T extends Node> void getShapeParts (final Iterable<T> nodes, final Array<ShapePart> out, final int offset,
123 for (T node : nodes)
135 /** Obtain a {@link btCollisionShape} based on the specified nodes, which can be used for a static body but not for a dynamic
136 * body. Depending on the specified nodes the result will be either a {@link btBvhTriangleMeshShape} or a
138 * if multiple nodes use the same (mesh) part. The node transformation (translation and rotation) will be included, but scaling
140 * @param nodes The nodes for which to obtain a node, typically this would be: `model.nodes`.
142 public static btCollisionShape obtainStaticNodeShape (final Array<Node> nodes) {
143 getShapeParts(nodes, shapePartArray, 0, shapePartPool);
    [all...]
  /external/mesa3d/src/gallium/docs/source/exts/
formatting.py 6 import docutils.nodes
  /external/opencv3/modules/ml/src/
kdtree.hpp 47 //! split dimension; >=0 for nodes (dim), < 0 for leaves (index of the point)
87 std::vector<Node> nodes; //!< all the tree nodes member in class:cv::ml::KDTree
  /external/skia/src/core/
SkRTree.cpp 62 // This function parallels bulkLoad, but just counts how many nodes bulkLoad would allocate.
80 int nodes = 0; local
93 nodes++;
100 return nodes + CountNodes(nodes, aspectRatio);
117 // If the remainder isn't enough to fill a node, we'll add fewer nodes to other branches.
134 // if need be, omit some nodes to make up for remainder
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/nodes/
Node.java 16 package org.yaml.snakeyaml.nodes;
21 * Base class for all nodes.
23 * The nodes form the node-graph described in the <a
90 * Two Nodes are never equal.
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/
Example2_24Test.java 26 import org.yaml.snakeyaml.nodes.MappingNode;
27 import org.yaml.snakeyaml.nodes.Node;
28 import org.yaml.snakeyaml.nodes.SequenceNode;
29 import org.yaml.snakeyaml.nodes.Tag;
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue132/
ScalarEventTagTest.java 27 import org.yaml.snakeyaml.nodes.Node;
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue310/
PropertyWithPrivateCostructorTest.java 23 import org.yaml.snakeyaml.nodes.Node;
  /external/v8/src/compiler/
common-node-cache.h 22 // Bundles various caches for common nodes.
55 // Return all nodes from the cache.
56 void GetCachedNodes(ZoneVector<Node*>* nodes);
  /frameworks/base/libs/hwui/
RenderNode.h 262 static size_t findNonNegativeIndex(const std::vector<ZDrawRenderNodeOpPair>& nodes) {
263 for (size_t i = 0; i < nodes.size(); i++) {
264 if (nodes[i].key >= 0.0f) return i;
266 return nodes.size();
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/html/parser/
HtmlDocument.java 33 * HtmlDocument is a container for a list of html nodes, and represents the
42 private final List<Node> nodes; field in class:HtmlDocument
46 * @param nodes list of html nodes
48 public HtmlDocument(List<Node> nodes) {
49 this.nodes = nodes;
52 /** Gets the list of nodes */
54 return nodes;
59 StringBuilder sb = new StringBuilder(nodes.size() * 10)
1167 private final List<Node> nodes = new ArrayList<Node>(); field in class:HtmlDocument.Builder
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/compiler/
future.py 27 for s in stmt.nodes:
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib2to3/fixes/
fix_urllib.py 161 nodes = []
163 nodes.extend([new_node, Newline()])
164 nodes.append(new_nodes[-1])
165 node.replace(nodes)
  /prebuilts/gdb/linux-x86/lib/python2.7/compiler/
future.py 27 for s in stmt.nodes:
  /prebuilts/gdb/linux-x86/lib/python2.7/lib2to3/fixes/
fix_urllib.py 161 nodes = []
163 nodes.extend([new_node, Newline()])
164 nodes.append(new_nodes[-1])
165 node.replace(nodes)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/
future.py 27 for s in stmt.nodes:
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_urllib.py 161 nodes = []
163 nodes.extend([new_node, Newline()])
164 nodes.append(new_nodes[-1])
165 node.replace(nodes)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/compiler/
future.py 27 for s in stmt.nodes:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_urllib.py 161 nodes = []
163 nodes.extend([new_node, Newline()])
164 nodes.append(new_nodes[-1])
165 node.replace(nodes)
  /external/guice/extensions/grapher/src/com/google/inject/grapher/graphviz/
GraphvizGrapher.java 50 private final Map<NodeId, GraphvizNode> nodes = Maps.newHashMap(); field in class:GraphvizGrapher
65 nodes.clear();
80 for (GraphvizNode node : nodes.values()) {
169 String tailId = getEdgeEndPoint(nodes.get(edge.getTailNodeId()).getIdentifier(),
172 String headId = getEdgeEndPoint(nodes.get(edge.getHeadNodeId()).getIdentifier(),
323 node.setIdentifier("x" + nodes.size());
324 nodes.put(node.getNodeId(), node);
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/constructor/
BaseConstructor.java 34 import org.yaml.snakeyaml.nodes.MappingNode;
35 import org.yaml.snakeyaml.nodes.Node;
36 import org.yaml.snakeyaml.nodes.NodeId;
37 import org.yaml.snakeyaml.nodes.NodeTuple;
38 import org.yaml.snakeyaml.nodes.ScalarNode;
39 import org.yaml.snakeyaml.nodes.SequenceNode;
40 import org.yaml.snakeyaml.nodes.Tag;

Completed in 902 milliseconds

<<11121314151617181920>>