/external/jmonkeyengine/engine/src/bullet-common/com/jme3/bullet/ |
H A D | PhysicsTickListener.java | 42 * @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 D | PhysicsControl.java | 16 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 D | CharacterControl.java | 31 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 D | GhostControl.java | 32 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 D | RigidBodyControl.java | 38 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 D | VehicleControl.java | 35 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 D | jmeBulletUtil.h | 60 void *space; member in class:jmeUserPointer
|
/external/ceres-solver/internal/ceres/ |
H A D | residual_block_utils.cc | 87 string space = "Residuals: "; local 88 result += space;
|
H A D | stringprintf.cc | 55 char space[1024]; local 62 int result = vsnprintf(space, sizeof(space), format, backup_ap); 65 if (result < sizeof(space)) { 68 dst->append(space, result); 73 // Error or MSVC running out of space. MSVC 8.0 and higher 74 // can be asked about space needed with the special idiom below:
|
/external/jmonkeyengine/engine/src/test/jme3test/bullet/ |
H A D | PhysicsTestHelper.java | 38 * @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 D | BombControl.java | 57 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 D | stringprintf.cc | 11 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/toybox/toys/posix/ |
H A D | wc.c | 50 int i, len, clen=1, space; local 68 space = iswspace(wchar); 69 } else space = isspace(toybuf[i]); 72 if (space) word=0;
|
/external/valgrind/memcheck/tests/amd64/ |
H A D | insn-pcmpistri.c | 43 void *space; local 44 posix_memalign(&space, 16, roundup); 45 memset(space, 'x', roundup); 46 memcpy(space, s, len); 48 const char *const s_copy = space; 64 free(space);
|
/external/ceres-solver/include/ceres/internal/ |
H A D | manual_constructor.h | 31 // ManualConstructor statically-allocates space in which to store some 37 // (When I say ManualConstructor statically allocates space, I mean that 114 inline void* space() { function in class:ceres::internal::ManualConstructor 120 new(space()) Type; 125 new(space()) Type(p1); 130 new(space()) Type(p1, p2); 135 new(space()) Type(p1, p2, p3); 140 new(space()) Type(p1, p2, p3, p4); 146 new(space()) Type(p1, p2, p3, p4, p5); 153 new(space()) Typ [all...] |
/external/harfbuzz_ng/src/ |
H A D | hb-fallback-shape.cc | 108 hb_codepoint_t space; local 109 bool has_space = font->get_glyph (' ', 0, &space); 121 info[i].codepoint = space;
|
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/constraints/ |
H A D | Feature.java | 17 * 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/protobuf/src/google/protobuf/stubs/ |
H A D | stringprintf.cc | 59 char space[kSpaceLength]; local 66 int result = vsnprintf(space, kSpaceLength, format, backup_ap); 72 dst->append(space, result); 77 // Error or MSVC running out of space. MSVC 8.0 and higher 78 // can be asked about space needed with the special idiom below:
|
/external/jetty/src/java/org/eclipse/jetty/io/ |
H A D | ByteArrayBuffer.java | 384 if (max<0||max>space()) 385 max=space(); 411 public int space() method in class:ByteArrayBuffer
|
/external/libcxx/src/ |
H A D | memory.cpp | 207 align(size_t alignment, size_t size, void*& ptr, size_t& space) argument 210 if (size <= space) 215 if (d <= space - size) 219 space -= d;
|
/external/netperf/ |
H A D | netcpu_procstat.c | 146 int space; local 161 /* Idle time is the 4th space-separated token */ 163 for (space = 0; space < 4; space ++) {
|
/external/pdfium/core/include/fxcrt/ |
H A D | fx_xml.h | 30 const CFX_WideString* Lookup(FX_BSTR space, FX_BSTR name) const; 31 void SetAt(FX_BSTR space, FX_BSTR name, FX_WSTR value); 32 void RemoveAt(FX_BSTR space, FX_BSTR name); 82 void GetAttrByIndex(int index, CFX_ByteString &space, CFX_ByteString &name, CFX_WideString &value) const; 94 FX_BOOL GetAttrValue(FX_BSTR space, FX_BSTR name, CFX_WideString& attribute) const; 95 CFX_WideString GetAttrValue(FX_BSTR space, FX_BSTR name) const argument 98 GetAttrValue(space, name, attr); 110 FX_BOOL GetAttrInteger(FX_BSTR space, FX_BSTR name, int& attribute) const; 111 int GetAttrInteger(FX_BSTR space, FX_BSTR name) const argument 114 GetAttrInteger(space, nam 127 GetAttrFloat(FX_BSTR space, FX_BSTR name) const argument 144 GetElement(FX_BSTR space, FX_BSTR tag) const argument [all...] |
/external/valgrind/coregrind/m_demangle/ |
H A D | dyn-string.c | 72 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/e2fsprogs/lib/quota/ |
H A D | mkquota.c | 292 qsize_t space) 301 log_debug("ADD_DATA: Inode: %u, UID/GID: %u/%u, space: %ld", ino, 303 inode_gid(*inode), space); 309 dq->dq_dqb.dqb_curspace += space; 318 qsize_t space) 327 log_debug("SUB_DATA: Inode: %u, UID/GID: %u/%u, space: %ld", ino, 329 inode_gid(*inode), space); 334 dq->dq_dqb.dqb_curspace -= space; 370 qsize_t space; local 395 space 291 quota_data_add(quota_ctx_t qctx, struct ext2_inode *inode, ext2_ino_t ino, qsize_t space) argument 317 quota_data_sub(quota_ctx_t qctx, struct ext2_inode *inode, ext2_ino_t ino, qsize_t space) argument [all...] |
/external/google-breakpad/src/client/mac/handler/ |
H A D | breakpad_nlist_64.cc | 345 nlist_type space[BUFSIZ/sizeof (nlist_type)]; local 346 register_t m = sizeof (space); 350 if (read(fd, (char *)space, m) != m) 357 for (nlist_type* q = space; (m -= sizeof(nlist_type)) >= 0; q++) {
|