/external/libhevc/common/ |
ihevc_iquant_recon.c | 95 * Zero columns in pi2_src 207 * Zero columns in pi2_src 318 * Zero columns in pi2_src 429 * Zero columns in pi2_src 541 * Zero columns in pi2_src
|
/external/chromium-trace/catapult/tracing/tracing/ui/analysis/ |
memory_dump_overview_pane.html | 276 // Rules for constructing and sorting used memory columns. 304 // All other columns. 420 // Rules for constructing and sorting allocator columns. 428 // All other columns. 544 var columns = this.createColumns_(rows); 545 var footerRows = this.createFooterRows_(rows, columns); 549 this.$.table.tableColumns = columns; 646 createFooterRows_: function(rows, columns) { 652 tr.ui.analysis.aggregateTableRowCells(totalRow, rows, columns); 672 var columns = [titleColumn].concat(sizeColumns) [all...] |
memory_dump_overview_pane_test.html | 75 function checkRow(columns, row, expectedTitle, expectedSizes, 78 var formattedTitle = columns[0].formatTitle(row); 85 assert.lengthOf(expectedSizes, columns.length - 1 /* all except title */); 87 checkSizeNumericFields(row, columns[i + 1], expectedSizes[i]); 98 function checkRows(columns, actualRows, expectedRows) { 107 checkRow(columns, actualRow, expectedRow.title, expectedRow.sizes, 140 var columns = table.tableColumns; 141 checkColumns(columns, EXPECTED_COLUMNS, aggregationMode); 144 checkRows(columns, table.tableRows, expectedRows); 145 checkRows(columns, table.footerRows, expectedFooterRows) [all...] |
generic_object_view.html | 193 var columns = []; 195 columns.push({title: colName, value: function(row) { 199 table.tableColumns = columns;
|
/external/eigen/Eigen/src/Core/ |
Matrix.h | 30 * \tparam _Cols Number of columns, or \b Dynamic 38 * \tparam _MaxCols Maximum number of columns. Defaults to \a _Cols (\ref maxrows "note"). 82 * <dd>Fixed-size means that the numbers of rows and columns are known are compile-time. In this case, Eigen allocates the array 86 * Dynamic-size means that the numbers of rows or columns are not necessarily known at compile-time. In this case they are runtime 94 * These parameters mean the maximum size of rows and columns that the matrix may have. They are useful in cases 95 * when the exact numbers of rows and columns are not known are compile-time, but it is known at compile-time that they cannot 238 /** \brief Constructs an uninitialized matrix with \a rows rows and \a cols columns.
|
/frameworks/base/docs/html/training/basics/data-storage/ |
databases.jd | 57 tables, and columns. The contract class allows you to use the same constants 63 class for each table that enumerates its columns.</p> 216 method, passing it your selection criteria and desired columns. 225 // Define a <em>projection</em> that specifies which columns from the database 240 projection, // The columns to return 241 selection, // The columns for the WHERE clause 276 clause defines the columns to look at, and also allows you to combine column
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
LayoutMetadata.java | 338 // by the number of columns to ensure we have enough items 341 String columns = element.getAttributeNS(ANDROID_URI, ATTR_NUM_COLUMNS); local 343 if (columns != null && columns.length() > 0 && 344 !columns.equals(VALUE_AUTO_FIT)) { 346 int c = Integer.parseInt(columns); 351 // some unexpected numColumns value: just stick with 2 columns for
|
/packages/apps/Email/tests/src/com/android/email/provider/ |
AttachmentProviderTests.java | 128 // Return a row with all columns specified 132 new String[] { AttachmentUtilities.Columns._ID, 133 AttachmentUtilities.Columns.DATA, 134 AttachmentUtilities.Columns.DISPLAY_NAME, 135 AttachmentUtilities.Columns.SIZE }, 144 // Return a row with permuted columns 148 new String[] { AttachmentUtilities.Columns.SIZE, 149 AttachmentUtilities.Columns.DISPLAY_NAME, 150 AttachmentUtilities.Columns.DATA, 151 AttachmentUtilities.Columns._ID } [all...] |
/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/ |
RealMatrix.java | 38 * @param columnDimension the number of columns in the new matrix 129 * Gets a submatrix. Rows and columns are indicated 137 * specified rows and columns 144 * Gets a submatrix. Rows and columns are indicated 150 * specified rows and columns 157 * Copy a submatrix. Rows and columns are indicated 165 * (if larger than rows/columns counts, only the upper-left part will be used) 174 * Copy a submatrix. Rows and columns are indicated 180 * (if larger than rows/columns counts, only the upper-left part will be used) 232 * @param matrix row matrix (must have one row and the same number of columns [all...] |
QRDecompositionImpl.java | 120 * Transform the rest of the columns of the minor: 373 final int columns = b.getColumnDimension(); local 375 final int cBlocks = (columns + blockSize - 1) / blockSize; 376 final double[][] xBlocks = BlockRealMatrix.createBlocksLayout(n, columns); 382 final int kEnd = FastMath.min(kStart + blockSize, columns); 441 return new BlockRealMatrix(n, columns, xBlocks, false);
|
FieldMatrix.java | 47 * @param columnDimension the number of columns in the new matrix 122 * Gets a submatrix. Rows and columns are indicated 130 * specified rows and columns 137 * Gets a submatrix. Rows and columns are indicated 143 * specified rows and columns 150 * Copy a submatrix. Rows and columns are indicated 158 * (if larger than rows/columns counts, only the upper-left part will be used) 167 * Copy a submatrix. Rows and columns are indicated 173 * (if larger than rows/columns counts, only the upper-left part will be used) 225 * @param matrix row matrix (must have one row and the same number of columns [all...] |
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/ |
ContactLoader.java | 191 static final String[] COLUMNS; 198 COLUMNS = projectionList.toArray(new String[projectionList.size()]); 278 static final String[] COLUMNS = new String[] { 296 static final String[] COLUMNS = new String[] { 482 Cursor cursor = resolver.query(entityUri, ContactQuery.COLUMNS, null, null, 636 * Extracts Contact level columns from the cursor. 676 * Extracts RawContact level columns from the cursor. 701 * Extracts Data level columns from the cursor. 749 values.put(ContactQuery.COLUMNS[index], cursor.getLong(index)); 752 values.put(ContactQuery.COLUMNS[index], cursor.getString(index)) [all...] |
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/ |
AbstractContactAggregator.java | 563 public static final String[] COLUMNS = {RawContacts._ID, RawContacts.AGGREGATION_MODE}; 577 RawContactIdAndAggregationModeQuery.COLUMNS, 658 public static final String[] COLUMNS = { 682 RawContactIdAndAccountQuery.COLUMNS, RawContactIdAndAccountQuery.SELECTION, [all...] |
/external/eigen/doc/ |
TutorialMatrixClass.dox | 26 and columns of the matrix as known at compile time (see 69 You can perfectly have e.g. a fixed number of rows with a dynamic number of columns, as in: 152 The current size of a matrix can be retrieved by \link EigenBase::rows() rows()\endlink, \link EigenBase::cols() cols() \endlink and \link EigenBase::size() size()\endlink. These methods return the number of rows, the number of columns and the number of coefficients, respectively. Resizing a dynamic-size matrix is done by the \link PlainObjectBase::resize(Index,Index) resize() \endlink method. 206 \code MatrixXf mymatrix(rows,columns); \endcode 208 \code float *mymatrix = new float[rows*columns]; \endcode 209 and in addition to that, the MatrixXf object stores its number of rows and columns as
|
/external/llvm/lib/Support/Windows/ |
Process.inc | 277 unsigned Columns = 0; 280 Columns = csbi.dwSize.X; 281 return Columns; 285 unsigned Columns = 0; 288 Columns = csbi.dwSize.X; 289 return Columns;
|
/external/mesa3d/src/glsl/tests/ |
set_uniform_initializer_tests.cpp | 165 unsigned columns, unsigned rows) 168 glsl_type::get_instance(base_type, rows, columns); 174 generate_data(mem_ctx, base_type, columns, rows, val); 312 unsigned columns, unsigned rows, unsigned array_size, 316 glsl_type::get_instance(base_type, rows, columns); 329 generate_array_data(mem_ctx, base_type, columns, rows,
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p10/src/ |
omxVCM4P10_TransformDequantLumaDCFromPair_s.s | 167 ;// Perform the row operations (on columns) using SIMD * 231 ;// Row Operations (Performed on columns) 235 ;// SIMD operations on first two columns(two rows of the original matrix) 247 ;// SIMD operations on next two columns(next two rows of the original matrix) 318 ;// SIMD operations on first two columns(two rows of the original matrix) 330 ;// SIMD operations on next two columns(next two rows of the original matrix)
|
/frameworks/base/core/java/android/widget/ |
SimpleExpandableListAdapter.java | 69 * columns in the groupFrom parameter. 85 * columns in the childFrom parameter. 114 * columns in the groupFrom parameter. 133 * columns in the childFrom parameter. 163 * columns in the groupFrom parameter. 182 * columns in the childFrom parameter.
|
/frameworks/support/v4/java/android/support/v4/widget/ |
SimpleCursorAdapter.java | 35 * A list of columns containing the data to bind to the UI. 82 * are given the values of the first N columns in the from 97 * constructor with their corresponding cursor columns as specified in the 306 * @param c the cursor to find the columns from 307 * @param from the Strings naming the columns of interest 341 * are given the values of the first N columns in the from
|
/packages/apps/TV/tests/unit/src/com/android/tv/data/ |
ProgramDataManagerTest.java | 385 * @param columns the same as projection passed from {@link FakeContentProvider#query}. 392 public FakeCursor(String[] columns, long channelId, long startTimeMs, long endTimeMs) { 393 mColumns = (columns == null) ? ALL_COLUMNS : columns; 408 Log.d(TAG, "FakeCursor(columns=" + Arrays.toString(columns)
|
/external/sl4a/ScriptingLayerForAndroid/src/de/mud/terminal/ |
vt320.java | 337 * Create a default vt320 terminal with 80 columns and 24 lines. 662 // X - COLUMNS, Y - ROWS 1605 int columns = width; local [all...] |
/cts/tests/tests/provider/src/android/provider/cts/ |
ContactsContract_TestDataBuilder.java | 53 String[] COLUMNS = new String[] { 75 Cursor cursor = mProvider.query(mUri, IdQuery.COLUMNS, null, null, null, null); 240 ". Available columns: " + TextUtils.join(", ", mCursor.getColumnNames()),
|
/external/autotest/tko/ |
nightly.py | 210 def table_1_metric_all_kernels(plot_data, columns, column_argname, 219 for label in columns: 229 for col in columns: 300 def table_variants_all_tests(plot_data, columns, colkeys, benchmarks, 309 for col in columns: 314 for col in columns: 386 # std dev of one metric, over various kernels (X columns), 466 column_argname, columns, filtered_passthru): 486 table_1_metric_all_kernels(plot_data, columns, column_argname, 562 def table_for_variants_all_tests(self, title, plot_data, colkeys, columns, [all...] |
/external/dng_sdk/source/ |
dng_bad_pixels.h | 16 * defective rows and columns). 95 /// \brief A list of bad pixels and rectangles (usually single rows or columns). 113 // List of bad rectangles (usually single rows or columns).
|
/external/eigen/Eigen/src/SparseLU/ |
SparseLU_SupernodalMatrix.h | 81 * Number of columns 165 Index m_col; // Number of columns 246 Index nsupc = supToCol()[k+1] - fsupc; // Number of columns in the current supernode
|