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

12 3 4 5 6 7 8 91011>>

  /frameworks/ex/common/java/com/android/common/content/
ProjectionMap.java 42 public Builder addAll(String[] columns) {
43 for (String column : columns) {
57 String[] columns = new String[mMap.size()]; local
58 mMap.keySet().toArray(columns);
59 Arrays.sort(columns);
60 mMap.mColumns = columns;
SyncStateContentProviderHelper.java 34 SyncStateContract.Columns.ACCOUNT_NAME + "=? AND "
35 + SyncStateContract.Columns.ACCOUNT_TYPE + "=?";
44 new String[]{SyncStateContract.Columns.ACCOUNT_NAME,
45 SyncStateContract.Columns.ACCOUNT_TYPE};
52 + " WHERE " + SyncStateContract.Columns._ID + "=?";
57 + SyncStateContract.Columns._ID + " INTEGER PRIMARY KEY,"
58 + SyncStateContract.Columns.ACCOUNT_NAME + " TEXT NOT NULL,"
59 + SyncStateContract.Columns.ACCOUNT_TYPE + " TEXT NOT NULL,"
60 + SyncStateContract.Columns.DATA + " TEXT,"
61 + "UNIQUE(" + SyncStateContract.Columns.ACCOUNT_NAME + ",
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/datamodel/
ConversationImagePartsView.java 31 * through all the photos of the conversation. The columns of the view are a superset of
40 + " as " + Columns.CONVERSATION_ID + ", "
42 + " as " + Columns.URI + ", "
44 + " as " + Columns.SENDER_FULL_NAME + ", "
46 + " as " + Columns.CONTENT_URI + ", "
48 + " NULL as " + Columns.THUMBNAIL_URI + ", "
50 + " as " + Columns.CONTENT_TYPE + ", "
52 // Columns in addition to those specified by PhotoContract
55 + " as " + Columns.DISPLAY_DESTINATION + ", "
57 + " as " + Columns.RECEIVED_TIMESTAMP + ",
    [all...]
  /external/eigen/doc/examples/
TutorialLinAlgRankRevealing.cpp 16 cout << "Here is a matrix whose columns form a basis of the null-space of A:\n"
18 cout << "Here is a matrix whose columns form a basis of the column-space of A:\n"
  /external/eigen/doc/snippets/
JacobiSVD_basic.cpp 5 cout << "Its left singular vectors are the columns of the thin U matrix:" << endl << svd.matrixU() << endl;
6 cout << "Its right singular vectors are the columns of the thin V matrix:" << endl << svd.matrixV() << endl;
FullPivLU_kernel.cpp 4 cout << "Here is a matrix whose columns form a basis of the kernel of m:"
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
PropsVectors.java 40 private int columns; // number of columns, plus two for start field in class:PropsVectors
63 // The returned index is a multiple of columns, and therefore
71 index = prevRow * columns;
77 index += columns;
82 index += columns;
91 index += columns;
109 index = columns * mid;
123 index = start * columns;
149 columns = numOfColumns + 2; // count range start and limit column
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
PropsVectors.java 38 private int columns; // number of columns, plus two for start field in class:PropsVectors
61 // The returned index is a multiple of columns, and therefore
69 index = prevRow * columns;
75 index += columns;
80 index += columns;
89 index += columns;
107 index = columns * mid;
121 index = start * columns;
147 columns = numOfColumns + 2; // count range start and limit column
    [all...]
  /external/chromium-trace/catapult/tracing/tracing/ui/analysis/
power_sample_summary_table_test.html 112 var columns = table.$.table.tableColumns;
114 assert.lengthOf(columns, 5);
116 assert.equal(columns[0].title, 'Min power');
117 assert.equal(columns[0].width, '100px');
118 assert.equal(columns[0].value(row), '0.001 W');
120 assert.equal(columns[1].title, 'Max power');
121 assert.equal(columns[1].width, '100px');
122 assert.equal(columns[1].value(row), '0.003 W');
124 assert.equal(columns[2].title, 'Time-weighted average');
125 assert.equal(columns[2].width, '100px')
    [all...]
memory_dump_vm_regions_details_pane_test.html 220 function checkRow(columns, row, expectedTitle, expectedStartAddress,
224 assert.equal(columns[0].formatTitle(row), expectedTitle);
225 checkStringFields(row, columns[1], expectedStartAddress);
226 checkSizeNumericFields(row, columns[2], expectedVirtualSize);
227 checkStringFields(row, columns[3], expectedProtectionFlags);
228 checkSizeNumericFields(row, columns[4], expectedProportionalResidentValues);
229 checkSizeNumericFields(row, columns[5], expectedPrivateDirtyResidentValues);
230 checkSizeNumericFields(row, columns[6], expectedSwappedValues);
297 var columns = table.tableColumns;
298 checkColumns(columns, EXPECTED_COLUMNS, undefined /* no aggregation */)
    [all...]
power_sample_table_test.html 78 var columns = table.$.table.tableColumns;
79 assert.lengthOf(columns, 2);
81 assert.equal(columns[0].title, 'Time');
82 assert.equal(columns[0].width, '100px');
83 var timestampSpan = columns[0].value(series.samples[0]);
88 assert.equal(columns[1].title, 'Power');
89 assert.equal(columns[1].width, '100%');
90 var powerSpan = columns[1].value(series.samples[0]);
  /development/samples/SearchableDictionary/src/com/example/android/searchabledict/
DictionaryDatabase.java 44 //The columns we'll include in the dictionary table
64 * Builds a map for all columns that may be requested, which will be given to the
66 * all columns, even if the value is the key. This allows the ContentProvider to request
67 * columns w/o the need to know real column names and create the alias itself.
86 * @param columns The columns to include, if null then all are included
89 public Cursor getWord(String rowId, String[] columns) {
93 return query(selection, selectionArgs, columns);
96 * SELECT <columns> FROM <table> WHERE rowid = <rowId>
104 * @param columns The columns to include, if null then all are include
    [all...]
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
AbstractSuggestionExtras.java 35 HashSet<String> columns = new HashSet<String>(); local
36 columns.addAll(doGetExtraColumnNames());
38 columns.addAll(mMore.getExtraColumnNames());
40 return columns;
CursorBackedSuggestionExtras.java 27 * SuggestionExtras taking values from the extra columns in a suggestion cursor.
34 DEFAULT_COLUMNS.addAll(Arrays.asList(SuggestionCursorBackedCursor.COLUMNS));
61 String[] columns = getCursorColumns(cursor); local
62 for (String cursorColumn : columns) {
71 String[] columns = getCursorColumns(cursor); local
72 if (columns == null) return null;
74 for (String cursorColumn : columns) {
  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/correlation/
Covariance.java 27 * Computes covariances for pairs of arrays or columns of a matrix.
31 * columns of the input matrices are assumed to represent variable values.</p>
68 * whose columns represent covariates.
73 * <p>The input array must be rectangular with at least two columns
76 * @param data rectangular array with columns representing covariates
79 * rectangular with at least two rows and two columns.
87 * whose columns represent covariates.
89 * <p>The input array must be rectangular with at least two columns
92 * @param data rectangular array with columns representing covariates
94 * rectangular with at least two rows and two columns
    [all...]
  /external/squashfs-tools/squashfs-tools/
progressbar.c 49 int columns; variable
62 "columns\n");
63 columns = 80;
65 columns = winsize.ws_col;
93 static void progress_bar(long long current, long long max, int columns)
104 hashes = (current * (columns - used)) / max;
105 spaces = columns - used - hashes;
107 if((current > max) || (columns - used < 0))
146 progress_bar(cur_uncompressed, estimated_uncompressed, columns);
170 columns);
    [all...]
  /external/toybox/lib/
linestack.c 79 // Show width many columns, negative means from right edge.
81 // if escout, send it unprintable chars, returns columns output or -1 for
83 // Returns width in columns, moves *str to end of data consumed.
87 int columns = 0, col, bytes; local
97 if (width-columns<col) break;
99 } else if (!escout || 0>(col = escout(out, width-columns, &end))) {
111 if (width-columns<col) buf[col = width-columns] = 0;
115 columns += col;
120 return columns;
    [all...]
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/
ContactsFacade.java 104 String[] columns = cursor.getColumnNames(); local
105 for (int i = 0; i < columns.length; i++) {
106 result.add(columns[i]);
117 String[] columns = { "_id" }; local
118 Cursor cursor = mContentResolver.query(CONTACTS_URI, columns, null, null, null);
132 String[] columns; local
135 columns = new String[] { "_id", "name", "primary_phone", "primary_email", "type" };
138 columns = new String[attributes.length()];
140 columns[i] = attributes.getString(i);
144 for (String s : columns) {
205 String[] columns; local
265 String[] columns = jsonToArray(attributes); local
    [all...]
  /external/chromium-trace/catapult/tracing/tracing/value/ui/
generic_table_view.html 194 var columns = tr.b.dictionaryValues(columnsByName);
195 if (columns.length === 0)
204 columns.sort(function(a, b) {
215 if (columns.length == 1)
218 colWidthPercentage = (100 / (columns.length - 1)).toFixed(3) + '%';
219 columns[0].width = '250px';
220 for (var i = 1; i < columns.length; i++)
221 columns[i].width = colWidthPercentage;
223 return columns;
226 createFooterRowsIfNeeded_: function(columns) {
    [all...]
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
FileCache.java 42 FileEntry.Columns.HASH_CODE + "=? AND " + FileEntry.Columns.CONTENT_URL + "=?";
43 private static final String ID_WHERE = FileEntry.Columns.ID + "=?";
45 {String.format("sum(%s)", FileEntry.Columns.SIZE)};
47 FileEntry.Columns.ID, FileEntry.Columns.FILENAME,
48 FileEntry.Columns.CONTENT_URL, FileEntry.Columns.SIZE};
50 String.format("%s ASC", FileEntry.Columns.LAST_ACCESS);
184 values.put(FileEntry.Columns.LAST_ACCESS, System.currentTimeMillis())
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/apitools/apitools/base/py/testing/testclient/
fusiontables_v1_messages.py 63 """Represents a list of columns in a table.
66 items: List of all requested columns.
67 kind: Type name: a list of all columns.
70 totalItems: Total number of columns for the table.
85 maxResults: Maximum number of columns to return. Optional. Default is 5.
88 tableId: Table whose columns are being listed.
101 pageSize: Maximum number of columns to return. Optional. Default is 5.
104 tableId: Table whose columns are being listed.
114 """Represents a list of columns in a table.
117 items: List of all requested columns
125 columns = _messages.MessageField('Column', 1, repeated=True) variable in class:ColumnListAlternate
    [all...]
  /external/autotest/tko/
plotgraph 5 ($file, $y_label, $columns, $title) = @ARGV;
8 die unless ($columns =~ /^1:\d+/);
11 plotgraph($file, $y_label, $columns, $title);
15 # $columns spec is 1:y-value:y-stddev
17 my ($file, $y_label, $columns, $title) = @_;
37 $plot_main = "\"${file}.main\" using $columns title \"mainline\"";
40 $plot_mm = "\"${file}.mm\" using $columns title \"-mm\"";
43 $plot_other = "\"${file}.other\" using $columns title \"other\"";
  /external/autotest/frontend/client/src/autotest/common/table/
DataTable.java 41 // click events coming from these columns.
43 // for indexing into column subarrays (i.e. columns[1][COL_NAME])
52 protected String[][] columns; field in class:DataTable
68 * @param columns An array specifying the name of each column and the field
73 public DataTable(String[][] columns) {
74 int rows = columns.length;
75 this.columns = new String[rows][2];
77 System.arraycopy(columns[i], 0, this.columns[i], 0, 2);
88 for (int i = 0; i < columns.length; i++)
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
NonSquareMatrixException.java 36 * @param columns number of columns of the faulty matrix
38 public NonSquareMatrixException(final int rows, final int columns) {
39 super(LocalizedFormats.NON_SQUARE_MATRIX, rows, columns);
OpenMapRealMatrix.java 38 /** Number of columns of the matrix. */
39 private final int columns; field in class:OpenMapRealMatrix
47 * @param columnDimension number of columns of the matrix
52 this.columns = columnDimension;
62 this.columns = matrix.columns;
82 return columns;
111 final int row = iterator.key() / columns;
112 final int col = iterator.key() - row * columns;
146 final int row = iterator.key() / columns;
    [all...]

Completed in 488 milliseconds

12 3 4 5 6 7 8 91011>>