OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:otherPosition
(Results
1 - 11
of
11
) 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
++);
Completed in 587 milliseconds