HomeSort by relevance Sort by last modified time
    Searched refs:col (Results 151 - 175 of 459) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/webkit/Source/WebCore/rendering/
RenderTableCell.h 46 int col() const { return m_column; } function in class:WebCore::RenderTableCell
47 void setCol(int col) { m_column = col; }
RenderTreeAsText.cpp 319 Color col = o.style()->borderTopColor(); local
320 if (!col.isValid())
321 col = o.style()->color();
322 ts << col.nameForRenderTreeAsText() << ")";
333 Color col = o.style()->borderRightColor(); local
334 if (!col.isValid())
335 col = o.style()->color();
336 ts << col.nameForRenderTreeAsText() << ")";
347 Color col = o.style()->borderBottomColor(); local
348 if (!col.isValid()
361 Color col = o.style()->borderLeftColor(); local
    [all...]
  /external/webkit/Source/WebKit/efl/ewk/
ewk_tiled_backing_store.c 34 #define IDX(col, row, rowspan) (col + (row * rowspan))
62 unsigned long row, col; member in struct:_Ewk_Tiled_Backing_Store_Item::__anon14997
70 unsigned long col, row; member in struct:_Ewk_Tiled_Backing_Store_Pre_Render_Request
97 unsigned long col, row; member in struct:_Ewk_Tiled_Backing_Store_Data::__anon15002::__anon15003
182 static Ewk_Tile *_ewk_tiled_backing_store_tile_new(Ewk_Tiled_Backing_Store_Data *priv, unsigned long col, unsigned long row, float zoom)
192 (priv->model.matrix, evas, col, row, zoom);
267 static inline Eina_Bool _ewk_tiled_backing_store_pre_render_request_add(Ewk_Tiled_Backing_Store_Data *priv, unsigned long col, unsigned long row, float zoom, Ewk_Tiled_Backing_Store_Pre_Render_Priority priority)
280 r->col = col;
335 unsigned long col, row; local
386 unsigned long row, col; local
    [all...]
  /packages/apps/Browser/tests/src/com/android/browser/
BrowserProviderTests.java 171 int col = c.getColumnIndex(name); local
174 assertTrue(msg, col >= 0);
175 return c.getString(col);
  /external/libpng/contrib/pngminus/
png2pnm.c 204 int row, col; local
376 for (col = 0; col < width; col++)
413 if (col % 4 == 3)
415 } /* end for col */
418 if (col % 4 != 0)
  /external/quake/quake/src/QW/client/
d_scan.c 50 int *col; local
79 col = &column[turb[v]];
83 dest[u+0] = row[turb[u+0]][col[u+0]];
84 dest[u+1] = row[turb[u+1]][col[u+1]];
85 dest[u+2] = row[turb[u+2]][col[u+2]];
86 dest[u+3] = row[turb[u+3]][col[u+3]];
  /external/quake/quake/src/WinQuake/
d_scan.cpp 50 int *col; local
79 col = &column[turb[v]];
84 dest[u+0] = row[turb[u+0]][col[u+0]];
85 dest[u+1] = row[turb[u+1]][col[u+1]];
86 dest[u+2] = row[turb[u+2]][col[u+2]];
87 dest[u+3] = row[turb[u+3]][col[u+3]];
  /external/webkit/Source/WebCore/accessibility/
AccessibilityTable.cpp 153 for (int col = 0; col < numCols; ++col) {
154 RenderTableCell* cell = firstBody->primaryCellAt(row, col);
174 if (!col && isTHCell)
494 if (cell && ((cell->col() + (cell->colSpan()-1)) >= (int)column))
  /frameworks/rs/
rsRuntime.h 171 void rsrMatrixSet(rs_matrix4x4 *m, uint32_t row, uint32_t col, float v);
172 float rsrMatrixGet(const rs_matrix4x4 *m, uint32_t row, uint32_t col);
173 void rsrMatrixSet(rs_matrix3x3 *m, uint32_t row, uint32_t col, float v);
174 float rsrMatrixGet(const rs_matrix3x3 *m, uint32_t row, uint32_t col);
175 void rsrMatrixSet(rs_matrix2x2 *m, uint32_t row, uint32_t col, float v);
176 float rsrMatrixGet(const rs_matrix2x2 *m, uint32_t row, uint32_t col);
  /libcore/luni/src/test/java/tests/security/cert/
CertificateFactorySpiTest.java 85 Collection<? extends Certificate> col = certFactorySpi.engineGenerateCertificates(bais); local
86 assertNull("Not null Collection", col);
151 Collection<? extends Certificate> col = certFactorySpi local
153 assertNull("Result must be null", col);
221 Collection<? extends Certificate> col = certFactorySpi local
223 assertNull("Result must be null", col);
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/
HeapPanel.java 501 TableColumn col; local
503 col = new TableColumn(tab, SWT.RIGHT);
504 col.setText("ID");
505 col.pack();
507 col = new TableColumn(tab, SWT.RIGHT);
508 col.setText("000.000WW"); //$NON-NLS-1$
509 col.pack();
510 col.setText("Heap Size");
512 col = new TableColumn(tab, SWT.RIGHT);
513 col.setText("000.000WW"); //$NON-NLS-1
    [all...]
  /external/libvpx/vp8/common/
debugmodes.c 119 fprintf(mvs, "%5d:%-5d", mi[mb_index].mbmi.mv.as_mv.row / 2, mi[mb_index].mbmi.mv.as_mv.col / 2);
146 fprintf(mvs, "%3d:%-3d ", mi[mb_index].bmi[bindex].mv.as_mv.row, mi[mb_index].bmi[bindex].mv.as_mv.col);
  /external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/
Shader.h 28 : type(type), name(name), size(size), array(array), reg(-1), col(-1)
38 int col; // First register element, assigned during link member in struct:gl::Varying
  /frameworks/native/opengl/tests/hwc/
hwcStress.cpp 590 for (unsigned int col = 0; col < cols; col++) {
594 frames[row][col] = new GraphicBuffer(w, h, format, texUsage);
595 if ((rv = frames[row][col]->initCheck()) != NO_ERROR) {
602 hwcTestFillColor(frames[row][col].get(), color, alpha);
605 frames[row][col].get(), frames[row][col]->handle,
  /packages/apps/Calendar/src/com/android/calendar/
EventGeometry.java 76 int col = event.getColumn(); local
101 event.left = left + col * (colWidth + mCellMargin);
  /system/core/sh/
jobs.c 387 int col; local
445 col = strlen(s);
447 fmtstr(s + col, 16, "%ld ", (long)ps->pid);
448 col += strlen(s + col);
451 scopy("Running", s + col);
455 fmtstr(s + col, 16, "Done(%d)", st);
457 fmtstr(s + col, 16, "Done");
467 scopyn(sys_siglist[st], s + col, 32);
469 fmtstr(s + col, 16, "Signal %d", st)
    [all...]
  /external/icu4c/test/intltest/
regcoll.cpp 967 Collator *col = NULL; local
969 col = Collator::createInstance(l, status);
971 if (col == NULL || U_FAILURE(status))
974 delete col;
981 col->getCollationKey("Nombre De Objeto", key, status);
988 delete col;
1161 RuleBasedCollator *col = (RuleBasedCollator *) en_us->clone() local
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_inter_prediction.c 222 /*set col to bits 31:16 */
368 u32 row, col; local
379 col = mbNum - row * currImage->width;
381 col *= 16;
393 h264bsdPredictSamples(data, pMb->mv, &refImage, col, row, 0, 0,
401 h264bsdPredictSamples(data, pMb->mv, &refImage, col, row, 0, 0,
404 h264bsdPredictSamples(data, pMb->mv+8, &refImage, col, row, 0, 8,
412 h264bsdPredictSamples(data, pMb->mv, &refImage, col, row, 0, 0,
415 h264bsdPredictSamples(data, pMb->mv+4, &refImage, col, row, 8, 0,
433 col, row, x, y, 8, 8)
    [all...]
h264bsd_image.c 182 u32 row, col; local
200 col = mbNum % picWidth;
203 lum = (image->data + row * picWidth * 256 + col * 16);
204 cb = (image->data + picSize * 256 + row * picWidth * 64 + col * 8);
  /device/moto/stingray/recovery/
masterclear_bp.c 50 int col = 0; local
65 for (col = 0; col < num_col; col++)
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/
CertificateFactory3Test.java 110 Collection col = null; local
111 col = certFs[i].generateCertificates(new ByteArrayInputStream(
113 Iterator it = col.iterator();
114 assertEquals("Incorrect Collection size", col.size(), 1);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
LineGraph.java 161 public void addItem(String name, String description, double value, Color col) {
162 addItem(name, description, value, col,false);
165 public void addItem(String name, String description, double value, Color col, boolean display) {
166 this.fItems.add(new GraphItem(name, description, value, col,display));
  /external/jpeg/
wrrle.c 179 int row, col; local
244 for (col = cinfo->output_width; col > 0; col--) {
  /external/qemu/distrib/jpeg-6b/
wrrle.c 179 int row, col; local
244 for (col = cinfo->output_width; col > 0; col--) {
  /external/skia/src/images/
bmpdecoderhelper.h 84 void PutPixel(int x, int y, uint8 col);

Completed in 1520 milliseconds

1 2 3 4 5 67 8 91011>>