OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:countY
(Results
1 - 12
of
12
) sorted by null
/packages/apps/Launcher2/src/com/android/launcher2/
Folder.java
765
int
countY
= mContent.getCountY();
770
int oldCountY =
countY
;
771
if (countX *
countY
< count) {
773
if ((countX <=
countY
||
countY
== mMaxCountY) && countX < mMaxCountX) {
775
} else if (
countY
< mMaxCountY) {
776
countY
++;
778
if (
countY
== 0)
countY
++;
779
} else if ((
countY
- 1) * countX >= count && countY >= countX)
[
all
...]
FocusHelper.java
283
int
countY
;
288
countY
= ((PagedViewCellLayout) parentLayout).getCellCountY();
292
countY
= ((PagedViewGridLayout) parentLayout).getCellCountY();
367
if (y < (
countY
- 1)) {
[
all
...]
AppWidgetResizeFrame.java
242
int
countY
= mCellLayout.getCountY();
288
vSpanInc = Math.min(
countY
- (cellY + spanY), vSpanInc);
CellLayout.java
[
all
...]
/packages/apps/Launcher3/src/com/android/launcher3/
ShortcutAndWidgetContainer.java
58
int countX, int
countY
) {
64
mCountY =
countY
;
AppWidgetResizeFrame.java
250
int
countY
= mCellLayout.getCountY();
296
vSpanInc = Math.min(
countY
- (cellY + spanY), vSpanInc);
DeviceProfile.java
404
public static int calculateCellHeight(int height, int
countY
) {
405
return height /
countY
;
LauncherModel.java
[
all
...]
CellLayout.java
[
all
...]
Workspace.java
[
all
...]
/external/skia/src/core/
SkEdgeClipper.cpp
208
int
countY
= SkChopQuadAtYExtrema(srcPts, monoY);
209
for (int y = 0; y <=
countY
; y++) {
375
int
countY
= SkChopCubicAtYExtrema(srcPts, monoY);
376
for (int y = 0; y <=
countY
; y++) {
/packages/apps/Launcher3/src/com/android/launcher3/util/
FocusLogic.java
495
private static boolean isValid(int xPos, int yPos, int countX, int
countY
) {
496
return (0 <= xPos && xPos < countX && 0 <= yPos && yPos <
countY
);
Completed in 213 milliseconds