OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:countX
(Results
1 - 4
of
4
) sorted by null
/packages/apps/Launcher2/src/com/android/launcher2/
Folder.java
714
int
countX
= mContent.getCountX();
719
int oldCountX =
countX
;
721
if (
countX
* countY < count) {
723
if (
countX
<= countY &&
countX
< mMaxCountX) {
724
countX
++;
729
} else if ((countY - 1) *
countX
>= count && countY >=
countX
) {
731
} else if ((
countX
- 1) * countY >= count) {
732
countX
= Math.max(0, countX - 1)
[
all
...]
FocusHelper.java
291
int
countX
;
296
countX
= ((PagedViewCellLayout) parentLayout).getCellCountX();
300
countX
= ((PagedViewGridLayout) parentLayout).getCellCountX();
314
final int x = iconIndex %
countX
;
315
final int y = iconIndex /
countX
;
365
int newiconIndex = ((y - 1) *
countX
) + x;
377
int newiconIndex = Math.min(itemCount - 1, ((y + 1) *
countX
) + x);
[
all
...]
CellLayout.java
501
final int
countX
= mCountX;
513
for (int col = 0; col <=
countX
; col++) {
[
all
...]
/external/skia/src/core/
SkEdgeClipper.cpp
208
int
countX
= SkChopQuadAtXExtrema(&monoY[y * 2], monoX);
209
for (int x = 0; x <=
countX
; x++) {
406
int
countX
= SkChopCubicAtXExtrema(&monoY[y * 3], monoX);
407
for (int x = 0; x <=
countX
; x++) {
Completed in 370 milliseconds