HomeSort by relevance Sort by last modified time
    Searched full:row (Results 251 - 275 of 4359) sorted by null

<<11121314151617181920>>

  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/suggestions/
MoreSuggestions.java 71 int row = 0; local
84 if ((row + 1) >= maxRow) {
87 mNumColumnsInRow[row] = index - rowStartIndex;
89 row++;
92 mRowNumbers[index] = row;
95 mNumColumnsInRow[row] = index - rowStartIndex;
96 mNumRows = row + 1;
114 for (int row = 0; row < mNumRows; row++)
149 final int row = mRowNumbers[index]; local
159 final int row = mRowNumbers[index]; local
    [all...]
  /packages/providers/MediaProvider/src/com/android/providers/media/
MediaDocumentsProvider.java 493 final RowBuilder row = result.newRow(); local
494 row.add(Root.COLUMN_ROOT_ID, TYPE_IMAGES_ROOT);
495 row.add(Root.COLUMN_FLAGS, flags);
496 row.add(Root.COLUMN_TITLE, getContext().getString(R.string.root_images));
497 row.add(Root.COLUMN_DOCUMENT_ID, TYPE_IMAGES_ROOT);
498 row.add(Root.COLUMN_MIME_TYPES, IMAGE_MIME_TYPES);
508 final RowBuilder row = result.newRow(); local
509 row.add(Root.COLUMN_ROOT_ID, TYPE_VIDEOS_ROOT);
510 row.add(Root.COLUMN_FLAGS, flags);
511 row.add(Root.COLUMN_TITLE, getContext().getString(R.string.root_videos))
523 final RowBuilder row = result.newRow(); local
532 final RowBuilder row = result.newRow(); local
541 final RowBuilder row = result.newRow(); local
550 final RowBuilder row = result.newRow(); local
573 final RowBuilder row = result.newRow(); local
604 final RowBuilder row = result.newRow(); local
631 final RowBuilder row = result.newRow(); local
662 final RowBuilder row = result.newRow(); local
685 final RowBuilder row = result.newRow(); local
704 final RowBuilder row = result.newRow(); local
729 final RowBuilder row = result.newRow(); local
    [all...]
  /external/eigen/Eigen/src/IterativeLinearSolvers/
IncompleteLUT.h 20 * by the average magnitude of all the original elements in the current row.
21 * 2) After the elimination of the row, only the @p fill largest elements in
130 int QuickSplit(VectorV &row, VectorI &ind, int ncut);
135 inline bool operator() (const Index& row, const Index& col, const Scalar&) const
137 return row!=col;
166 * \param fillfactor This is used to compute the number @p fill_in of largest elements to keep on each row.
177 * On output, the vector row is permuted such that its elements satisfy
178 * abs(row(i)) >= abs(row(ncut)) if i<ncut
179 * abs(row(i)) <= abs(row(ncut)) if i>ncut
    [all...]
  /external/javasqlite/src/main/java/SQLite/JDBC2z/
JDBCDatabaseMetaData.java 557 String row[] = { "" }; local
558 tr.newrow(row);
567 String row[] = { "" }; local
568 tr.newrow(row);
577 String row[] = new String[1]; local
578 row[0] = "TABLE";
579 tr.newrow(row);
580 row = new String[1];
581 row[0] = "VIEW";
582 tr.newrow(row);
652 String row[] = new String[cols.length]; local
810 String row[] = new String[cols.length]; local
826 String row[] = new String[cols.length]; local
923 String row[] = new String[cols.length]; local
966 String row[] = new String[cols.length]; local
1000 String row[] = new String[out.ncolumns]; local
1343 String row[] = new String[cols.length]; local
    [all...]
  /external/chromium/chrome/browser/ui/cocoa/
table_row_nsimage_cache.mm 62 NSImage* TableRowNSImageCache::GetImageForRow(int row) {
65 DCHECK_GE(row, 0);
66 DCHECK_LT(row, static_cast<int>([icon_images_ count]));
67 NSImage* image = static_cast<NSImage*>([icon_images_ pointerAtIndex:row]);
70 model_->GetIcon(row);
76 [icon_images_ replacePointerAtIndex:row withPointer:image];
table_model_array_controller.mm 22 - (NSDictionary*)columnValuesForRow:(NSInteger)row;
110 - (int)groupIDForControllerRow:(NSUInteger)row {
111 NSDictionary* values = [[self arrangedObjects] objectAtIndex:row];
177 for (NSUInteger row = range.location + offset;
178 row < NSMaxRange(range) + offset;
179 ++row) {
180 if ([self tableView:nil isGroupRow:row]) {
182 [indexes shiftIndexesStartingAtIndex:row by:1];
190 - (NSDictionary*)columnValuesForRow:(NSInteger)row {
193 [dict setObject:[NSNumber numberWithInt:model_->GetGroupID(row)]
    [all...]
  /external/chromium_org/chrome/browser/resources/options/
autofill_edit_address_overlay.html 16 <label class="settings-row">
21 <label class="settings-row">
26 <label class="settings-row">
31 <div class="input-group settings-row">
48 <div class="settings-row">
53 <div class="input-group settings-row">
  /external/chromium_org/chrome/browser/ui/cocoa/
table_row_nsimage_cache.mm 62 NSImage* TableRowNSImageCache::GetImageForRow(int row) {
65 DCHECK_GE(row, 0);
66 DCHECK_LT(row, static_cast<int>([icon_images_ count]));
67 NSImage* image = static_cast<NSImage*>([icon_images_ pointerAtIndex:row]);
70 model_->GetIcon(row);
76 [icon_images_ replacePointerAtIndex:row withPointer:image];
  /external/chromium_org/third_party/skia/src/core/
SkFilterProc.h 51 inline SkFilterProc SkGetBilinearFilterProc22RowProc(const SkFilterProc* row,
54 SkASSERT(row);
56 return row[x << 30 >> 30];
85 inline SkFilter32Proc SkGetFilter32Proc22RowProc(const SkFilter32Proc* row,
88 SkASSERT(row);
90 return row[x << 30 >> 30];
  /external/eigen/unsupported/Eigen/src/SparseExtra/
DynamicSparseMatrix.h 89 /** \returns the coefficient value at given position \a row, \a col
92 inline Scalar coeff(Index row, Index col) const
94 const Index outer = IsRowMajor ? row : col;
95 const Index inner = IsRowMajor ? col : row;
99 /** \returns a reference to the coefficient value at given position \a row, \a col
103 inline Scalar& coeffRef(Index row, Index col)
105 const Index outer = IsRowMajor ? row : col;
106 const Index inner = IsRowMajor ? col : row;
145 /** \returns a reference to the non zero coefficient at position \a row, \a col assuming that:
150 inline Scalar& insertBack(Index row, Index col
    [all...]
  /external/guava/guava-gwt/src/com/google/common/collect/
TreeBasedTable_CustomFieldSerializer.java 50 for (Entry<?, ?> row : backingMap.entrySet()) {
51 table.row(row.getKey()).putAll((Map<?, ?>) row.getValue());
61 * Therefore, the backing map is GWT serializable (assuming the row,
62 * column, value, the row comparator and column comparator are all
  /external/qemu/distrib/sdl-1.2.15/docs/man3/
SDL_CreateCursor.3 84 int i, row, col;
90 for ( row=0; row<32; ++row ) {
99 switch (image[4+row][col]) {
112 sscanf(image[4+row], "%d,%d", &hot_x, &hot_y);
  /external/skia/src/core/
SkFilterProc.h 51 inline SkFilterProc SkGetBilinearFilterProc22RowProc(const SkFilterProc* row,
54 SkASSERT(row);
56 return row[x << 30 >> 30];
85 inline SkFilter32Proc SkGetFilter32Proc22RowProc(const SkFilter32Proc* row,
88 SkASSERT(row);
90 return row[x << 30 >> 30];
  /packages/apps/Launcher3/
print_db.py 55 for row in c:
56 rows.append(row)
64 for row in c:
65 rows.append(row)
156 data = [dict(zip(columns,row)) for row in rows]
207 for row in rows:
210 for i in range(0,len(row)):
211 cell = row[i]
212 # row[0] is always _i
    [all...]
  /packages/inputmethods/LatinIME/java/res/values/
touch-position-correction.xml 43 <!-- First row -->
48 <!-- Second row -->
53 <!-- Third row -->
63 <!-- First row -->
68 <!-- Second row -->
73 <!-- Third row -->
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
TouchPositionCorrection.java 83 public float getX(final int row) {
86 // return mXs[row];
89 public float getY(final int row) {
90 return mYs[row];
93 public float getRadius(final int row) {
94 return mRadii[row];
  /external/eigen/Eigen/src/Core/
Visitor.h 22 row = (UnrollCount-1) % Derived::RowsAtCompileTime enumerator in enum:Eigen::internal::visitor_impl::__anon20407
28 visitor(mat.coeff(row, col), row, col);
99 Index row, col; member in struct:Eigen::internal::coeff_visitor
104 row = i;
124 this->row = i;
152 this->row = i;
168 * and puts in *row and *col its location.
175 DenseBase<Derived>::minCoeff(IndexType* row, IndexType* col) const
179 *row = minVisitor.row
    [all...]
  /frameworks/base/core/jni/android/graphics/
YuvToJpegEncoder.cpp 97 // y row
100 // construct u row and v row
119 for (int row = 0; row < numRows; ++row) {
120 int offset = ((rowIndex >> 1) + row) * fStrides[1];
123 int index = row * (width >> 1) + i;
172 // y row
175 // construct u row and v ro
    [all...]
  /external/ceres-solver/internal/ceres/
detect_structure.cc 48 // Iterate over row blocks of the matrix, checking if row_block,
51 const CompressedRow& row = bs.rows[r]; local
54 if (row.cells.front().block_id >= num_eliminate_blocks) {
57 const int e_block_id = row.cells.front().block_id;
60 *row_block_size = row.block.size;
62 *row_block_size != row.block.size) {
63 VLOG(2) << "Dynamic row block size because the block size changed from "
65 << row.block.size;
81 if (row.cells.size() > 1) {
82 const int f_block_id = row.cells[1].block_id
    [all...]
  /external/chromium_org/chrome/browser/history/android/
sqlite_cursor_unittest.cc 154 HistoryAndBookmarkRow row; local
155 row.set_raw_url("http://www.google.com/");
156 row.set_url(GURL("http://www.google.com/"));
161 row.set_favicon(data_bytes);
162 row.set_last_visit_time(Time::Now());
163 row.set_visit_count(2);
164 row.set_title(UTF8ToUTF16("cnn"));
167 // Insert a row and verify it succeeded.
168 service_->InsertHistoryAndBookmark(row, &cancelable_consumer_,
180 // Query the inserted row
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLTableRowsCollection.cpp 40 static bool isInHead(Element* row)
42 return row->parentNode() && toElement(row->parentNode())->hasLocalName(theadTag);
45 static bool isInBody(Element* row)
47 return row->parentNode() && toElement(row->parentNode())->hasLocalName(tbodyTag);
50 static bool isInFoot(Element* row)
52 return row->parentNode() && toElement(row->parentNode())->hasLocalName(tfootTag);
59 // Start by looking for the next row in this section
    [all...]
  /external/chromium_org/third_party/angle/src/compiler/
VariablePacker.cpp 135 int row = topRow + r; local
136 ASSERT((rows_[row] & columnFlags) == 0);
137 rows_[row] |= columnFlags;
163 for (int row = topNonFullRow_; row <= bottomRow; ++row) {
164 bool rowEmpty = row < bottomRow ? ((rows_[row] & columnFlags) == 0) : false;
167 topGoodRow = row;
172 int size = row - topGoodRow
    [all...]
  /external/chromium_org/third_party/icu/source/common/
propsvec.h 34 * Logically, each row has a certain number of uint32_t values,
38 * In each internal row,
39 * row[0] contains the start code point and
40 * row[1] contains the limit code point,
43 * Initially, there is only one "normal" row for
47 * It would be possible to store only one range boundary per row,
71 * @param columns Number of value integers (uint32_t) per row.
113 * - for each (non-unique) row, call the handler function
115 * The handler's rowIndex is the index of the row in the compacted
123 * and the row is arbitrary (but not NULL)
    [all...]
  /external/chromium_org/ui/views/controls/
prefix_selector.cc 160 // while search after the current row, otherwise search starting from the
161 // current row.
162 int row = std::max(0, prefix_delegate_->GetSelectedRow()); local
169 row = (row + 1) % row_count;
173 const int start_row = row;
176 if (TextAtRowMatchesText(row, current_text_)) {
177 prefix_delegate_->SetSelectedRow(row);
180 row = (row + 1) % row_count
    [all...]
scroll_view.h 141 // Controller to determine row boundaries.
144 // The origin and height of a row.
148 // Origin of the row.
151 // Height of the row.
155 // Used to determine row boundaries.
158 // Returns the origin and size of the row at the specified location.
168 // determined by querying the Controller for the appropriate row to scroll
176 // Returns the row information for the row at the specified location. This
192 // the top of the view to the first row, and may be 0. row_height gives th
    [all...]

Completed in 1696 milliseconds

<<11121314151617181920>>