OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:positionY
(Results
1 - 9
of
9
) sorted by null
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
PositionObserver.java
15
void onPositionChanged(int positionX, int
positionY
);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
Dialog.js
165
var
positionY
= offset.y + (relativeToElement.offsetHeight - element.offsetHeight) / 2;
166
positionY
= Number.constrain(
positionY
, 0, window.innerHeight - element.offsetHeight);
169
element.style.top =
positionY
+ "px";
/frameworks/base/services/input/
SpriteController.h
180
positionX(0),
positionY
(0), layer(0), alpha(1.0f),
189
float
positionY
;
SpriteController.cpp
273
update.state.
positionY
- update.state.icon.hotSpotY);
438
if (mLocked.state.positionX != x || mLocked.state.
positionY
!= y) {
440
mLocked.state.
positionY
= y;
/development/samples/ApiDemos/src/com/example/android/apis/view/
GameView.java
420
float positionX,
positionY
;
427
positionY
= mRandom.nextInt(getHeight());
431
positionY
= mRandom.nextInt(getHeight());
435
positionY
= -size;
439
positionY
= getHeight() + size;
445
} while (mShip.distanceTo(positionX,
positionY
) < minDistance);
454
obstacle.setPosition(positionX,
positionY
);
/external/replicaisland/src/com/replica/replicaisland/
GameObjectFactory.java
691
public GameObject spawnPlayer(float positionX, float
positionY
) {
695
object.getPosition().set(positionX,
positionY
);
[
all
...]
/development/samples/ControllerSample/src/com/example/controllersample/
GameView.java
395
float positionX,
positionY
;
400
positionY
= mRandom.nextInt(getHeight());
404
positionY
= mRandom.nextInt(getHeight());
408
positionY
= -size;
412
positionY
= getHeight() + size;
422
if (currentShip.distanceTo(positionX,
positionY
) < minDistance) {
442
obstacle.setPosition(positionX,
positionY
);
[
all
...]
/external/chromium_org/chrome/test/functional/perf/endure_graphs/js/
plotter.js
801
var
positionY
= evtPageXY.y - canvasPageXY.y;
853
lineIndex, indexValueX, this.unitsY_, this.coordinates.yValue(
positionY
));
859
this.coordinatesOther.yValue(
positionY
));
867
indexValueX, this.unitsY_, this.coordinates.yValue(
positionY
));
871
1, indexValueX, this.unitsY_, this.coordinates.yValue(
positionY
));
880
var delta = this.coordinates.yValue(
positionY
) - baseline;
[
all
...]
/frameworks/base/core/java/android/widget/
Editor.java
761
private boolean isPositionVisible(int positionX, int
positionY
) {
765
position[1] =
positionY
;
[
all
...]
Completed in 3868 milliseconds