HomeSort by relevance Sort by last modified time
    Searched defs:node (Results 276 - 300 of 2901) sorted by null

<<11121314151617181920>>

  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/CollisionShapes/
btOptimizedBvh.cpp 57 btOptimizedBvhNode node; local
69 node.m_aabbMinOrg = aabbMin;
70 node.m_aabbMaxOrg = aabbMax;
72 node.m_escapeIndex = -1;
75 node.m_subPart = partId;
76 node.m_triangleIndex = triangleIndex;
77 m_triangleNodes.push_back(node);
105 btQuantizedBvhNode node;
135 m_optimizedTree->quantize(&node.m_quantizedAabbMin[0],aabbMin,0);
136 m_optimizedTree->quantize(&node.m_quantizedAabbMax[0],aabbMax,1)
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/model/
NodeAnimation.java 24 /** A NodeAnimation defines keyframes for a {@link Node} in a {@link Model}. The keyframes are given as a translation vector, a
28 /** the Node affected by this animation **/
29 public Node node; field in class:NodeAnimation
  /external/libmicrohttpd/src/microhttpd/
tsearch.h 34 typedef struct node { struct
36 struct node *llink, *rlink;
  /external/libweave/src/notification/
xml_node_unittest.cc 50 static const XmlNode* GetParent(const XmlNode& node) { return node.parent_; }
52 static void SetText(XmlNode* node, const std::string& text) {
53 node->SetText(text);
56 static void AppendText(XmlNode* node, const std::string& text) {
57 node->AppendText(text);
111 XmlNode new_node{"node", {}};
117 const XmlNode* node = node_->FindFirstChild("node3", false); local
118 ASSERT_NE(nullptr, node);
119 EXPECT_EQ("node3", node->name())
133 const XmlNode* node = node_->FindFirstChild("node2\/node3", false); local
    [all...]
xmpp_stream_parser.cc 80 auto node = std::move(node_stack_.top()); local
84 parent->AddChild(std::move(node));
86 delegate_->OnStanza(std::move(node));
92 XmlNode* node = node_stack_.top().get(); local
93 node->AppendText(text);
  /external/libxml2/include/libxml/
debugXML.h 41 xmlNodePtr node,
45 xmlNodePtr node,
49 xmlNodePtr node,
81 xmlLsOneNode (FILE *output, xmlNodePtr node);
83 xmlLsCountNode (xmlNodePtr node);
116 xmlNodePtr node; member in struct:_xmlShellCtxt
127 * @node: a first node
128 * @node2: a second node
136 xmlNodePtr node,
    [all...]
  /external/ltrace/
zero.c 97 static struct expr_node node; local
98 expr_init_cb1(&node, &zero1_callback,
100 nodep = &node;
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_fs_live_variables.h 57 void *node; local
59 node = rzalloc_size(ctx, size);
60 assert(node != NULL);
62 return node;
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/res/
XTagXmlResourceLoader.java 9 import org.w3c.dom.Node;
46 Node node = items.item( i ); local
47 String name = node.getAttributes().getNamedItem( "name" ).getNodeValue();
48 processNode( node, name, isSystem );
69 protected abstract void processNode( Node node, String name, boolean isSystem );
XpathResourceXmlLoader.java 4 import org.w3c.dom.Node;
25 Node node = nodes.item(i); local
26 String name = node.getAttributes().getNamedItem("name").getNodeValue();
27 processNode(node, name, isSystem);
31 protected abstract void processNode(Node node, String name, boolean isSystem) throws XPathExpressionException;
  /external/selinux/checkpolicy/
queue.c 76 queue_node_ptr_t node; local
85 node = q->head;
90 e = node->element;
91 free(node);
  /external/selinux/libsepol/cil/src/
cil_fqn.c 42 struct cil_tree_node *node; member in struct:cil_fqn_args
77 struct cil_tree_node *node = NODE(datum); local
81 if (node->flavor != CIL_BLOCK) {
92 child_args.node = node;
124 cil_log(CIL_ERR,"Problem qualifying names in block at line %d of %s\n", child_args.node->line, child_args.node->path);
137 fqn_args.node = root_node;
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/
YamlComposeTest.java 23 import org.yaml.snakeyaml.nodes.Node;
42 MappingNode node = (MappingNode) yaml.compose(new StringReader("abc: 56")); local
43 ScalarNode node1 = (ScalarNode) node.getValue().get(0).getKeyNode();
45 ScalarNode node2 = (ScalarNode) node.getValue().get(0).getValueNode();
52 for (Node node : yaml.composeAll(new StringReader("abc: 56\n---\n123\n---\n456"))) {
54 assertEquals(NodeId.mapping, node.getNodeId());
56 assertEquals(NodeId.scalar, node.getNodeId());
64 for (Node node : yaml.composeAll(new StringReader("6")))
    [all...]
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/constructor/
AbstractConstructTest.java 20 import org.yaml.snakeyaml.nodes.Node;
30 public Object construct(Node node) {
34 Node node = new SequenceNode(Tag.SEQ, true, new ArrayList<Node>(), null, null, false); local
36 abstractConstruct.construct2ndStep(node, "");
39 assertEquals("Unexpected recursive structure for Node: <org.yaml.snakeyaml.nodes.SequenceNode (tag=tag:yaml.org,2002:seq, value=[])>", e.getMessage());
46 public Object construct(Node node) {
50 Node node = new SequenceNode(Tag.SEQ, true, new ArrayList<Node>(), null, null, false); local
    [all...]
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue111/
LongUriTest.java 23 import org.yaml.snakeyaml.nodes.Node;
41 Node node = loader.compose(new StringReader(yaml)); local
42 ScalarNode scalar = (ScalarNode) node;
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/nodes/
NodeTupleTest.java 23 Node node = new ScalarNode(new Tag("!tag"), "value1", null, null, null); local
25 new NodeTuple(null, node);
26 fail("Node must be provided.");
33 Node node = new ScalarNode(new Tag("!tag"), "value1", null, null, null); local
35 new NodeTuple(node, null);
36 fail("Node must be provided.");
43 Node key = new ScalarNode(Tag.STR, "key1", null, null, null);
44 Node value = new ScalarNode(Tag.STR, "value1", null, null, null)
    [all...]
ScalarNodeTest.java 27 Node node = new ScalarNode(new Tag("str"), "text", null, null, '>'); local
28 assertEquals(NodeId.scalar, node.getNodeId());
32 Node node = new ScalarNode(new Tag("str"), "text", null, null, '>'); local
33 assertTrue(node.toString().contains("ScalarNode"));
34 assertTrue(node.toString().contains("tag="));
35 assertTrue(node.toString().contains("value="));
SequenceNodeTest.java 25 SequenceNode node = new SequenceNode(new Tag("!foo"), true, new ArrayList<Node>(), null, local
27 assertEquals(NodeId.sequence, node.getNodeId());
35 assertEquals("value in a Node is required.", e.getMessage());
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/partialconstruct/
FragmentComposer.java 20 import org.yaml.snakeyaml.nodes.Node;
35 public Node getSingleNode() {
36 Node node = super.getSingleNode(); local
37 if (!MappingNode.class.isAssignableFrom(node.getClass())) {
41 MappingNode root = (MappingNode) node;
43 Node keyNode = tuple.getKeyNode();
  /external/v8/src/compiler/
graph.cc 10 #include "src/compiler/node.h"
11 #include "src/compiler/node-properties.h"
27 void Graph::Decorate(Node* node) {
29 decorator->Decorate(node);
46 Node* Graph::NewNode(const Operator* op, int input_count, Node** inputs,
48 Node* node = NewNodeUnchecked(op, input_count, inputs, incomplete); local
49 Verifier::VerifyNode(node);
56 Node* const node = local
    [all...]
  /external/v8/test/unittests/compiler/
node-cache-unittest.cc 5 #include "src/compiler/node-cache.h"
22 Node** pos = cache.Find(zone(), i);
25 Node** npos = cache.Find(zone(), i);
35 Node* nodes[arraysize(constants)];
39 Node* node = graph()->NewNode(common()->Int32Constant(k)); local
40 *cache.Find(zone(), k) = nodes[i] = node;
53 Node** nodes = zone()->NewArray<Node*>(kSize);
64 Node** pos = cache.Find(zone(), v)
    [all...]
  /external/vboot_reference/firmware/2lib/include/
2guid.h 23 uint8_t node[UUID_NODE_LEN]; member in struct:vb2_guid::__anon27250::__anon27251
  /external/webrtc/webrtc/libjingle/xmpp/
jid.h 21 // consists of three parts: the node, the domain and the resource, e.g.:
23 // node@domain/resource
25 // The node and resource are both optional. A valid jid is defined to have
37 const std::string & node() const { return node_name_; } function in class:buzz::Jid
62 static std::string PrepNode(const std::string& node, bool* valid);
pubsubclient.h 34 // pubsub jid and node. All you have to do is RequestItems, listen
40 const std::string& node)
43 node_(node) {}
45 const std::string& node() const { return node_; } function in class:buzz::PubSubClient
  /frameworks/base/libs/hwui/tests/microbench/
FrameBuilderBench.cpp 42 auto node = TestUtils::createNode(0, 0, 200, 200, local
57 TestUtils::syncHierarchyPropertiesAndDisplayList(node);
58 return node;
63 auto node = createTestNode();
67 frameBuilder.deferRenderNode(*node);
76 auto node = createTestNode();
84 frameBuilder.deferRenderNode(*node);
118 auto node = getSyncedSceneNode(sceneName);
123 frameBuilder.deferRenderNode(*node);
134 auto node = getSyncedSceneNode(sceneName)
    [all...]

Completed in 2071 milliseconds

<<11121314151617181920>>