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

<<11121314151617181920>>

  /frameworks/base/media/java/android/mtp/
MtpPropertyGroup.java 58 // list of columns for database query
75 ArrayList<String> columns = new ArrayList<String>(count); local
76 columns.add(Files.FileColumns._ID);
80 mProperties[i] = createProperty(properties[i], columns);
82 count = columns.size();
85 mColumns[i] = columns.get(i);
89 private Property createProperty(int code, ArrayList<String> columns) {
191 columns.add(column);
192 return new Property(code, type, columns.size() - 1);
  /external/mesa3d/src/glsl/
glsl_types.cpp 396 glsl_type::get_instance(unsigned base_type, unsigned rows, unsigned columns)
401 if ((rows < 1) || (rows > 4) || (columns < 1) || (columns > 4))
406 if (columns == 1) {
423 /* GLSL matrix types are named mat{COLUMNS}x{ROWS}. Only the following
434 switch (IDX(columns, rows)) {
665 * columns and <R> rows, the matrix is stored identically to a row of
669 * (8) If the member is an array of <S> row-major matrices with <C> columns
687 /* (5) If the member is a column-major matrix with <C> columns and
692 * (7) If the member is a row-major matrix with <C> columns and <R
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
MatrixUtils.java 57 * @param columns number of columns of the matrix
61 public static RealMatrix createRealMatrix(final int rows, final int columns) {
62 return (rows * columns <= 4096) ?
63 new Array2DRowRealMatrix(rows, columns) : new BlockRealMatrix(rows, columns);
76 * @param columns number of columns of the matrix
83 final int columns) {
84 return (rows * columns <= 4096)
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
ContactAggregator2.java 468 Cursor cursor = db.query(RawContactIdQuery.TABLE, RawContactIdQuery.COLUMNS,
514 AggregateExceptionQuery.COLUMNS,
559 Cursor c = db.query(IdentityLookupMatchQuery.TABLE, IdentityLookupMatchQuery.COLUMNS,
583 Cursor c = db.query(NameLookupMatchQuery.TABLE, NameLookupMatchQuery.COLUMNS,
613 Cursor c = db.query(EmailLookupQuery.TABLE, EmailLookupQuery.COLUMNS,
645 NameLookupMatchQueryWithParameter.COLUMNS, builder.getSelection(), null, null, null,
670 Cursor c = db.query(PhoneLookupQuery.TABLE, PhoneLookupQuery.COLUMNS,
    [all...]
  /external/eigen/Eigen/src/SparseLU/
SparseLU_gemm_kernel.h 40 Index d_end = (d/RK)*RK; // number of columns of A (rows of B) suitable for full register blocking
41 Index n_end = (n/RN)*RN; // number of columns of B-C suitable for processing RN columns at once
64 // Let's process two columns of B-C at once
167 } // peeled loop on the columns j
249 // process the last columns of A, corresponding to the last rows of B
SparseLU_relax_snode.h 40 * \param n the number of columns
42 * \param relax_columns Maximum number of columns allowed in a relaxed snode
  /external/emma/ant/ant14/com/vladium/emma/report/
ReportCfg.java 65 public void setColumns (final String columns)
67 m_settings.setProperty (m_prefix.concat (COLUMNS), columns); local
360 public void setColumns (final String columns)
362 m_settings.setProperty (PREFIX.concat (COLUMNS), columns); local
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p10/src/
armVCM4P10_TransformResidual4x4_s.s 154 ;// Perform the row operations (on columns) using SIMD *
221 ;// Row Operations (Performed on columns)
225 ;// SIMD operations on first two columns(two rows of the original matrix)
239 ;// SIMD operations on next two columns(next two rows of the original matrix)
305 ;// SIMD operations on first two columns
319 ;// SIMD operations on next two columns
  /frameworks/base/core/java/android/view/animation/
GridLayoutAnimationController.java 36 * also set the animation priority to columns or rows. The default priority is
84 * Rows and columns are animated at the same time.
89 * Columns are animated first.
135 * for both rows and columns and the specified animation.
271 * {@link #PRIORITY_COLUMN} will give priority to columns: the animation
415 * The number of columns in the view's enclosing grid layout.
  /frameworks/base/packages/DocumentsUI/tests/src/com/android/documentsui/dirlist/
ModelTest.java 50 private static final String[] COLUMNS = new String[]{
83 MatrixCursor c = new MatrixCursor(COLUMNS);
121 MatrixCursor cIn1 = new MatrixCursor(COLUMNS);
122 MatrixCursor cIn2 = new MatrixCursor(COLUMNS);
226 MatrixCursor c = new MatrixCursor(COLUMNS);
276 MatrixCursor c = new MatrixCursor(COLUMNS);
  /libcore/ojluni/src/main/java/java/sql/
DatabaseMetaData.java 59 * will be returned. Additional columns beyond the columns defined to be
410 * computed columns or to provide alias names for columns as
511 * Retrieves whether this database supports using columns not included in
513 * provided that all of the columns in the <code>SELECT</code> statement
550 * Retrieves whether columns in this database may be defined as non-nullable.
    [all...]
  /frameworks/base/media/java/android/media/
RingtoneManager.java 279 "Setting filter columns should be done before querying for ringtones.");
532 List<String> columns = mFilterColumns; local
533 columns.clear();
536 columns.add(MediaStore.Audio.AudioColumns.IS_RINGTONE);
540 columns.add(MediaStore.Audio.AudioColumns.IS_NOTIFICATION);
544 columns.add(MediaStore.Audio.AudioColumns.IS_ALARM);
553 * @param columns The columns that must be true.
556 private static String constructBooleanTrueWhereClause(List<String> columns) {
558 if (columns == null) return null
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
AlphabetIndexerTest.java 114 String[] columns = { "_id", listName };
116 MatrixCursor cursor = new MatrixCursor(columns, listData.length);
  /cts/tools/dasm/src/java_cup/
parse_reduce_row.java 28 /** Number of columns (non terminals) in every row. */
31 /** Number of columns (non terminals) in every row. */
  /developers/build/prebuilts/androidtv/leanback/app/src/main/java/com/example/android/tvleanback/data/
VideoContentProvider.java 88 String[] columns = new String[]{ local
107 return mVideoDatabase.getWordMatch(query, columns);
  /developers/samples/android/content/WidgetData/Application/src/main/java/com/example/android/widgetdata/
WeatherWidgetService.java 71 final int dayColIndex = mCursor.getColumnIndex(WeatherDataProvider.Columns.DAY);
73 WeatherDataProvider.Columns.TEMPERATURE);
  /development/samples/ApiDemos/src/com/example/android/apis/view/
GridLayout3.java 33 * preserved property which allows rows and or columns to pass over each other when needed.
35 * This can either be done by separating rows or separating columns - but we don't need
_index.html 31 <dd>Demonstrates a horizontal linear layout with equally sized columns. Some columns force their height to match the parent.</dd>
59 <dd>Rows have different number of columns and content doesn't fit on screen: column 4 of row 2 shrinks all of the other columns </dd>
65 <dd>Demonstrates a complex TableLayout with spanning columns and stretchable columns to create a menu-like layout. </dd>
71 <dd>Similar to example 6, but now with buttons on the bottom of the screen that enable you dynamically hide or show columns. </dd>
150 <dd> Demonstrates binding multiple columns from a database query to fields in a template. </dd>
  /development/samples/WeatherListWidget/src/com/example/android/weatherlistwidget/
WeatherWidgetService.java 76 final int dayColIndex = mCursor.getColumnIndex(WeatherDataProvider.Columns.DAY);
78 WeatherDataProvider.Columns.TEMPERATURE);
  /external/apache-commons-math/src/main/java/org/apache/commons/math/transform/
FastHadamardTransformer.java 116 * <li>Construct a matrix with N rows and n+1 columns<br> <b>hadm[n+1][N]</b>
117 * <br><i>(If I use [x][y] it always means [row-offset][column-offset] of a Matrix with n rows and m columns. Its entries go from M[0][0] to M[n][m])</i></li>
121 * <br>The columns of D<sub>top</sub> are the pairwise mutually exclusive sums of the previous column
125 * <br>The columns of D<sub>bottom</sub> are the pairwise differences of the previous column
168 // Instead of creating a matrix with p+1 columns and n rows
176 // switch columns
219 // Instead of creating a matrix with p+1 columns and n rows
227 // switch columns
  /external/autotest/frontend/tko/
csv_encoder.py 94 self._column_specs = request['columns']
158 if 'columns' in request:
  /external/ceres-solver/internal/ceres/
reorder_program.h 69 // columns of the schur complement matrix are ordered to reduce the
84 // columns to reduce the fill-in. Compute this permutation and
  /external/chromium-trace/catapult/tracing/tracing/ui/analysis/
layout_tree_sub_view.html 35 var columns = [
191 table.tableColumns = columns;
  /external/eigen/Eigen/src/SparseCore/
SparseMatrixBase.h 57 /**< The number of columns at compile-time. This is just a copy of the value provided
66 * rows times the number of columns, or to \a Dynamic if this is not
77 * columns is known at compile-time to be equal to 1. Indeed, in that case,
151 /** \returns the number of columns. \sa rows() */
159 /** \returns true if either the number of rows or the number of columns is equal to 1.
165 * i.e., the number of columns for a columns major matrix, and the number of rows otherwise */
168 * i.e., the number of rows for a columns major matrix, and the number of cols otherwise */
  /external/emma/core/java12/com/vladium/emma/report/
IReportProperties.java 54 String COLUMNS = "columns"; // comma-separated list

Completed in 2041 milliseconds

<<11121314151617181920>>