Searched refs:col (Results 26 - 31 of 31) sorted by relevance

12

/frameworks/base/tools/aapt/
H A DImages.cpp811 uint32_t colors[256], col; local
865 col = (uint32_t) ((rr << 24) | (gg << 16) | (bb << 8) | aa);
868 if (colors[idx] == col) {
883 colors[num_colors++] = col;
942 col = colors[idx];
943 rgbPalette[idx].red = (png_byte) ((col >> 24) & 0xff);
944 rgbPalette[idx].green = (png_byte) ((col >> 16) & 0xff);
945 rgbPalette[idx].blue = (png_byte) ((col >> 8) & 0xff);
946 alphaPalette[idx] = (png_byte) (col & 0xff);
/frameworks/base/tools/preload/
H A Dsorttable.js81 if (!headrow[i].className.match(/\bsorttable_nosort\b/)) { // skip this col
145 col = this.sorttable_columnindex;
148 row_array[row_array.length] = [sorttable.getInnerText(rows[j].cells[col]), rows[j]];
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
H A Dh264bsd_intra_prediction.c548 u32 row, col; local
563 col = mbNum - row * width;
566 ptr = image->data + row * 16 * width + col * 16;
570 * sample above-left if col is zero. However, usage of pels in prediction
580 if (col)
588 ptr = image->data + picSize * 256 + row * 8 * width + col * 8;
600 if (col)
/frameworks/native/opengl/tests/angeles/
H A Ddemo.c669 #define M(row,col) m[col*4+row]
/frameworks/base/core/java/android/widget/
H A DGridLayout.java666 private static void setCellGroup(LayoutParams lp, int row, int rowSpan, int col, int colSpan) { argument
668 lp.setColumnSpecSpan(new Interval(col, col + colSpan));
711 // Find suitable row/col values when at least one is undefined.
1343 // its just to stop default (row/col > 0) constraints obliterating valid entries
1440 // Add ordering constraints to prevent row/col sizes from going negative
1442 // Add a constraint for every row/col
1643 // values are positive. One value is therefore zero - though if the row/col
/frameworks/support/v7/gridlayout/src/android/support/v7/widget/
H A DGridLayout.java646 private static void setCellGroup(LayoutParams lp, int row, int rowSpan, int col, int colSpan) { argument
648 lp.setColumnSpecSpan(new Interval(col, col + colSpan));
691 // Find suitable row/col values when at least one is undefined.
1265 // its just to stop default (row/col > 0) constraints obliterating valid entries
1361 // Add ordering constraints to prevent row/col sizes from going negative
1363 // Add a constraint for every row/col
1578 // values are positive. One value is therefore zero - though if the row/col

Completed in 310 milliseconds

12