HomeSort by relevance Sort by last modified time
    Searched refs:row (Results 26 - 50 of 1110) sorted by null

12 3 4 5 6 7 8 91011>>

  /frameworks/testing/uiautomator/library/core-src/com/android/uiautomator/core/
UiCollection.java 56 UiObject row = getChildByInstance(childPattern, x); local
57 String nodeDesc = row.getContentDescription();
59 return row;
61 UiObject item = row.getChild(new UiSelector().descriptionContains(text));
63 return row;
114 UiObject row = getChildByInstance(childPattern, x); local
115 String nodeText = row.getText();
117 return row;
119 UiObject item = row.getChild(new UiSelector().text(text));
121 return row;
    [all...]
  /external/webkit/Source/WebCore/rendering/
RenderTableSection.h 48 void addCell(RenderTableCell*, RenderTableRow* row);
76 typedef Vector<CellStruct> Row;
79 Row* row; member in struct:WebCore::RenderTableSection::RowStruct
85 CellStruct& cellAt(int row, int col) { return (*m_grid[row].row)[col]; }
86 const CellStruct& cellAt(int row, int col) const { return (*m_grid[row].row)[col];
    [all...]
  /frameworks/base/core/java/android/util/
MonthDisplayHelper.java 23 * 6 row calendar grid format.
111 * @param row Which row (0-5).
115 public int[] getDigitsForRow(int row) {
116 if (row < 0 || row > 5) {
117 throw new IllegalArgumentException("row " + row
123 result[column] = getDayAt(row, column);
130 * @param row The row, 0-5, starting from the top
    [all...]
  /external/eigen/Eigen/src/Core/
Swap.h 52 inline Scalar& coeffRef(Index row, Index col)
54 return m_expression.const_cast_derived().coeffRef(row, col);
62 inline Scalar& coeffRef(Index row, Index col) const
64 return m_expression.coeffRef(row, col);
73 void copyCoeff(Index row, Index col, const DenseBase<OtherDerived>& other)
76 eigen_internal_assert(row >= 0 && row < rows()
78 Scalar tmp = m_expression.coeff(row, col);
79 m_expression.coeffRef(row, col) = _other.coeff(row, col)
    [all...]
NestByValue.h 50 inline const CoeffReturnType coeff(Index row, Index col) const
52 return m_expression.coeff(row, col);
55 inline Scalar& coeffRef(Index row, Index col)
57 return m_expression.const_cast_derived().coeffRef(row, col);
71 inline const PacketScalar packet(Index row, Index col) const
73 return m_expression.template packet<LoadMode>(row, col);
77 inline void writePacket(Index row, Index col, const PacketScalar& x)
79 m_expression.const_cast_derived().template writePacket<LoadMode>(row, col, x);
Flagged.h 58 inline CoeffReturnType coeff(Index row, Index col) const
60 return m_matrix.coeff(row, col);
68 inline const Scalar& coeffRef(Index row, Index col) const
70 return m_matrix.const_cast_derived().coeffRef(row, col);
78 inline Scalar& coeffRef(Index row, Index col)
80 return m_matrix.const_cast_derived().coeffRef(row, col);
89 inline const PacketScalar packet(Index row, Index col) const
91 return m_matrix.template packet<LoadMode>(row, col);
95 inline void writePacket(Index row, Index col, const PacketScalar& x)
97 m_matrix.const_cast_derived().template writePacket<LoadMode>(row, col, x)
    [all...]
DenseCoeffsBase.h 87 * parameters \a row and \a col are in range.
94 EIGEN_STRONG_INLINE CoeffReturnType coeff(Index row, Index col) const
96 eigen_internal_assert(row >= 0 && row < rows()
98 return derived().coeff(row, col);
107 /** \returns the coefficient at given the given row and column.
111 EIGEN_STRONG_INLINE CoeffReturnType operator()(Index row, Index col) const
113 eigen_assert(row >= 0 && row < rows()
115 return derived().coeff(row, col)
502 const Index row = rowIndexByOuterInner(outer,inner); local
545 const Index row = rowIndexByOuterInner(outer,inner); local
    [all...]
  /external/webkit/Source/WebCore/html/
HTMLTableRowElement.cpp 66 // To match Firefox, the row indices work like this:
69 // Rows from other <thead> and <tfoot> elements don't get row indices at all.
74 for (Node *row = head->firstChild(); row; row = row->nextSibling()) {
75 if (row == this)
77 if (row->hasTagName(trTag))
85 for (Node* row = section->firstChild(); row; row = row->nextSibling())
    [all...]
  /external/icu4c/common/
propsvec.c 33 int32_t prevRow; /* search optimization: remember last row seen */
44 uint32_t *v, *row; local
70 /* set the all-Unicode row and the special-value rows */
71 row=pv->v;
72 uprv_memset(row, 0, pv->rows*columns*4);
73 row[0]=0;
74 row[1]=0x110000;
75 row+=columns;
77 row[0]=cp;
78 row[1]=cp+1
94 uint32_t *row; local
279 uint32_t *row; local
293 uint32_t *row; local
335 uint32_t *row; local
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/maccommon/
SDL_macmouse.c 56 int row, bytes; local
74 for ( row=0; row<h; ++row ) {
75 SDL_memcpy(&cursor->curs.data[row], data, bytes);
78 for ( row=0; row<h; ++row ) {
79 SDL_memcpy(&cursor->curs.mask[row], mask, bytes);
  /external/markdown/markdown/extensions/
tables.py 55 for row in rows:
56 self._build_row(row, tbody, align, border)
58 def _build_row(self, row, parent, align, border):
59 """ Given a row of text, build table cells. """
64 cells = self._split_row(row, border)
65 # We use align here rather than cells to ensure every row
76 def _split_row(self, row, border):
77 """ split a row of text into list of cells. """
79 if row.startswith('|'):
80 row = row[1:
    [all...]
  /libcore/luni/src/test/java/libcore/java/text/
DateFormatSymbolsTest.java 86 // Kill a row.
107 for (String[] row : DateFormatSymbols.getInstance(Locale.US).getZoneStrings()) {
108 zoneStrings.put(row[0], row);
121 private static void assertUtc(String[] row) {
124 assertEquals(Arrays.toString(row), "UTC", row[2]); local
125 assertEquals(Arrays.toString(row), "UTC", row[4]); local
135 for (String[] row : array)
150 String[] row = array[i]; local
    [all...]
  /build/tools/
fileslist.py 33 row = (
37 output.append(row)
41 for row in output:
42 print "%12d %s" % row
  /external/chromium/chrome/browser/
possible_url_model.h 36 const GURL& GetURL(int row);
37 const std::wstring& GetTitle(int row);
44 virtual string16 GetText(int row, int col_id) OVERRIDE;
45 virtual SkBitmap GetIcon(int row) OVERRIDE;
  /external/guava/guava-gwt/src/com/google/common/collect/
HashBasedTable_CustomFieldSerializer.java 42 for (Entry<?, ?> row : hashMap.entrySet()) {
43 table.row(row.getKey()).putAll((Map<?, ?>) row.getValue());
53 * Therefore, the backing map is serializable (assuming the row,
  /frameworks/base/core/tests/coretests/src/android/widget/focus/
LinearLayoutGrid.java 39 public Button getButtonAt(int column, int row) {
40 if (row < 0 || row > 2) {
41 throw new IllegalArgumentException("row out of range");
46 return (Button) getColumn(column).getChildAt(row);
  /external/chromium/chrome/browser/ui/cocoa/
table_row_nsimage_cache.h 16 // per row. This class converts these SkBitmaps to NSImages on demand, and
26 // Returns the icon of the |row|th row.
27 virtual SkBitmap GetIcon(int row) const = 0;
37 // Lazily converts the image at the given row and caches it in |icon_images_|.
38 NSImage* GetImageForRow(int row);
47 // The table model we query for row count and icons.
  /external/eigen/doc/snippets/
MatrixBase_eval.cpp 5 cout << "Now we want to copy a column into a row." << endl;
6 cout << "If we do m.col(1) = m.row(0), then m becomes:" << endl;
7 m.col(1) = m.row(0);
9 cout << "Now let us instead do m.col(1) = m.row(0).eval(). Then m becomes" << endl;
11 m.col(1) = m.row(0).eval();
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
mb_utils.cpp 28 int row; local
29 row = MB_SIZE;
32 while (row)
76 row -= 4;
89 int row; local
91 row = B_SIZE;
92 while (row)
129 row -= 4;
  /packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/
SoftKeyboard.java 84 * Rows in this soft keyboard. Each row has a id. Only matched rows will be
214 for (int row = 0; row < mKeyRows.size(); row++) {
215 KeyRow keyRow = mKeyRows.get(row);
279 public KeyRow getKeyRowForDisplay(int row) {
280 if (null != mKeyRows && mKeyRows.size() > row) {
281 KeyRow keyRow = mKeyRows.get(row);
290 public SoftKey getKey(int row, int location) {
291 if (null != mKeyRows && mKeyRows.size() > row) {
    [all...]
  /external/chromium/chrome/browser/ui/views/
generic_info_view.cc 27 void GenericInfoView::SetNameByStringId(int row, int name_string_id) {
28 SetName(row, UTF16ToWide(l10n_util::GetStringUTF16(name_string_id)));
31 void GenericInfoView::SetName(int row, const string16& name) {
33 DCHECK(row >= 0 && row < number_of_rows_);
34 name_views_[row]->SetText(name);
37 void GenericInfoView::SetValue(int row, const string16& name) {
39 DCHECK(row >= 0 && row < number_of_rows_);
40 value_views_[row]->SetText(name)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/grid/
GridModel.java 91 /** Height assigned to a newly added row with the Add Row action */
119 * Array of positions (indexed by row) of the top edge of table cells; this
120 * corresponds to the row positions in the grid
132 * Array of positions (indexed by row) of the maximum bottom bounds of a node in the
133 * given row; this represents the visual edge of a row even when the actual row is
231 * should be positioned at the given row and column. This will skip over any nodes
235 * @param row the target row of the new nod
449 int row = declaredRowCount; local
503 int row = 0; local
516 assert nextRow > row; local
539 assert nextRow > row; local
547 int row = 0; local
644 int row = minField.getInt(rowInterval); local
762 int row = view.row; local
836 int row = view.row; local
1302 int row = Arrays.binarySearch(mTop, y); local
1339 int row = Arrays.binarySearch(mTop, y); local
1783 int row = view.row; local
1832 public int row; field in class:GridModel.ViewData
    [all...]
  /frameworks/base/core/java/android/text/
PackedObjectVector.java 44 getValue(int row, int column)
46 if (row >= mRowGapStart)
47 row += mRowGapLength;
49 Object value = mValues[row * mColumns + column];
55 setValue(int row, int column, E value)
57 if (row >= mRowGapStart)
58 row += mRowGapLength;
60 mValues[row * mColumns + column] = value;
64 insertAt(int row, E[] values)
66 moveRowGapTo(row);
    [all...]
  /cts/apps/CtsVerifier/lib/colorchecker/
imagetesthandler.cpp 61 void ImageTestHandler::drawPoint(int row, int column, const Vec3i &color) {
62 if ((row >= 0) && (column >= 0) &&
63 (column < mDebugWidth) && (row < mDebugHeight)) {
64 mDebugOutput[(row*mDebugWidth + column) * 4] = color.r();
65 mDebugOutput[(row*mDebugWidth + column) * 4+1] = color.g();
66 mDebugOutput[(row*mDebugWidth + column) * 4+2] = color.b();
67 mDebugOutput[(row*mDebugWidth + column) * 4+3] = 255;
  /packages/apps/Launcher2/
print_db.py 46 for row in c:
47 rows.append(row)
124 data = [dict(zip(columns,row)) for row in rows]
154 for row in rows:
157 for i in range(0,len(row)):
158 cell = row[i]
159 # row[0] is always _id
161 print_functions[i](out, row[0], row, cell
    [all...]

Completed in 621 milliseconds

12 3 4 5 6 7 8 91011>>