HomeSort by relevance Sort by last modified time
    Searched refs:columns (Results 101 - 125 of 227) sorted by null

1 2 3 45 6 7 8 910

  /external/javasqlite/src/main/java/SQLite/JDBC2z/
JDBCDatabaseMetaData.java 556 tr.columns(cols);
566 tr.columns(cols);
576 tr.columns(cols);
632 tr.columns(cols);
699 tr.columns(cols);
719 tr.columns(cols);
762 tr.columns(cols);
853 tr.columns(cols);
886 tr.columns(cols);
1055 tr.columns(cols)
    [all...]
  /external/webkit/Source/WebCore/rendering/
RenderTableSection.cpp 193 Vector<RenderTable::ColumnStruct>& columns = table()->columns(); local
194 int nCols = columns.size();
243 if (cSpan < (int)columns[m_cCol].span)
245 currentSpan = columns[m_cCol].span;
292 ASSERT(endCol < (int)table()->columns().size());
293 cspan -= table()->columns()[endCol].span;
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
SimpleAdapterTest.java 75 * It has 2 columns and 20 rows. The default layout for item
361 String[] columns = new String[colCount]; local
363 columns[i] = "column" + i;
369 row.put(columns[j], "" + i + "" + j);
SimpleExpandableListAdapterTest.java 419 String[] columns = new String[colCount]; local
421 columns[i] = "column" + i;
427 row.put(columns[j], prefix + i + "" + j);
  /external/mesa3d/src/glsl/
glsl_types.h 112 unsigned matrix_columns:3; /**< 1, 2, 3, or 4 matrix columns. */
194 unsigned columns);
347 * Otherwise a type matching the columns of the matrix is returned.
  /external/webkit/Source/WebCore/inspector/front-end/
ProfileView.js 38 var columns = { "self": { title: WebInspector.UIString("Self"), width: "72px", sort: "descending", sortable: true },
45 delete columns.average;
46 delete columns.calls;
49 this.dataGrid = new WebInspector.DataGrid(columns);
  /external/emma/ant/ant14/com/vladium/emma/
emmajavaTask.java 503 public final void setColumns (final String columns)
505 m_reportCfg.setColumns (columns);
  /external/emma/lib/
emma_ant.jar 
  /external/webkit/LayoutTests/dom/html/level2/html/
HTMLFrameSetElement01.js 78 The cols attribute specifies the number of columns of frames in the
HTMLTableCellElement15.js 78 The colSpan attribute specifies the number of columns spanned by a table
HTMLTableCellElement16.js 78 The colSpan attribute specifies the number of columns spanned by a
HTMLTableColElement07.js 78 The span attribute indicates the number of columns in a group or affected
HTMLTableColElement08.js 78 The span attribute indicates the number of columns in a group or affected
table25.js 78 Number of columns spanned by cell.
table51.js 78 Indicates the number of columns in a group or affected by a grouping.
  /external/webkit/LayoutTests/dom/xhtml/level2/html/
HTMLFrameSetElement01.js 78 The cols attribute specifies the number of columns of frames in the
HTMLTableCellElement15.js 78 The colSpan attribute specifies the number of columns spanned by a table
HTMLTableCellElement16.js 78 The colSpan attribute specifies the number of columns spanned by a
HTMLTableColElement07.js 78 The span attribute indicates the number of columns in a group or affected
HTMLTableColElement08.js 78 The span attribute indicates the number of columns in a group or affected
table25.js 78 Number of columns spanned by cell.
table51.js 78 Indicates the number of columns in a group or affected by a grouping.
  /packages/providers/TelephonyProvider/src/com/android/providers/telephony/
MmsSmsProvider.java 111 // These are the columns that appear in both the MMS ("pdu") and
116 // These are the columns that appear only in the MMS message
127 // These are the columns that appear only in the SMS message
133 // These are all the columns that appear in the "threads" table.
148 // These are all the columns that appear in the MMS and SMS
155 // These are all the columns that appear in the MMS table.
158 // These are all the columns that appear in the SMS table.
202 // using a UNION so we have to have the same number of result columns from
672 * If a null projection is given, return the union of all columns
682 * If a null projection is given, return the set of all columns i
791 String[] columns = handleNullMessageProjection(projection); local
972 String[] columns = handleNullMessageProjection(projection); local
1005 String[] columns = handleNullThreadsProjection(projection); local
    [all...]
  /packages/apps/Gallery/src/com/android/camera/
GridViewSpecial.java 208 // We determine number of cells (columns) first, then the left and right
732 private final int mColumns; // Columns per row.
748 int columns, int blockWidth, Bitmap outline) {
755 mColumns = columns;
926 // Return number of columns in the given row. (This could be less than
1015 int columns = numColumns(mRow); local
    [all...]
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
Keyboard.java 550 * characters in left-to-right, top-to-bottom fashion, using the specified number of columns.
552 * <p>If the specified number of columns is -1, then the keyboard will fit as many keys as
558 * @param columns the number of columns of keys to display. If this number is greater than the
563 CharSequence characters, int columns, int horizontalPadding) {
576 final int maxColumns = columns == -1 ? Integer.MAX_VALUE : columns;

Completed in 4414 milliseconds

1 2 3 45 6 7 8 910