HomeSort by relevance Sort by last modified time
    Searched refs:otherPosition (Results 1 - 12 of 12) sorted by null

  /external/replicaisland/src/com/replica/replicaisland/
AABoxCollisionVolume.java 69 * @param otherPosition The world position of the other volume.
74 Vector2 otherPosition, FlipInfo otherFlip) {
80 final float otherLeft = other.getMinXPosition(otherFlip) + otherPosition.x;
81 final float otherRight = other.getMaxXPosition(otherFlip) + otherPosition.x;
82 final float otherBottom = other.getMinYPosition(otherFlip) + otherPosition.y;
83 final float otherTop = other.getMaxYPosition(otherFlip) + otherPosition.y;
SphereCollisionVolume.java 86 Vector2 otherPosition, FlipInfo otherFlip) {
91 result = other.intersects(otherPosition, otherFlip, this, position, flip);
99 mWorkspaceVector2.set(otherPosition);
112 mWorkspaceVector2.set(otherPosition);
CollisionVolume.java 56 Vector2 otherPosition, FlipInfo otherFlip);
GameObjectCollisionSystem.java 120 final Vector2 otherPosition = other.object.getPosition();
126 if (otherPosition.x + other.boundingVolume.getMinXPosition(sOtherFlip) > maxX) {
135 other.boundingVolume, otherPosition, sOtherFlip)) {
142 otherPosition,
161 otherPosition,
  /libcore/luni/src/main/java/java/nio/
DoubleBuffer.java 210 int otherPosition = otherBuffer.position;
214 double b = otherBuffer.get(otherPosition++);
FloatBuffer.java 211 int otherPosition = otherBuffer.position;
215 float b = otherBuffer.get(otherPosition++);
IntBuffer.java 200 int otherPosition = otherBuffer.position;
203 equalSoFar = get(myPosition++) == otherBuffer.get(otherPosition++);
LongBuffer.java 202 int otherPosition = otherBuffer.position;
205 equalSoFar = get(myPosition++) == otherBuffer.get(otherPosition++);
ShortBuffer.java 202 int otherPosition = otherBuffer.position;
205 equalSoFar = get(myPosition++) == otherBuffer.get(otherPosition++);
ByteBuffer.java 344 int otherPosition = otherBuffer.position;
347 equalSoFar = get(myPosition++) == otherBuffer.get(otherPosition++);
    [all...]
CharBuffer.java 259 int otherPosition = otherBuffer.position;
262 equalSoFar = get(myPosition++) == otherBuffer.get(otherPosition++);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderLayer.cpp 344 const EPosition otherPosition = other->renderer()->style()->position();
367 const bool otherIsRootFixedPos = otherPosition == FixedPosition && otherContainingBlock->enclosingLayer() == rootLayer;
    [all...]

Completed in 196 milliseconds