HomeSort by relevance Sort by last modified time
    Searched full:column (Results 101 - 125 of 5155) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
AbstractRealMatrix.java 51 * Create a new RealMatrix with the supplied row and column dimensions.
55 * @throws IllegalArgumentException if row or column dimension is not positive
201 /** Sum of absolute values on one column. */
217 public void visit(final int row, final int column, final double value) {
248 public void visit(final int row, final int column, final double value) {
293 public double visit(final int row, final int column, final double value) {
294 return getEntry(selectedRows[row], selectedColumns[column]);
326 /** Initial column index. */
340 public void visit(final int row, final int column, final double value) {
341 destination[row - startRow][column - startColumn] = value
    [all...]
SparseFieldMatrix.java 42 * column dimension
59 * Create a new SparseFieldMatrix<T> with the supplied row and column dimensions.
64 * @throws IllegalArgumentException if row or column dimension is not positive
104 public void addToEntry(int row, int column, T increment)
107 checkColumnIndex(column);
108 final int key = computeKey(row, column);
139 public T getEntry(int row, int column) throws MatrixIndexException {
141 checkColumnIndex(column);
142 return entries.get(computeKey(row, column));
153 public void multiplyEntry(int row, int column, T factor
    [all...]
AbstractFieldMatrix.java 59 * Create a new FieldMatrix<T> with the supplied row and column dimensions.
64 * @throws IllegalArgumentException if row or column dimension is not positive
319 public T visit(final int row, final int column, final T value) {
320 return getEntry(selectedRows[row], selectedColumns[column]);
352 /** Initial column index. */
366 public void visit(final int row, final int column, final T value) {
367 destination[row - startRow][column - startColumn] = value;
399 public void setSubMatrix(final T[][] subMatrix, final int row, final int column)
421 checkColumnIndex(column);
423 checkColumnIndex(nCols + column - 1)
    [all...]
  /external/guava/guava/src/com/google/common/collect/
Table.java 30 * column key, with a single value. A table may be sparse, with only a small
31 * fraction of row key / column key pairs possessing a corresponding value.
35 * column with a row key / value map. Note that, in some implementations, data
36 * access by column key may have fewer supported operations or worse performance
53 * @param <C> the type of the table column keys
65 * row and column keys.
68 * @param columnKey key of column to search for
82 * column.
84 * @param columnKey key of column to search for
97 * Returns the value corresponding to the given row and column keys, o
192 Map<R, V> column(C columnKey); method in interface:Table
    [all...]
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
SuggestionCursorBackedCursor.java 31 // used by SearchDialog, expects an _id column.
109 public int getInt(int column) {
110 if (column == COLUMN_INDEX_ID) {
114 return Integer.valueOf(getString(column));
122 public String getString(int column) {
123 if (column < COLUMNS.length) {
124 switch (column) {
152 throw new CursorIndexOutOfBoundsException("Requested column " + column
156 return getExtra(column);
    [all...]
  /external/jacoco/org.jacoco.report.test/src/org/jacoco/report/internal/html/table/
CounterColumnTest.java 79 IColumnRenderer column = CounterColumn.newTotal(CounterEntity.LINE, local
82 assertTrue(column.init(Arrays.asList(item), item.getNode()));
88 IColumnRenderer column = CounterColumn.newTotal(CounterEntity.LINE, local
91 assertFalse(column.init(Arrays.asList(item), createNode(1, 0)));
97 IColumnRenderer column = CounterColumn.newTotal(CounterEntity.LINE, local
100 column.init(Collections.singletonList(item), item.getNode());
101 column.item(td, item, resources, root);
110 IColumnRenderer column = CounterColumn.newMissed(CounterEntity.LINE, local
113 column.init(Collections.singletonList(item), item.getNode());
114 column.item(td, item, resources, root)
123 IColumnRenderer column = CounterColumn.newCovered(CounterEntity.LINE, local
136 IColumnRenderer column = CounterColumn.newTotal(CounterEntity.LINE, local
149 IColumnRenderer column = CounterColumn.newTotal(CounterEntity.LINE, local
162 IColumnRenderer column = CounterColumn.newTotal(CounterEntity.LINE, local
    [all...]
  /developers/build/prebuilts/androidtv/leanback/app/src/main/java/com/example/android/tvleanback/data/
PaginatedCursor.java 48 * Index mapping from column index into the data type specific cache index;
167 public int getType(int column) {
168 return mColumnTypes[column];
182 public String getString(int column) {
183 return mStringDataCache[mPos][mStringCacheIndexMap[column]];
187 public short getShort(int column) {
188 return (short) mIntDataCache[mPos][mIntCacheIndexMap[column]];
192 public int getInt(int column) {
193 return mIntDataCache[mPos][mIntCacheIndexMap[column]];
197 public long getLong(int column) {
    [all...]
  /external/eigen/Eigen/src/SparseLU/
SparseLU_Structs.h 29 * location of the j-th column in lsub[*]. Note that xlsub
30 * is indexed by column.
35 * supernode {s,s+1,...,t=s+r} with first column s and last
36 * column t, the subscript set
38 * is the structure of column s (i.e. structure of this supernode).
42 * is the structure of the last column t of this supernode.
47 * However, if the supernode has only one column, then we
52 * The last column structures (for pruning) will be removed
57 * location of the j-th column in storage vector lusup[*]
58 * Note: xlusup is indexed by column
    [all...]
  /external/eigen/doc/
StorageOrders.dox 5 There are two different storage orders for matrices and two-dimensional arrays: column-major and row-major.
11 \section TopicStorageOrdersIntro Column-major and row-major storage
14 have to somehow be laid out linearly. There are two main ways to do this, by row and by column.
31 On the other hand, a matrix is stored in \b column-major order if it is stored column by column, starting with
32 the entire first column, followed by the entire second column, and so on. If the above matrix is stored in
33 column-major order, it is laid out as follows:
57 \c ColMajor, then it is stored in column-major order. This mechanism is used in the above Eigen program t
    [all...]
  /frameworks/base/core/java/android/util/
MonthDisplayHelper.java 122 for (int column = 0; column < 7; column++) {
123 result[column] = getDayAt(row, column);
131 * @param column The column, 0-6, starting from the left.
132 * @return The day at a particular row, column
134 public int getDayAt(int row, int column) {
136 if (row == 0 && column < mOffset)
    [all...]
  /external/autotest/frontend/migrations/
011_support_one_time_hosts.py 34 DROP COLUMN deleted"""
37 ADD COLUMN deleted BOOLEAN
41 ALTER COLUMN deleted DROP DEFAULT"""
018_add_label_only_if_needed.py 18 'ADD COLUMN only_if_needed bool NOT NULL')
22 manager.execute('ALTER TABLE labels DROP COLUMN only_if_needed')
051_rename_planner_tests.py 7 ALTER TABLE `planner_test_jobs` CHANGE COLUMN
21 ALTER TABLE `planner_test_jobs` CHANGE COLUMN
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/picker/
Picker.java 41 * column value range or labels change. Call {@link #setColumnValue(int, int, boolean)} to update
49 * three items only on currently activated column. If the Picker has focus, it will intercept DPAD
50 * directions and select activated column.
57 public void onValueChanged(Picker picker, int column);
219 * When column labels change or column range changes, call this function to re-populate the
221 * @param columnIndex Index of column to update.
222 * @param column New column to update.
224 public void setColumnAt(int columnIndex, PickerColumn column) {
241 PickerColumn column = mColumns.get(columnIndex); local
287 VerticalGridView column = mColumnViews.get(colIndex); local
347 PickerColumn column = mColumns.get(columnIndex); local
459 int column = getSelectedColumn(); local
    [all...]
PickerColumn.java 18 * Picker column class used by {@link Picker}, defines a contiguous value ranges and associated
19 * labels. A PickerColumn has a minValue and maxValue to choose between. The Picker column has
86 * Returns current value of the Column.
87 * @return Current value of the Column.
94 * Sets current value of the Column.
109 * Returns minimal value of the Column.
110 * @return Minimal value of the Column.
117 * Returns maximum value of the Column.
118 * @return Maximum value of the Column.
125 * Sets minimal value of the Column
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/grid/
GridModel.java 88 /** Width assigned to a newly added column with the Add Column action */
113 * Array of positions (indexed by column) of the left edge of table cells; this
114 * corresponds to the column positions in the grid
125 * Array of positions (indexed by column) of the maximum right hand side bounds of a
126 * node in the given column; this represents the visual edge of a column even when the
127 * actual column is wider
231 * should be positioned at the given row and column. This will skip over any nodes
236 * @param column the target column of the new nod
469 int column = declaredColumnCount; local
504 int column = 0; local
548 int column = 0; local
559 assert nextColumn > column; local
581 assert nextColumn > column; local
761 int column = view.column; local
835 int column = view.column; local
1328 int column = Arrays.binarySearch(mLeft, x); local
1370 int column = Arrays.binarySearch(mLeft, x); local
1690 int column = view.column; local
1841 public int column; field in class:GridModel.ViewData
    [all...]
  /external/llvm/test/BugPoint/
metadata.ll 8 ; CHECK: ![[LOC]] = !DILocation(line: 104, column: 105, scope: ![[SCOPE:[0-9]+]])
35 !10 = !DILocation(line: 100, column: 101, scope: !9)
36 !11 = !DILocation(line: 102, column: 103, scope: !9)
37 !12 = !DILocation(line: 104, column: 105, scope: !9)
38 !13 = !DILocation(line: 106, column: 107, scope: !9)
39 !14 = !DILocation(line: 108, column: 109, scope: !9)
  /libcore/xml/src/main/java/org/xmlpull/v1/
XmlPullParserException.java 14 protected int column = -1; field in class:XmlPullParserException
29 public XmlPullParserException(String s, int row, int column) {
32 this.column = column;
43 this.column = parser.getColumnNumber();
51 public int getColumnNumber() { return column; }
  /external/autotest/frontend/tko/
csv_encoder_unittest.py 49 request = self._make_request('get_test_views', [['col1', 'Column 1'],
50 ['col2', 'Column 2']])
54 'Column 1,Column 2',
61 [['col1', 'Column 1'],
67 'Column 1,Count in group',
81 [['col1', 'Column 1'],
87 'Column 1,Test pass rate',
  /external/autotest/tko/migrations/
025_add_test_label_foreign_keys.py 2 ALTER TABLE test_labels_tests MODIFY COLUMN test_id int(10) unsigned NOT NULL;
17 ALTER TABLE test_labels_tests MODIFY COLUMN test_id int(11) NOT NULL;
  /frameworks/base/core/java/android/database/
MergeCursor.java 96 public String getString(int column)
98 return mCursor.getString(column);
102 public short getShort(int column)
104 return mCursor.getShort(column);
108 public int getInt(int column)
110 return mCursor.getInt(column);
114 public long getLong(int column)
116 return mCursor.getLong(column);
120 public float getFloat(int column)
122 return mCursor.getFloat(column);
    [all...]
Cursor.java 40 /** Value returned by {@link #getType(int)} if the specified column is null */
43 /** Value returned by {@link #getType(int)} if the specified column type is integer */
46 /** Value returned by {@link #getType(int)} if the specified column type is float */
49 /** Value returned by {@link #getType(int)} if the specified column type is string */
52 /** Value returned by {@link #getType(int)} if the specified column type is blob */
171 * Returns the zero-based index for the given column name, or -1 if the column doesn't exist.
172 * If you expect the column to exist use {@link #getColumnIndexOrThrow(String)} instead, which
175 * @param columnName the name of the target column.
176 * @return the zero-based column index for the given column name, or -1 i
    [all...]
  /external/autotest/frontend/client/src/autotest/common/table/
DataTable.java 25 * JSONObject. A header row with column titles is automatically generated, and
31 * <li>.data-row-header - the column title row
43 // for indexing into column subarrays (i.e. columns[1][COL_NAME])
68 * @param columns An array specifying the name of each column and the field
70 * {{'field_name1', 'Column Title 1'},
71 * {'field_name2', 'Column Title 2'}, ...}.
97 * Causes the last column of the data table to fill the remainder of the width left in the
161 * Add a row from an array of Strings, one String for each column.
162 * @param rowData Data for each column, in left-to-right column order
    [all...]
  /external/llvm/test/Transforms/SimplifyCFG/
hoist-dbgvalue.ll 42 !7 = !DILocation(line: 2, column: 13, scope: !0)
45 !10 = distinct !DILexicalBlock(line: 2, column: 16, file: !20, scope: !0)
46 !11 = !DILocation(line: 3, column: 12, scope: !10)
47 !12 = !DILocation(line: 4, column: 3, scope: !10)
48 !13 = !DILocation(line: 5, column: 5, scope: !14)
49 !14 = distinct !DILexicalBlock(line: 4, column: 10, file: !20, scope: !10)
50 !15 = !DILocation(line: 6, column: 3, scope: !14)
51 !16 = !DILocation(line: 7, column: 5, scope: !17)
52 !17 = distinct !DILexicalBlock(line: 6, column: 10, file: !20, scope: !10)
53 !18 = !DILocation(line: 8, column: 3, scope: !17
    [all...]
  /external/llvm/test/DebugInfo/Mips/
dsr-fixed-objects.ll 123 !27 = !DILocation(line: 4, column: 12, scope: !4)
124 !28 = !DILocation(line: 4, column: 19, scope: !4)
125 !29 = !DILocation(line: 4, column: 26, scope: !4)
126 !30 = !DILocation(line: 4, column: 33, scope: !4)
127 !31 = !DILocation(line: 4, column: 40, scope: !4)
128 !32 = !DILocation(line: 5, column: 3, scope: !4)
129 !33 = !DILocation(line: 5, column: 13, scope: !4)
130 !34 = !DILocation(line: 5, column: 17, scope: !4)
131 !35 = !DILocation(line: 5, column: 21, scope: !4)
132 !36 = !DILocation(line: 5, column: 25, scope: !4
    [all...]

Completed in 674 milliseconds

1 2 3 45 6 7 8 91011>>