OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:CONTENT_SIZE
(Results
1 - 3
of
3
) sorted by null
/packages/apps/Gallery2/src/com/android/gallery3d/data/
DownloadEntry.java
29
public static final String
CONTENT_SIZE
= "_size";
/external/skia/experimental/Networking/
SkSockets.h
18
#define
CONTENT_SIZE
1004
/packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
TiledTexture.java
40
private static final int
CONTENT_SIZE
= 254;
42
private static final int TILE_SIZE =
CONTENT_SIZE
+ 2 * BORDER_SIZE;
148
if (r <
CONTENT_SIZE
) sCanvas.drawLine(r, 0, r, TILE_SIZE, sPaint);
149
if (b <
CONTENT_SIZE
) sCanvas.drawLine(0, b, TILE_SIZE, b, sPaint);
207
for (int x = 0, w = mWidth; x < w; x +=
CONTENT_SIZE
) {
208
for (int y = 0, h = mHeight; y < h; y +=
CONTENT_SIZE
) {
214
Math.min(
CONTENT_SIZE
, mWidth - x),
215
Math.min(
CONTENT_SIZE
, mHeight - y));
Completed in 1838 milliseconds