Searched refs:rootNode (Results 51 - 75 of 223) sorted by relevance

123456789

/external/jmonkeyengine/engine/src/test/jme3test/effect/
H A DTestParticleExportingCloning.java69 rootNode.attachChild(emit);
70 rootNode.attachChild(emit2);
81 rootNode.attachChild(emit3);
91 // vp.attachScene(rootNode);
/external/jmonkeyengine/engine/src/test/jme3test/helloworld/
H A DHelloAudio.java36 rootNode.attachChild(player);
49 rootNode.attachChild(audio_gun);
57 rootNode.attachChild(audio_nature);
H A DHelloMaterial.java68 rootNode.attachChild(cube);
78 rootNode.attachChild(window_frame);
87 rootNode.attachChild(cube_leak);
105 rootNode.attachChild(shiny_rock);
111 rootNode.addLight(sun);
/external/jmonkeyengine/engine/src/test/jme3test/material/
H A DTestNormalMapping.java67 rootNode.attachChild(sphere);
71 rootNode.attachChild(lightMdl);
76 rootNode.addLight(pl);
81 // rootNode.addLight(dl);
H A DTestSimpleBumps.java67 rootNode.attachChild(sphere);
71 rootNode.attachChild(lightMdl);
76 rootNode.addLight(pl);
81 // rootNode.addLight(dl);
/external/jmonkeyengine/engine/src/test/jme3test/stress/
H A DTestLeakingGL.java68 rootNode.setCullHint(CullHint.Never);
79 rootNode.detachAllChildren();
87 rootNode.attachChild(sphere);
H A DTestLodStress.java56 rootNode.addLight(dl);
82 rootNode.attachChild(clonePot);
/external/llvm/tools/opt/
H A DPrintSCC.cpp95 CallGraphNode* rootNode = getAnalysis<CallGraph>().getRoot(); local
98 for (scc_iterator<CallGraphNode*> SCCI = scc_begin(rootNode),
99 E = scc_end(rootNode); SCCI != E; ++SCCI) {
/external/jmonkeyengine/engine/src/test/jme3test/bullet/
H A DTestCollisionGroups.java69 rootNode.attachChild(physicsSphere);
76 rootNode.attachChild(physicsSphere2);
84 rootNode.attachChild(node2);
90 rootNode.attachChild(node3);
H A DTestKinematicAddToPhysicsSpaceIssue.java40 rootNode.attachChild(physicsSphere);
52 rootNode.attachChild(physicsSphere2);
66 rootNode.attachChild(node2);
72 rootNode.attachChild(node3);
H A DTestCollisionListener.java69 PhysicsTestHelper.createPhysicsTestWorld(rootNode, assetManager, bulletAppState.getPhysicsSpace());
70 PhysicsTestHelper.createBallShooter(this, rootNode, bulletAppState.getPhysicsSpace());
/external/jmonkeyengine/engine/src/test/jme3test/light/
H A DTestLightNode.java77 rootNode.attachChild(g);
84 rootNode.attachChild(movingNode);
89 rootNode.addLight(pl);
97 rootNode.addLight(dl);
H A DTestShadow.java78 rootNode.setShadowMode(ShadowMode.Off);
84 rootNode.attachChild(floorGeom);
90 rootNode.attachChild(teapot);
95 // rootNode.attachChild(lightMdl);
108 rootNode.attachChild(frustumMdl);
H A DTestSpotLight.java62 rootNode.addLight(al);
72 rootNode.addLight(spot);
79 // rootNode.addLight(pl);
84 rootNode.attachChild(lightMdl);
89 // rootNode.addLight(dl);
109 rootNode.attachChild(floorGeom);
124 rootNode.attachChild(signpost);
H A DTestTangentGenBadModels.java47 rootNode.attachChild(badModel);
52 // rootNode.attachChild(model);
56 rootNode.attachChild(debugTangents);
86 rootNode.addLight(dl);
91 rootNode.attachChild(lightMdl);
95 // rootNode.addLight(pl);
102 rootNode.attachChild(info);
/external/jmonkeyengine/engine/src/test/jme3test/model/
H A DTestHoverTank.java72 rootNode.attachChild(tank);
84 rootNode.addLight(dl);
85 rootNode.addLight(dl2);
86 rootNode.attachChild(tank);
/external/jmonkeyengine/engine/src/bullet-common/com/jme3/bullet/util/
H A DCollisionShapeFactory.java81 Node rootNode, CompoundCollisionShape shape, boolean meshAccurate, boolean dynamic) {
82 for (Spatial spatial : rootNode.getChildren()) {
133 Node rootNode, CompoundCollisionShape shape, boolean meshAccurate) {
134 return createCompoundShape(rootNode, rootNode, shape, meshAccurate, false);
142 private static CompoundCollisionShape createMeshCompoundShape(Node rootNode) { argument
143 return createCompoundShape(rootNode, new CompoundCollisionShape(), true);
149 * @param rootNode
152 private static CompoundCollisionShape createBoxCompoundShape(Node rootNode) { argument
153 return createCompoundShape(rootNode, ne
80 createCompoundShape(Node realRootNode, Node rootNode, CompoundCollisionShape shape, boolean meshAccurate, boolean dynamic) argument
132 createCompoundShape( Node rootNode, CompoundCollisionShape shape, boolean meshAccurate) argument
[all...]
/external/jmonkeyengine/engine/src/test/jme3test/collision/
H A DTestRayCasting.java79 rootNode.attachChild(teapot);
84 tracer = new RayTrace(rootNode, cam, 160, 128);
/external/jmonkeyengine/engine/src/test/jme3test/gui/
H A DTestBitmapText3D.java59 rootNode.attachChild(g);
67 rootNode.attachChild(txt);
/external/jmonkeyengine/engine/src/test/jme3test/renderer/
H A DTestParallelProjection.java60 rootNode.addLight(dl);
61 rootNode.attachChild(teaGeom);
/external/jmonkeyengine/engine/src/test/jme3test/tools/
H A DTestSaveGame.java72 rootNode.attachChild(player);
80 rootNode.addLight(al);
/external/webkit/Source/WebCore/dom/
H A DChildNodeList.cpp30 ChildNodeList::ChildNodeList(PassRefPtr<Node> rootNode, DynamicNodeList::Caches* info) argument
31 : DynamicNodeList(rootNode, info)
H A DNodeIterator.h39 static PassRefPtr<NodeIterator> create(PassRefPtr<Node> rootNode, unsigned whatToShow, PassRefPtr<NodeFilter> filter, bool expandEntityReferences) argument
41 return adoptRef(new NodeIterator(rootNode, whatToShow, filter, expandEntityReferences));
/external/jmonkeyengine/engine/src/core/com/jme3/app/
H A DSimpleApplication.java74 protected Node rootNode = new Node("Root Node"); field in class:SimpleApplication
155 * Retrieves rootNode
156 * @return rootNode Node object
160 return rootNode;
185 viewPort.attachScene(rootNode);
238 rootNode.updateLogicalState(tpf);
241 rootNode.updateGeometricState();
/external/jmonkeyengine/engine/src/test/jme3test/post/
H A DTestTransparentCartoonEdge.java44 rootNode.attachChild(geom);
54 rootNode.addLight(al);
59 rootNode.addLight(dl1);
64 rootNode.addLight(dl);
66 rootNode.attachChild(teaGeom);

Completed in 261 milliseconds

123456789