Searched defs:space (Results 1 - 25 of 117) sorted by relevance

12345

/external/jmonkeyengine/engine/src/bullet-common/com/jme3/bullet/
H A DPhysicsTickListener.java42 * @param space
45 public void prePhysicsTick(PhysicsSpace space, float f); argument
49 * @param space
52 public void physicsTick(PhysicsSpace space, float f); argument
/external/jmonkeyengine/engine/src/bullet-common/com/jme3/bullet/control/
H A DPhysicsControl.java16 public void setPhysicsSpace(PhysicsSpace space); argument
21 * The physics object is removed from the physics space when the control
24 * space. This allows disabling/enabling physics to move the spatial freely.
H A DCharacterControl.java31 protected PhysicsSpace space = null; field in class:CharacterControl
97 if (space != null) {
102 space.addCollisionObject(this);
105 space.removeCollisionObject(this);
155 if (enabled && space != null && space.getDebugManager() != null) {
157 attachDebugShape(space.getDebugManager());
166 public void setPhysicsSpace(PhysicsSpace space) { argument
167 if (space == null) {
168 if (this.space !
[all...]
H A DGhostControl.java32 protected PhysicsSpace space = null; field in class:GhostControl
100 if (space != null) {
106 space.addCollisionObject(this);
109 space.removeCollisionObject(this);
128 if (enabled && space != null && space.getDebugManager() != null) {
130 attachDebugShape(space.getDebugManager());
140 public void setPhysicsSpace(PhysicsSpace space) { argument
141 if (space == null) {
142 if (this.space !
[all...]
H A DRigidBodyControl.java38 protected PhysicsSpace space = null; field in class:RigidBodyControl
138 if (space != null) {
144 space.addCollisionObject(this);
147 space.removeCollisionObject(this);
213 if (enabled && space != null && space.getDebugManager() != null) {
215 attachDebugShape(space.getDebugManager());
226 public void setPhysicsSpace(PhysicsSpace space) { argument
227 if (space == null) {
228 if (this.space !
[all...]
H A DVehicleControl.java35 protected PhysicsSpace space = null; field in class:VehicleControl
154 if (space != null) {
160 space.addCollisionObject(this);
163 space.removeCollisionObject(this);
190 if (enabled && space != null && space.getDebugManager() != null) {
192 attachDebugShape(space.getDebugManager());
231 public void setPhysicsSpace(PhysicsSpace space) { argument
232 createVehicle(space);
233 if (space
[all...]
/external/jmonkeyengine/engine/src/bullet-native/
H A DjmeBulletUtil.h60 void *space; member in class:jmeUserPointer
/external/jmonkeyengine/engine/src/test/jme3test/bullet/
H A DPhysicsTestHelper.java38 * @param space
40 public static void createPhysicsTestWorld(Node rootNode, AssetManager assetManager, PhysicsSpace space) { argument
57 space.add(floorGeometry);
68 space.add(boxGeometry);
78 space.add(sphereGeometry);
82 public static void createPhysicsTestWorldSoccer(Node rootNode, AssetManager assetManager, PhysicsSpace space) { argument
99 space.add(floorGeometry);
111 space.add(ballGeometry);
121 space.add(boxGeometry);
175 * @param space
177 createBallShooter(final Application app, final Node rootNode, final PhysicsSpace space) argument
[all...]
H A DBombControl.java57 public void setPhysicsSpace(PhysicsSpace space) { argument
58 super.setPhysicsSpace(space);
59 if (space != null) {
60 space.addCollisionListener(this);
92 if (space == null) {
96 space.add(ghostObject);
98 space.addTickListener(this);
105 space.remove(this);
110 public void prePhysicsTick(PhysicsSpace space, float f) { argument
111 space
114 physicsTick(PhysicsSpace space, float f) argument
[all...]
/external/regex-re2/util/
H A Dstringprintf.cc11 char space[1024]; local
18 int result = vsnprintf(space, sizeof(space), format, backup_ap);
21 if ((result >= 0) && (result < sizeof(space))) {
23 dst->append(space, result);
28 int length = sizeof(space);
/external/clang/test/CodeGenCXX/
H A Dmangle-ms-templates.cpp61 namespace space { namespace
64 // CHECK: "\01??$foo@H@space@@YAABHABH@Z"
67 space::foo(42);
/external/kernel-headers/original/linux/
H A Defs_dir.h30 unsigned char space[EFS_DIRBSIZE - EFS_DIRBLK_HEADERSIZE]; member in struct:efs_dir
37 #define EFS_SLOTAT(dir, slot) EFS_REALOFF((dir)->space[slot])
/external/llvm/lib/Target/NVPTX/
H A DNVPTXutil.cpp38 char *space, int splen)
41 char *end = space + splen;
43 a = space;
56 *nbytes = a - space;
37 encode_leb128(uint64_t val, int *nbytes, char *space, int splen) argument
/external/chromium/net/proxy/
H A Dproxy_server.cc156 // Start by finding the first space (if any).
157 std::string::const_iterator space; local
158 for (space = begin; space != end; ++space) {
159 if (HttpUtil::IsLWS(*space)) {
164 // Everything to the left of the space is the scheme.
165 Scheme scheme = GetSchemeFromPacTypeInternal(begin, space);
167 // And everything to the right of the space is the
169 return FromSchemeHostAndPort(scheme, space, en
[all...]
/external/chromium/third_party/libevent/test/
H A Dbench.c85 int *cp, space; local
98 space = num_pipes / num_active;
99 space = space * 2;
101 write(pipes[i * space + 1], "e", 1);
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/constraints/
H A DFeature.java17 * common methods that take the evalueation space of the feature.
22 /** The evalueation space. */
23 protected Space space; field in class:Feature
38 * @param space
39 * the spatial's evaluation space
45 public Feature(Space space, Long oma, BlenderContext blenderContext) { argument
46 this.space = space;
56 * @param space
57 * the spatial's evaluation space
63 Feature(Spatial spatial, Space space, Long oma, BlenderContext blenderContext) argument
80 Feature(Bone bone, Space space, Long oma, BlenderContext blenderContext) argument
[all...]
/external/webkit/Source/WebCore/platform/graphics/chromium/
H A DGlyphPageTreeNodeChromiumWin.cpp52 // Lazily initializes space glyph
58 static wchar_t space = ' '; local
59 GetGlyphIndices(dc, &space, 1, spaceGlyph, 0);
140 Glyph spaceGlyph = 0; // Glyph for a space. Lazily filled.
146 // When this character should be a space, we ignore whatever the font
147 // says and use a space. Otherwise, if fonts don't map one of these
148 // space or zero width glyphs, we will get a box.
/external/webkit/Source/WebKit/win/
H A DWebURLAuthenticationChallenge.cpp111 /* [in] */ IWebURLProtectionSpace* space,
120 if (!space || !proposedCredential || !failureResponse || !sender)
125 hr = space->QueryInterface(&webSpace);
110 initWithProtectionSpace( IWebURLProtectionSpace* space, IWebURLCredential* proposedCredential, int previousFailureCount, IWebURLResponse* failureResponse, IWebError* error, IWebURLAuthenticationChallengeSender* sender) argument
/external/libppp/src/
H A Darp.c173 char space[128]; member in struct:__anon8007
/external/netperf/
H A Dnetcpu_procstat.c146 int space; local
161 /* Idle time is the 4th space-separated token */
163 for (space = 0; space < 4; space ++) {
/external/qemu/android/skin/
H A Dcomposer.c134 int n, count = areflist_count( p->space.viewports );
136 SkinViewport* v = areflist_get( p->space.viewports, n );
229 areflist_init( p->space.viewports );
238 while ( areflist_count( p->space.viewports ) )
239 skin_viewport_free( areflist_get( p->space.viewports, 0 ) );
345 skin_viewport( SkinPlate* space, SkinRect* rect, void* surface, int sx, int sy ) argument
350 v->space = space;
363 SkinPlate* space = v->space; local
[all...]
H A Dcomposer.h68 struct SkinPlateSpace space; member in union:SkinPlate
90 SkinPlate* space; member in struct:SkinViewport
97 extern SkinViewport* skin_viewport( SkinPlate* space, SkinRect* rect, void* surface, int sx, int sy );
/external/skia/gm/
H A Dgammatext.cpp44 CGColorSpaceRef space = CGColorSpaceCreateDeviceRGB(); local
46 8, bm.rowBytes(), space, BITMAP_INFO_RGB);
47 CFRelease(space);
/external/valgrind/main/coregrind/m_demangle/
H A Ddyn-string.c72 dyn_string_init (struct dyn_string *ds_struct_ptr, int space) argument
75 if (space == 0)
76 space = 1;
79 ds_struct_ptr->s = (char *) malloc (space);
83 ds_struct_ptr->s = XNEWVEC (char, space);
85 ds_struct_ptr->allocated = space;
99 dyn_string_new (int space) argument
106 if (!dyn_string_init (result, space))
113 dyn_string_init (result, space);
152 dyn_string_resize (dyn_string_t ds, int space) argument
[all...]
/external/webkit/Source/JavaScriptCore/assembler/
H A DAssemblerBuffer.h57 void ensureSpace(int space) argument
59 if (m_size > m_capacity - space)

Completed in 480 milliseconds

12345