/prebuilts/go/darwin-x86/misc/cgo/life/ |
life.go | 7 package life package 9 // #include "life.h"
|
main.go | 9 // Run the game of life in C using Go for parallelization. 36 life.Run(*gen, *dim, *dim, a[:])
|
/prebuilts/go/linux-x86/misc/cgo/life/ |
life.go | 7 package life package 9 // #include "life.h"
|
main.go | 9 // Run the game of life in C using Go for parallelization. 36 life.Run(*gen, *dim, *dim, a[:])
|
/external/replicaisland/src/com/replica/replicaisland/ |
LifetimeComponent.java | 22 * This component allows objects to die and be deleted when their life is reduced to zero or they 103 if (parentObject.life > 0 && mVulnerableToDeathTiles) { 109 parentObject.life = 0; 114 if (parentObject.life > 0 && mDieOnHitBackground) { 116 parentObject.life = 0; 120 if (parentObject.life <= 0) {
|
HitReactionComponent.java | 110 parent.life = 0; 174 if (!mForceInvincibility && !mInvincible && parent.life > 0 && !sameTeam) { 175 parent.life -= 1; 177 if (mBounceOnHit && parent.life > 0) { 201 parent.life = 0; 204 if (mInventoryUpdate != null && parent.life > 0) { 210 if (mDieOnCollect && parent.life > 0) { 211 parent.life = 0; 215 if (mPossessionComponent != null && parent.life > 0 && attacker.life > 0) [all...] |
GhostComponent.java | 64 if (parentObject.life > 0) { 81 parentObject.life = 0; 138 if (parentObject.life == 0) { 169 parentObject.life = 0;
|
HitPlayerComponent.java | 51 if (player != null && player.life > 0) {
|
GameObject.java | 48 public int life; field in class:GameObject 111 life = DEFAULT_LIFE;
|
PatrolComponent.java | 77 if ((mFlying || parentObject.touchingGround()) && parentObject.life > 0) { 109 if (mTurnToFacePlayer && player != null && player.life > 0) { 192 } else if (!mFlying && !parentObject.touchingGround() && parentObject.life > 0) { 218 if (mAttackAtDistance > 0 && player != null && player.life > 0
|
PlayerComponent.java | 233 parentObject.life = mDifficultyConstants.getMaxPlayerLife(); 269 if (parentObject.life <= 0) { 273 parentObject.life = 0; 285 parentObject.life = 0; 568 parent.life += mDifficultyConstants.getDDAStage2LifeBoost(); 571 parent.life += mDifficultyConstants.getDDAStage1LifeBoost();
|
LauncherComponent.java | 68 if (mShot.life <= 0) {
|
TheSourceComponent.java | 66 if (parentObject.life > 0) {
|
AnimationComponent.java | 194 // Turn on visual effects (smoke, etc) when the player's life reaches 1. 196 if (parentObject.life == 1 && !mDamageSwap.getCurrentlySwapped()) { 198 } else if (parentObject.life != 1 && mDamageSwap.getCurrentlySwapped()) {
|
GameObjectFactory.java | [all...] |
NPCAnimationComponent.java | 349 if (parentObject.life > 0 && parentObject.getCurrentAction() != ActionType.DEATH) {
|
NPCComponent.java | 144 } else if (parentObject.life <= 0) {
|
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/particles/emitters/ |
RegularEmitter.java | 33 protected int life, lifeDiff; field in class:RegularEmitter 61 lifeChannel = controller.particles.addChannel(ParticleChannels.Life); 78 life = (int)lifeValue.newLowValue(); 81 lifeDiff -= life; 96 int currentTotaLife = life + (int)(lifeDiff * lifeValue.getScale(percent)), 240 life = emitter.life; 261 json.writeValue("life", lifeValue); 272 lifeValue = json.readValue("life", ScaledNumericValue.class, jsonData);
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/hppa/parse/ |
labelbug.s | 10 ; Input scrubbing in gas makes life a real nightmare for assemblers
|
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g2d/ |
ParticleEmitter.java | 74 private int life, lifeDiff;
field in class:ParticleEmitter 351 life = (int)lifeValue.newLowValue();
353 if (!lifeValue.isRelative()) lifeDiff -= life;
391 particle.currentLife = particle.life = life + (int)(lifeDiff * lifeValue.getScale(percent));
527 int life = particle.currentLife - deltaMillis;
local 528 if (life <= 0) return false;
529 particle.currentLife = life;
531 float percent = 1 - particle.currentLife / (float)particle.life;
871 output.write("- Life - \n"); 1001 protected int life, currentLife; field in class:ParticleEmitter.Particle [all...] |
/external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletSoftBody/ |
btSparseSDF.h | 112 const int life=puid-lifetime; local 121 if(pc->puid<life)
|
/external/wpa_supplicant_8/src/pae/ |
ieee802_1x_kay.h | 165 u32 life, enum mka_created_mode mode,
|
/external/harfbuzz_ng/win32/ |
create-lists-msvc.mak | 3 # This is a "fact-of-life" regarding NMake Makefiles...
|
/prebuilts/go/darwin-x86/src/runtime/ |
signal_amd64x.go | 63 // in real life, people will probably search for it and find this code.
|
/prebuilts/go/linux-x86/src/runtime/ |
signal_amd64x.go | 63 // in real life, people will probably search for it and find this code.
|