/external/jmonkeyengine/engine/src/bullet-native/ |
D | com_jme3_bullet_PhysicsSpace.cpp | 51 jmePhysicsSpace* space = new jmePhysicsSpace(env, object); in Java_com_jme3_bullet_PhysicsSpace_createPhysicsSpace() local 52 if (space == NULL) { in Java_com_jme3_bullet_PhysicsSpace_createPhysicsSpace() 57 space->createPhysicsSpace(minX, minY, minZ, maxX, maxY, maxZ, broadphase, threading); in Java_com_jme3_bullet_PhysicsSpace_createPhysicsSpace() 58 return reinterpret_cast<jlong>(space); in Java_com_jme3_bullet_PhysicsSpace_createPhysicsSpace() 68 jmePhysicsSpace* space = reinterpret_cast<jmePhysicsSpace*>(spaceId); in Java_com_jme3_bullet_PhysicsSpace_stepSimulation() local 69 if (space == NULL) { in Java_com_jme3_bullet_PhysicsSpace_stepSimulation() 74 space->stepSimulation(tpf, maxSteps, accuracy); in Java_com_jme3_bullet_PhysicsSpace_stepSimulation() 84 jmePhysicsSpace* space = reinterpret_cast<jmePhysicsSpace*>(spaceId); in Java_com_jme3_bullet_PhysicsSpace_addCollisionObject() local 86 if (space == NULL) { in Java_com_jme3_bullet_PhysicsSpace_addCollisionObject() 97 userPointer -> space = space; in Java_com_jme3_bullet_PhysicsSpace_addCollisionObject() [all …]
|
/external/jmonkeyengine/engine/src/bullet-common/com/jme3/bullet/control/ |
D | GhostControl.java | 32 protected PhysicsSpace space = null; field in GhostControl 100 if (space != null) { in setEnabled() 106 space.addCollisionObject(this); in setEnabled() 109 space.removeCollisionObject(this); in setEnabled() 128 if (enabled && space != null && space.getDebugManager() != null) { in render() 130 attachDebugShape(space.getDebugManager()); in render() 140 public void setPhysicsSpace(PhysicsSpace space) { in setPhysicsSpace() argument 141 if (space == null) { in setPhysicsSpace() 142 if (this.space != null) { in setPhysicsSpace() 143 this.space.removeCollisionObject(this); in setPhysicsSpace() [all …]
|
D | CharacterControl.java | 31 protected PhysicsSpace space = null; field in CharacterControl 97 if (space != null) { in setEnabled() 102 space.addCollisionObject(this); in setEnabled() 105 space.removeCollisionObject(this); in setEnabled() 155 if (enabled && space != null && space.getDebugManager() != null) { in render() 157 attachDebugShape(space.getDebugManager()); in render() 166 public void setPhysicsSpace(PhysicsSpace space) { in setPhysicsSpace() argument 167 if (space == null) { in setPhysicsSpace() 168 if (this.space != null) { in setPhysicsSpace() 169 this.space.removeCollisionObject(this); in setPhysicsSpace() [all …]
|
D | RigidBodyControl.java | 38 protected PhysicsSpace space = null; field in RigidBodyControl 138 if (space != null) { in setEnabled() 144 space.addCollisionObject(this); in setEnabled() 147 space.removeCollisionObject(this); in setEnabled() 213 if (enabled && space != null && space.getDebugManager() != null) { in render() 215 attachDebugShape(space.getDebugManager()); in render() 226 public void setPhysicsSpace(PhysicsSpace space) { in setPhysicsSpace() argument 227 if (space == null) { in setPhysicsSpace() 228 if (this.space != null) { in setPhysicsSpace() 229 this.space.removeCollisionObject(this); in setPhysicsSpace() [all …]
|
D | VehicleControl.java | 35 protected PhysicsSpace space = null; field in VehicleControl 154 if (space != null) { in setEnabled() 160 space.addCollisionObject(this); in setEnabled() 163 space.removeCollisionObject(this); in setEnabled() 190 if (enabled && space != null && space.getDebugManager() != null) { in render() 192 attachDebugShape(space.getDebugManager()); in render() 231 public void setPhysicsSpace(PhysicsSpace space) { in setPhysicsSpace() argument 232 createVehicle(space); in setPhysicsSpace() 233 if (space == null) { in setPhysicsSpace() 234 if (this.space != null) { in setPhysicsSpace() [all …]
|
D | KinematicRagdollControl.java | 101 protected PhysicsSpace space; field in KinematicRagdollControl 464 if (space == null) { in addToPhysicsSpace() 468 space.add(baseRigidBody); in addToPhysicsSpace() 474 space.add(physicsBoneLink.rigidBody); in addToPhysicsSpace() 476 space.add(physicsBoneLink.joint); in addToPhysicsSpace() 485 if (space == null) { in removeFromPhysicsSpace() 489 space.remove(baseRigidBody); in removeFromPhysicsSpace() 494 space.remove(physicsBoneLink.joint); in removeFromPhysicsSpace() 496 space.remove(physicsBoneLink.rigidBody); in removeFromPhysicsSpace() 514 if (!enabled && space != null) { in setEnabled() [all …]
|
/external/jmonkeyengine/engine/src/test/jme3test/bullet/ |
D | PhysicsHoverControl.java | 59 protected PhysicsSpace space = null; field in PhysicsHoverControl 129 public void prePhysicsTick(PhysicsSpace space, float f) { in prePhysicsTick() argument 169 public void physicsTick(PhysicsSpace space, float f) { in physicsTick() argument 179 if (enabled && space != null && space.getDebugManager() != null) { in render() 181 attachDebugShape(space.getDebugManager()); in render() 191 public void setPhysicsSpace(PhysicsSpace space) { in setPhysicsSpace() argument 192 if (space == null) { in setPhysicsSpace() 193 if (this.space != null) { in setPhysicsSpace() 194 this.space.removeCollisionObject(this); in setPhysicsSpace() 195 this.space.removeTickListener(this); in setPhysicsSpace() [all …]
|
D | BombControl.java | 57 public void setPhysicsSpace(PhysicsSpace space) { in setPhysicsSpace() argument 58 super.setPhysicsSpace(space); in setPhysicsSpace() 59 if (space != null) { in setPhysicsSpace() 60 space.addCollisionListener(this); in setPhysicsSpace() 92 if (space == null) { in collision() 96 space.add(ghostObject); in collision() 98 space.addTickListener(this); in collision() 105 space.remove(this); in collision() 110 public void prePhysicsTick(PhysicsSpace space, float f) { in prePhysicsTick() argument 111 space.removeCollisionListener(this); in prePhysicsTick() [all …]
|
D | PhysicsTestHelper.java | 40 … static void createPhysicsTestWorld(Node rootNode, AssetManager assetManager, PhysicsSpace space) { in createPhysicsTestWorld() argument 57 space.add(floorGeometry); in createPhysicsTestWorld() 68 space.add(boxGeometry); in createPhysicsTestWorld() 78 space.add(sphereGeometry); in createPhysicsTestWorld() 82 …c void createPhysicsTestWorldSoccer(Node rootNode, AssetManager assetManager, PhysicsSpace space) { in createPhysicsTestWorldSoccer() argument 99 space.add(floorGeometry); in createPhysicsTestWorldSoccer() 111 space.add(ballGeometry); in createPhysicsTestWorldSoccer() 121 space.add(boxGeometry); in createPhysicsTestWorldSoccer() 177 …atic void createBallShooter(final Application app, final Node rootNode, final PhysicsSpace space) { in createBallShooter() argument 198 space.add(bulletControl); in createBallShooter()
|
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/constraints/ |
D | Feature.java | 23 protected Space space; field in Feature 45 public Feature(Space space, Long oma, BlenderContext blenderContext) { in Feature() argument 46 this.space = space; in Feature() 63 public Feature(Spatial spatial, Space space, Long oma, BlenderContext blenderContext) { in Feature() argument 64 this(space, oma, blenderContext); in Feature() 80 public Feature(Bone bone, Space space, Long oma, BlenderContext blenderContext) { in Feature() argument 81 this(space, oma, blenderContext); in Feature() 124 switch (space) { in getTransform() 155 throw new IllegalStateException("Invalid space type for target object: " + space.toString()); in getTransform() 159 switch (space) { in getTransform() [all …]
|
/external/llvm/test/MC/AsmParser/ |
D | directive_space.s | 4 # CHECK: .space 1 6 .space 1 9 # CHECK: .space 2,3 11 .space 2, 3 14 # CHECK: .space 1
|
/external/valgrind/main/coregrind/m_demangle/ |
D | dyn-string.c | 72 dyn_string_init (struct dyn_string *ds_struct_ptr, int space) in dyn_string_init() argument 75 if (space == 0) in dyn_string_init() 76 space = 1; in dyn_string_init() 79 ds_struct_ptr->s = (char *) malloc (space); in dyn_string_init() 83 ds_struct_ptr->s = XNEWVEC (char, space); in dyn_string_init() 85 ds_struct_ptr->allocated = space; in dyn_string_init() 99 dyn_string_new (int space) in dyn_string_new() argument 106 if (!dyn_string_init (result, space)) in dyn_string_new() 113 dyn_string_init (result, space); in dyn_string_new() 152 dyn_string_resize (dyn_string_t ds, int space) in dyn_string_resize() argument [all …]
|
/external/v8/src/ |
D | json.js | 307 function JSONStringify(value, replacer, space) { argument 316 if (IS_OBJECT(space)) { 318 if (IS_NUMBER_WRAPPER(space)) { 319 space = ToNumber(space); 320 } else if (IS_STRING_WRAPPER(space)) { 321 space = ToString(space); 325 if (IS_NUMBER(space)) { 326 space = MathMax(0, MathMin(ToInteger(space), 10)); 327 gap = SubString(" ", 0, space); 328 } else if (IS_STRING(space)) { [all …]
|
D | serialize.cc | 595 Address Deserializer::Allocate(int space_index, Space* space, int size) { in Allocate() argument 603 reinterpret_cast<NewSpace*>(space)->AllocateRaw(size); in Allocate() 606 reinterpret_cast<PagedSpace*>(space)->AllocateRaw(size); in Allocate() 615 LargeObjectSpace* lo_space = reinterpret_cast<LargeObjectSpace*>(space); in Allocate() 637 HeapObject* Deserializer::GetAddressFromEnd(int space) { in GetAddressFromEnd() argument 639 ASSERT(!SpaceIsLarge(space)); in GetAddressFromEnd() 641 return HeapObject::FromAddress(high_water_[space] - offset); in GetAddressFromEnd() 647 HeapObject* Deserializer::GetAddressFromStart(int space) { in GetAddressFromStart() argument 649 if (SpaceIsLarge(space)) { in GetAddressFromStart() 654 if (space == NEW_SPACE) { in GetAddressFromStart() [all …]
|
D | serialize.h | 298 static inline bool SpaceIsLarge(int space) { return space >= kLargeData; } in SpaceIsLarge() argument 299 static inline bool SpaceIsPaged(int space) { in SpaceIsPaged() argument 300 return space >= FIRST_PAGED_SPACE && space <= LAST_PAGED_SPACE; in SpaceIsPaged() 361 Object** start, Object** end, int space, Address object_address); 362 HeapObject* GetAddressFromStart(int space); 363 inline HeapObject* GetAddressFromEnd(int space); 364 Address Allocate(int space_number, Space* space, int size); 365 void ReadObject(int space_number, Space* space, Object** write_back); 464 int CurrentAllocationAddress(int space) { in CurrentAllocationAddress() argument 465 if (SpaceIsLarge(space)) return large_object_total_; in CurrentAllocationAddress() [all …]
|
/external/regex-re2/util/ |
D | stringprintf.cc | 11 char space[1024]; in StringAppendV() local 18 int result = vsnprintf(space, sizeof(space), format, backup_ap); in StringAppendV() 21 if ((result >= 0) && (result < sizeof(space))) { in StringAppendV() 23 dst->append(space, result); in StringAppendV() 28 int length = sizeof(space); in StringAppendV()
|
/external/stlport/test/unit/ |
D | string_test.cpp | 953 string space(1, ' '); in template_expression() local 1003 CPPUNIT_CHECK( (one + space) == "one " ); in template_expression() 1006 CPPUNIT_CHECK( ((one + space) + "two") == "one two" ); in template_expression() 1007 CPPUNIT_CHECK( ("one" + (space + two)) == "one two" ); in template_expression() 1008 CPPUNIT_CHECK( ((one + space) + two) == "one two" ); in template_expression() 1009 CPPUNIT_CHECK( (one + (space + two)) == "one two" ); in template_expression() 1010 CPPUNIT_CHECK( ((one + space) + 't') == "one t" ); in template_expression() 1011 CPPUNIT_CHECK( ('o' + (space + two)) == "o two" ); in template_expression() 1014 CPPUNIT_CHECK( ((one + space) + (two + space)) == "one two " ); in template_expression() 1019 result = one + space + two; in template_expression() [all …]
|
/external/llvm/test/MC/MachO/ |
D | relax-recompute-align.s | 26 .space 0x8a, 0x90 28 .space (0xb3 - 0x8f), 0x90 30 .space (0xcd - 0xb5), 0x90 33 .space (0x130 - 0xd0),0x90
|
/external/clang/test/ARCMT/ |
D | migrate-space-in-path.m | 2 // RUN: %clang_cc1 -arcmt-migrate -mt-migrate-directory %t.migrate %S/"with space"/test1.m.in -x ob… 3 // RUN: %clang_cc1 -arcmt-migrate -mt-migrate-directory %t.migrate %S/"with space"/test2.m.in -x ob… 4 …test -verify-transformed-files %S/"with space"/test1.m.in.result %S/"with space"/test2.m.in.result…
|
/external/elfutils/src/ |
D | ldlex.l | 84 FILENAMECHAR [^][{}[:space:]():;]+ 88 WHITE [[:space:]]+ 103 ^"#"ifdef/[[:space:]] { BEGIN (handle_ifdef ()); } 104 ^"#"else/[[:space:]\n] { eat_to_eol (true); 107 ^"#"elifdef/[[:space:]] { eat_to_eol (false); 110 ^"#"endif/[[:space:]\n] { eat_to_eol (true) ; } 112 <IGNORE>^"#"ifdef/[[:space:]\n] { eat_to_eol (false); 114 <IGNORE>^"#"else/[[:space:]\n] { eat_to_eol (true); 123 <IGNORE>^"#"elifdef/[[:space:]] { assert (prepdepth > 0); 131 <IGNORE>^"#"endif/[[:space:]\n] { eat_to_eol (true);
|
/external/chromium/crypto/third_party/nss/ |
D | blapi.h | 61 extern SECStatus SHA256_Flatten(SHA256Context *cx,unsigned char *space); 62 extern SHA256Context * SHA256_Resurrect(unsigned char *space, void *arg); 79 extern SECStatus SHA512_Flatten(SHA512Context *cx,unsigned char *space); 80 extern SHA512Context * SHA512_Resurrect(unsigned char *space, void *arg); 97 extern SECStatus SHA384_Flatten(SHA384Context *cx,unsigned char *space); 98 extern SHA384Context * SHA384_Resurrect(unsigned char *space, void *arg);
|
/external/qemu/android/skin/ |
D | composer.c | 134 int n, count = areflist_count( p->space.viewports ); in skin_plate_invalidate_() 136 SkinViewport* v = areflist_get( p->space.viewports, n ); in skin_plate_invalidate_() 229 areflist_init( p->space.viewports ); in skin_plate_space() 238 while ( areflist_count( p->space.viewports ) ) in skin_plate_free() 239 skin_viewport_free( areflist_get( p->space.viewports, 0 ) ); in skin_plate_free() 345 skin_viewport( SkinPlate* space, SkinRect* rect, void* surface, int sx, int sy ) in skin_viewport() argument 350 v->space = space; in skin_viewport() 363 SkinPlate* space = v->space; in skin_viewport_free() local 364 if (space != NULL) { in skin_viewport_free() 365 areflist_delFirst( space->space.viewports, v ); in skin_viewport_free() [all …]
|
/external/srec/make/asr/ |
D | Makefile.defs | 230 $(subst $(space),|,'Failed to select operating system with $$(ASR_OS) == "$(ASR_$(ASR_OS))"') 297 $(subst $(space),|,'Failed to select operating system with $$(ASR_HOST_OS) == "$(ASR_HOST_OS)"') 363 $(subst $(space),|,'Failed to select operating system with $$(ASR_TARGET_OS) == "$(ASR_TARGET_OS)"') 432 $(subst $(space),|,'$$(ASR_CPU_FAMILY_TYPE) defaulted to "$(ASR_CPU_FAMILY_TYPE)"') 454 $(subst $(space),|,\ 475 $(subst $(space),|,\ 532 $(subst $(space),|,'$$(ASR_CPU_FAMILY_TYPE) defaulted to "$(ASR_CPU_FAMILY_TYPE)"') 553 $(subst $(space),|,\ 573 $(subst $(space),|,\ 628 $(subst $(space),|,'$$(ASR_CPU_FAMILY_TYPE) defaulted to "$(ASR_CPU_FAMILY_TYPE)"') [all …]
|
/external/valgrind/main/memcheck/tests/linux/ |
D | with-space.vgtest | 1 # Use the "prereq" command to copy manuel1 to a filename containing a space. 9 # the renaming in the first place by just using 'with space' as the 11 prereq: cp ../manuel1 'with space' 12 prog: 'with space' 14 cleanup: rm 'with space'
|
/external/chromium/chrome/common/extensions/docs/css/ |
D | print.css | 13 white-space: pre-wrap; /* css-3 */ 14 white-space: -moz-pre-wrap; /* Mozilla, since 1999 */ 15 white-space: -pre-wrap; /* Opera 4-6 */ 16 white-space: -o-pre-wrap; /* Opera 7 */
|