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

1 2 3 4 5 6 7 8 91011>>

  /external/eigen/bench/btl/generic_bench/init/
init_matrix.hh 28 BTL_DONT_INLINE void init_row(Vector & X, int size, int row){
33 X[j]=typename Vector::value_type(init_function(row,j));
45 for (int row=0; row<A.size() ; row++){
46 init_row<init_function>(A[row],size,row);
53 for (int row=0; row<A.size() ; row++
    [all...]
  /external/v8/tools/
process-heap-prof.py 64 for row in logreader:
65 if row[0] == 'heap-sample-begin' and row[1] == 'Heap':
66 sample_time = float(row[3])/1000.0
72 elif row[0] == 'heap-sample-end' and row[1] == 'Heap':
75 elif row[0] == itemname and sampling:
76 print(row[1]),
78 print('%d' % (int(row[2]))),
80 print('%d' % (int(row[3])))
    [all...]
  /frameworks/base/core/tests/coretests/src/android/widget/focus/
FocusChangeWithInterestingRectHintTest.java 37 * when taking focus to best select the internal row to show as selected.
73 for (int row = 0; row < numRows; row++) {
75 if ((row % 2) == 0) {
76 assertEquals("row " + row + ": should be at left column",
77 row, mLeftColumn.getSelectedRow());
80 assertTrue("row " + row + ": should be at middle column"
    [all...]
  /external/eigen/test/
schur_real.cpp 22 for(int row = 2; row < size; ++row) {
23 for(int col = 0; col < row - 1; ++col) {
24 VERIFY(T(row,col) == Scalar(0));
30 for(int row = 1; row < size; ++row) {
31 if (T(row,row-1) != Scalar(0))
    [all...]
  /external/eigen/doc/snippets/
MatrixBase_row.cpp 2 m.row(1) = Vector3d(4,5,6);
MatrixBase_setOnes.cpp 2 m.row(1).setOnes();
MatrixBase_setZero.cpp 2 m.row(1).setZero();
Tutorial_commainit_01b.cpp 2 m.row(0) << 1, 2, 3;
  /external/skia/src/gpu/
GrRectanizer.cpp 38 struct Row {
47 Row fRows[16];
61 void initRow(Row* row, int rowHeight) {
62 row->fLoc.set(0, fNextStripY);
63 row->fRowHeight = rowHeight;
77 We use bsearch, but there may be more than one row with the same height,
86 Row* row = &fRows[HeightToRowIndex(height)]; local
87 GrAssert(row->fRowHeight == 0 || row->fRowHeight == height)
    [all...]
GrRectanizer_fifo.cpp 38 struct Row {
47 Row fRows[16];
61 void initRow(Row* row, int rowHeight) {
62 row->fLoc.set(0, fNextStripY);
63 row->fRowHeight = rowHeight;
77 We use bsearch, but there may be more than one row with the same height,
86 Row* row = &fRows[HeightToRowIndex(height)]; local
87 GrAssert(row->fRowHeight == 0 || row->fRowHeight == height)
    [all...]
  /cts/tools/dasm/src/java_cup/
parse_action_table.java 7 * It has one row for each state in the parse machine, and a column for
67 for (int row = 0; row < num_states(); row++)
69 for (int col = 0; col < under_state[row].size(); col++)
72 act = under_state[row].under_term[col];
112 for (int row = 0; row < num_states(); row++)
114 result += "From state #" + row + "\n"
    [all...]
parse_reduce_table.java 6 * It has one row for each state in the parse machines, and a column for
63 for (int row = 0; row < num_states(); row++)
65 result += "From state #" + row + "\n";
67 for (int col = 0; col < under_state[row].size(); col++)
70 goto_st = under_state[row].under_non_term[col];
  /external/chromium/chrome/browser/ui/views/
database_open_info_view.cc 35 int row = 0; local
36 SetValue(row++, url);
37 SetValue(row++, database_name);
38 SetValue(row++, display_name);
39 SetValue(row++, size);
appcache_info_view.cc 35 int row = 0; local
36 SetValue(row++, manifest_url);
37 SetValue(row++, size);
38 SetValue(row++, creation_date);
39 SetValue(row++, last_access_date);
  /frameworks/base/core/java/android/database/
CursorWindow.java 74 private static native int nativeGetType(int windowPtr, int row, int column);
75 private static native byte[] nativeGetBlob(int windowPtr, int row, int column);
76 private static native String nativeGetString(int windowPtr, int row, int column);
77 private static native long nativeGetLong(int windowPtr, int row, int column);
78 private static native double nativeGetDouble(int windowPtr, int row, int column);
79 private static native void nativeCopyStringToBuffer(int windowPtr, int row, int column,
82 private static native boolean nativePutBlob(int windowPtr, byte[] value, int row, int column);
83 private static native boolean nativePutString(int windowPtr, String value, int row, int column);
84 private static native boolean nativePutLong(int windowPtr, long value, int row, int column);
85 private static native boolean nativePutDouble(int windowPtr, double value, int row, int column)
    [all...]
  /external/ceres-solver/internal/ceres/
visibility_test.cc 58 // Row 1
61 CompressedRow& row = bs.rows.back(); local
62 row.block.size = 2;
63 row.block.position = 0;
64 row.cells.push_back(Cell(0, 0));
65 row.cells.push_back(Cell(5, 0));
68 // Row 2
71 CompressedRow& row = bs.rows.back(); local
72 row.block.size = 2;
73 row.block.position = 2
81 CompressedRow& row = bs.rows.back(); local
91 CompressedRow& row = bs.rows.back(); local
141 CompressedRow& row = bs.rows.back(); local
150 CompressedRow& row = bs.rows.back(); local
159 CompressedRow& row = bs.rows.back(); local
168 CompressedRow& row = bs.rows.back(); local
    [all...]
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/libvpx/libvpx/vp8/common/
mv.h 18 short row; member in struct:__anon10956
  /external/skia/bench/
TableBench.cpp 51 for (int row = 0; row < kNumRows; ++row) {
54 row * kCellHeight,
56 (row+1) * kCellHeight);
60 row * kCellHeight + (kCellHeight-SK_Scalar1),
62 (row+1) * kCellHeight);
66 row * kCellHeight,
68 (row+1) * kCellHeight);
  /external/eigen/unsupported/Eigen/src/Skyline/
SkylineInplaceLU.h 127 for (Index row = 0; row < rows; row++) {
128 const double pivot = m_lu.coeffDiag(row);
131 const Index& col = row;
138 for (Index rrow = row + 1; rrow < m_lu.rows(); rrow++) {
139 typename MatrixType::InnerUpperIterator uItPivot(m_lu, row);
143 uItPivot += (rrow - row - 1);
157 for (Index rrow = row + 1; rrow < m_lu.rows(); rrow++) {
158 typename MatrixType::InnerUpperIterator uItPivot(m_lu, row);
    [all...]
  /external/skia/src/gpu/effects/
GrTextureStripAtlas.cpp 101 // We already have the data in a row, so we can just return that row
102 AtlasRow* row = fKeyTable[index]; local
103 if (0 == row->fLocks) {
104 this->removeFromLRU(row);
106 ++row->fLocks;
110 // required for storing row numbers and just compute it with some pointer arithmetic
111 rowNumber = static_cast<int>(row - fRows);
116 // We don't have this data cached, so pick the least recently used row to copy into
117 AtlasRow* row = this->getLRU() local
188 AtlasRow* row = fLRUFront; local
    [all...]
  /frameworks/base/core/java/android/text/
PackedIntVector.java 55 * Returns the value at the specified row and column.
57 * @param row the index of the row to return.
62 * @throws IndexOutOfBoundsException if the row is out of range
63 * (row &lt; 0 || row >= size()) or the column is out of range
66 public int getValue(int row, int column) {
69 if (((row | column) < 0) || (row >= size()) || (column >= columns)) {
70 throw new IndexOutOfBoundsException(row + ", " + column)
    [all...]
  /external/eigen/Eigen/src/Eigen2Support/
Minor.h 62 Index row, Index col)
63 : m_matrix(matrix), m_row(row), m_col(col)
65 eigen_assert(row >= 0 && row < matrix.rows()
74 inline Scalar& coeffRef(Index row, Index col)
76 return m_matrix.const_cast_derived().coeffRef(row + (row >= m_row), col + (col >= m_col));
79 inline const Scalar coeff(Index row, Index col) const
81 return m_matrix.coeff(row + (row >= m_row), col + (col >= m_col))
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
NotificationData.java 37 public View row; // the outer expanded view field in class:NotificationData.Entry
50 writeBooleanTag(row, R.id.expandable_tag, expandedLarge != null);
59 return NotificationData.getIsExpandable(row);
65 return NotificationData.getUserExpanded(row);
71 return NotificationData.setUserExpanded(row, userExpanded);
77 return NotificationData.getUserLocked(row);
83 return NotificationData.setUserLocked(row, userLocked);
128 public int add(IBinder key, StatusBarNotification notification, View row, View content,
133 entry.row = row;
    [all...]
  /build/tools/
compare_fileslist.py 20 def IsDifferent(row):
22 for v in row:
48 row = [fn]
51 row.append(sizes[i])
53 row.append(None)
54 rows.append(row)
89 for row in rows:
91 for sz in row[1:]:
94 elif IsDifferent(row[1:]):
98 print " <td class='fn'>%s</td>" % cgi.escape(row[0]
    [all...]

Completed in 1642 milliseconds

1 2 3 4 5 6 7 8 91011>>