OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:countx
(Results
1 - 6
of
6
) sorted by null
/packages/apps/Launcher2/src/com/android/launcher2/
Folder.java
749
int
countX
= mContent.getCountX();
754
int oldCountX =
countX
;
756
if (
countX
* countY < count) {
758
if ((
countX
<= countY || countY == mMaxCountY) &&
countX
< mMaxCountX) {
759
countX
++;
764
} else if ((countY - 1) *
countX
>= count && countY >=
countX
) {
766
} else if ((
countX
- 1) * countY >= count) {
767
countX
= Math.max(0, countX - 1)
[
all
...]
FocusHelper.java
283
int
countX
;
288
countX
= ((PagedViewCellLayout) parentLayout).getCellCountX();
292
countX
= ((PagedViewGridLayout) parentLayout).getCellCountX();
306
final int x = iconIndex %
countX
;
307
final int y = iconIndex /
countX
;
357
int newiconIndex = ((y - 1) *
countX
) + x;
369
int newiconIndex = Math.min(itemCount - 1, ((y + 1) *
countX
) + x);
[
all
...]
CellLayout.java
387
final int
countX
= mCountX;
399
for (int col = 0; col <=
countX
; col++) {
[
all
...]
/development/tools/emulator/system/camera/
EmulatedFakeCameraDevice.cpp
260
int
countx
= checkxremainder;
local
271
countx
+= 2;
272
if(
countx
>= size) {
273
countx
= 0;
/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++) {
/frameworks/base/services/camera/libcameraservice/
FakeCamera.cpp
403
int
countx
= checkxremainder;
local
407
if(
countx
++ >= size) {
408
countx
=0;
Completed in 65 milliseconds