HomeSort by relevance Sort by last modified time
    Searched full:columns (Results 176 - 200 of 2476) sorted by null

1 2 3 4 5 6 78 91011>>

  /development/samples/ApiDemos/res/layout/
linear_layout_7.xml 18 Demonstrates a horizontal linear layout with equally sized columns.
19 Some columns force their height to match the parent.
table_layout_3.xml 22 <!-- Rows have different number of columns and content doesn't fit on
23 screen: column 4 of row 2 shrinks all of the other columns -->
  /external/chromium-trace/catapult/third_party/polymer/components/core-style/
elements.html 39 width: calc({{ 100 / g.columns }}% - 16px);
47 CoreStyle.g.columns = 3;
  /external/chromium-trace/catapult/tracing/tracing/ui/analysis/
alert_sub_view_test.html 47 var columns = table.tableColumns;
49 assert.lengthOf(columns, 2);
  /external/dng_sdk/source/
dng_mosaic_info.h 59 /// - 2 = Staggered layout A: even columns are offset down by 1/2 row.
60 /// - 3 = Staggered layout B: even columns are offset up by 1/2 row.
63 /// - 6 = Staggered layout E: even rows are offset up by 1/2 row, even columns are offset left by 1/2 column.
64 /// - 7 = Staggered layout F: even rows are offset up by 1/2 row, even columns are offset right by 1/2 column.
65 /// - 8 = Staggered layout G: even rows are offset down by 1/2 row, even columns are offset left by 1/2 column.
66 /// - 9 = Staggered layout H: even rows are offset down by 1/2 row, even columns are offset right by 1/2 column.
112 /// using green mosaic samples from one set of rows/columns (even/odd) and the second
113 /// green channel is produced using the other set of rows/columns. One can compare the
  /frameworks/base/core/java/android/database/
CursorJoiner.java 22 * Does a join on two cursors using the specified columns. The cursors must already
23 * be sorted on each of the specified columns in ascending order. This joiner only
69 * column name arrays must have the same number of columns.
80 "you must have the same number of columns on the left and right, "
104 * @param cursor the cursor that contains the columns
109 int[] columns = new int[columnNames.length]; local
111 columns[i] = cursor.getColumnIndexOrThrow(columnNames[i]);
113 return columns;
  /frameworks/base/packages/DocumentsUI/tests/src/com/android/documentsui/dirlist/
TestModel.java 29 static final String[] COLUMNS = new String[]{
48 MatrixCursor c = new MatrixCursor(COLUMNS);
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/animation/
AppearAnimationUtils.java 91 long[] columns = properties.delays[row]; local
92 long delay = columns[0];
114 long[] columns = properties.delays[row]; local
119 for (int col = 0; col < columns.length; col++) {
120 long delay = columns[col];
156 T[] columns = items[row]; local
157 mProperties.delays[row] = new long[columns.length];
158 for (int col = 0; col < columns.length; col++) {
  /packages/apps/QuickSearchBox/tests/spammy/src/com/android/quicksearchbox/tests/spammy/
SpammySuggestionProvider.java 32 private static final String[] COLUMNS = {
50 MatrixCursor cursor = new MatrixCursor(COLUMNS);
  /external/vulkan-validation-layers/libs/glm/
mat2x2.hpp 36 /// 2 columns of 2 components matrix of low precision floating-point numbers.
43 /// 2 columns of 2 components matrix of medium precision floating-point numbers.
50 /// 2 columns of 2 components matrix of high precision floating-point numbers.
57 /// 2 columns of 2 components matrix of low precision floating-point numbers.
64 /// 2 columns of 2 components matrix of medium precision floating-point numbers.
71 /// 2 columns of 2 components matrix of high precision floating-point numbers.
mat3x3.hpp 36 /// 3 columns of 3 components matrix of low precision floating-point numbers.
43 /// 3 columns of 3 components matrix of medium precision floating-point numbers.
50 /// 3 columns of 3 components matrix of high precision floating-point numbers.
57 /// 3 columns of 3 components matrix of low precision floating-point numbers.
64 /// 3 columns of 3 components matrix of medium precision floating-point numbers.
71 /// 3 columns of 3 components matrix of high precision floating-point numbers.
mat4x4.hpp 36 /// 4 columns of 4 components matrix of low precision floating-point numbers.
43 /// 4 columns of 4 components matrix of medium precision floating-point numbers.
50 /// 4 columns of 4 components matrix of high precision floating-point numbers.
57 /// 4 columns of 4 components matrix of low precision floating-point numbers.
64 /// 4 columns of 4 components matrix of medium precision floating-point numbers.
71 /// 4 columns of 4 components matrix of high precision floating-point numbers.
  /external/webrtc/tools/python_charts/webrtc/
data_helper_test.py 92 columns = helper.GetOrdering(description)
93 self.assertEqual(3, len(columns))
95 self.assertEqual('frame_number', columns[0])
96 self.assertEqual('ssim_0', columns[1])
97 self.assertEqual('ssim_1', columns[2])
104 self.assertEqual(3, len(description)) # 3 columns
  /frameworks/base/core/java/android/provider/
SearchIndexablesProvider.java 126 * columns to put into the cursor. If {@code null} all supported columns
136 * @param projection list of {@link android.provider.SearchIndexablesContract.RawData} columns
137 * to put into the cursor. If {@code null} all supported columns should be
148 * columns to put into the cursor. If {@code null} all supported columns
  /frameworks/base/docs/html/training/tv/discovery/
searchable.jd 12 <li><a href="#columns">Identify Columns</a></li>
54 <h2 id="columns">Identify Columns</h2>
57 columns of an SQLite database. Regardless of your data's format, you must map your data fields to
58 these columns, usually in the class that accessess your content data. For information about building
63 <p>The {@link android.app.SearchManager} class includes several columns for Android TV. Some of the
64 more important columns are described below.</p>
97 <p>The search framework requires the following columns:</p>
105 <p>When the values of these columns for your content match the values for the same content from othe
    [all...]
  /external/autotest/frontend/client/src/autotest/tko/
TableView.java 110 private CheckBox groupCheckbox = new CheckBox("Group by these columns and show counts");
112 new CheckBox("Group by these columns and show pass rates");
191 String[][] columns = buildColumnSpecs(); local
193 table = new DynamicTable(columns, getDataSource());
215 String[][] columns = new String[numColumns][2]; local
218 columns[i][0] = field.getSqlName();
219 columns[i][1] = field.getName();
222 return columns;
284 // remove sorts on columns that we no longer have
321 NotifyManager.getInstance().showError("You must select columns");
    [all...]
  /external/bison/data/
location.cc 72 /// (column related) Advance to the COUNT next columns.
73 void columns (int count = 1)
91 res.columns (width);
215 /// Extend the current location to the COUNT next columns.
216 void columns (unsigned int count = 1)
248 res.columns (width);
255 res.columns (width);
  /external/eigen/unsupported/Eigen/src/Skyline/
SkylineMatrixBase.h 41 /**< The number of columns at compile-time. This is just a copy of the value provided
50 * rows times the number of columns, or to \a Dynamic if this is not
61 * columns is known at compile-time to be equal to 1. Indeed, in that case,
109 /** \returns the number of columns. \sa rows(), ColsAtCompileTime*/
127 * i.e., the number of columns for a columns major matrix, and the number of rows otherwise */
133 * i.e., the number of rows for a columns major matrix, and the number of cols otherwise */
  /external/pdfium/core/src/fxcodec/codec/
fx_codec_fax.cpp 76 int columns,
83 b1 = FindBit(ref_buf, columns, a0 + 1, !first_bit);
84 if (b1 >= columns) {
85 b1 = b2 = columns;
89 b1 = FindBit(ref_buf, columns, b1 + 1, first_bit);
92 if (b1 >= columns) {
93 b1 = b2 = columns;
96 b2 = FindBit(ref_buf, columns, b1 + 1, first_bit);
99 void FaxFillBits(uint8_t* dest_buf, int columns, int startpos, int endpos) {
106 if (endpos >= columns) {
    [all...]
  /frameworks/base/docs/html/guide/topics/ui/layout/
grid.jd 21 displays child {@link android.view.View} elements in rows and columns.</p>
27 and columns. TableLayout containers do not display border lines for their rows, columns,
28 or cells. The table will have as many columns as the row with the most cells. A table can leave
29 cells empty, but cells cannot span columns, as they can in HTML.</p>
38 <table class="columns">
72 <p>Columns can be hidden, marked to stretch and fill the available screen space,
  /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
AbstractRealMatrix.java 54 * @param columnDimension the number of columns in the new matrix
204 /** Maximal sum across all columns. */
208 public void start(final int rows, final int columns,
241 public void start(final int rows, final int columns,
331 public void start(final int rows, final int columns,
783 final int columns = getColumnDimension();
784 visitor.start(rows, columns, 0, rows - 1, 0, columns - 1);
786 for (int column = 0; column < columns; ++column) {
800 final int columns = getColumnDimension()
    [all...]
  /external/pdfium/core/src/fpdfapi/fpdf_parser/
fpdf_parser_decode.cpp 231 int Columns = 1728;
238 Columns = pParams->GetInteger("Columns", 1728);
243 if (Columns <= 0 || Rows < 0 || Columns > USHRT_MAX || Rows > USHRT_MAX) {
249 Columns, Rows);
253 int Columns) {
254 if (Columns < 0) {
257 int check = Columns;
281 int Colors = 0, BitsPerComponent = 0, Columns = 0
    [all...]
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/
MoreKeysKeyboardBuilderFixedOrderTests.java 74 assertEquals("1 key fix 5 M0 columns", 1, params.mNumColumns);
86 assertEquals("1 key fix 5 L0 columns", 1, params.mNumColumns);
98 assertEquals("1 key fix 5 L1 columns", 1, params.mNumColumns);
110 assertEquals("1 key fix 5 L2 columns", 1, params.mNumColumns);
122 assertEquals("1 key fix 5 R0 columns", 1, params.mNumColumns);
134 assertEquals("1 key fix 5 R1 columns", 1, params.mNumColumns);
146 assertEquals("1 key fix 5 R2 columns", 1, params.mNumColumns);
158 assertEquals("2 key fix 5 M0 columns", 2, params.mNumColumns);
171 assertEquals("2 key fix 5 L0 columns", 2, params.mNumColumns);
184 assertEquals("2 key fix 5 L1 columns", 2, params.mNumColumns)
    [all...]
  /external/opencv3/modules/ts/misc/
summary.py 15 def getSetName(tset, idx, columns, short = True):
16 if columns and len(columns) > idx:
17 prefix = columns[idx]
38 parser.add_option("", "--columns", dest="columns", default=None, metavar="NAMES", help="comma-separated list of column aliases")
43 parser.add_option("", "--regressions", dest="regressions", default=None, metavar="LIST", help="comma-separated custom regressions map: \"[r][c]#current-#reference\" (indexes of columns are 0-based, \"r\" - reverse flag, \"c\" - color flag for base data)")
57 if options.columns:
58 options.columns = [s.strip().replace("\\n", "\n") for s in options.columns.split(",")
    [all...]
  /frameworks/base/core/java/android/widget/
SimpleCursorTreeAdapter.java 25 * An easy adapter to map columns from a cursor to TextViews or ImageViews
26 * defined in an XML file. You can specify which columns you want, which views
27 * you want to display the columns, and the XML file that defines the appearance
42 /** The name of the columns that contain the data to display for a group. */
45 /** The indices of columns that contain data to display for a group. */
53 /** The name of the columns that contain the data to display for a child. */
56 /** The indices of columns that contain data to display for a child. */
87 * given the values of the first N columns in the from parameter.
100 * given the values of the first N columns in the from parameter.
128 * given the values of the first N columns in the from parameter
    [all...]

Completed in 1244 milliseconds

1 2 3 4 5 6 78 91011>>