/external/eigen/doc/snippets/ |
Tutorial_commainit_01b.cpp | 2 m.row(0) << 1, 2, 3;
|
/external/libvpx/libvpx/vp8/common/ |
mv.h | 18 short row; member in struct:__anon23003
|
/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/chromium_org/third_party/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...] |
/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...] |
/external/chromium_org/ui/gfx/ |
transform_util.cc | 200 double row[3][3]; local 203 row[i][j] = matrix.getDouble(j, i); 205 // Compute X scale factor and normalize first row. 206 decomp->scale[0] = Length3(row[0]); 208 Scale3(row[0], 1.0 / decomp->scale[0]); 210 // Compute XY shear factor and make 2nd row orthogonal to 1st. 211 decomp->skew[0] = Dot<3>(row[0], row[1]); 212 Combine<3>(row[1], row[1], row[0], 1.0, -decomp->skew[0]) [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...] |
linear_least_squares_problems.cc | 198 // Row 1 209 // Row 2 220 // Row 3 231 // Row 4 242 // Row 5 253 // Row 6 306 // Row 1 312 CompressedRow& row = bs->rows.back(); local 313 row.block.size = 1; 314 row.block.position = 0 325 CompressedRow& row = bs->rows.back(); local 338 CompressedRow& row = bs->rows.back(); local 351 CompressedRow& row = bs->rows.back(); local 364 CompressedRow& row = bs->rows.back(); local 378 CompressedRow& row = bs->rows.back(); local 444 CompressedRow& row = bs->rows.back(); local 454 CompressedRow& row = bs->rows.back(); local 464 CompressedRow& row = bs->rows.back(); local 474 CompressedRow& row = bs->rows.back(); local 484 CompressedRow& row = bs->rows.back(); local [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/sqlite3/test/ |
factory.py | 31 def dict_factory(cursor, row): 34 d[col[0]] = row[idx] 74 row = cur.fetchone() 75 self.assertTrue(isinstance(row, 77 "row is not instance of dict") 88 self.con.row_factory = lambda cur, row: list(row) 89 row = self.con.execute("select 1, 2").fetchone() 90 self.assertTrue(isinstance(row, 92 "row is not instance of list" [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/sqlite3/test/ |
factory.py | 31 def dict_factory(cursor, row): 34 d[col[0]] = row[idx] 74 row = cur.fetchone() 75 self.assertTrue(isinstance(row, 77 "row is not instance of dict") 88 self.con.row_factory = lambda cur, row: list(row) 89 row = self.con.execute("select 1, 2").fetchone() 90 self.assertTrue(isinstance(row, 92 "row is not instance of list" [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 < 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/chromium_org/chrome/browser/history/android/ |
bookmark_model_sql_handler_unittest.cc | 79 HistoryAndBookmarkRow row; local 80 row.set_raw_url("http://bookmark.com"); 81 row.set_url(GURL("http://bookmark.com")); 82 row.set_title(UTF8ToUTF16("Bookmark Title")); 83 row.set_is_bookmark(true); 86 ASSERT_TRUE(handler.Insert(&row)); 89 bookmark_model_->GetNodesByURL(row.url(), &nodes); 91 EXPECT_EQ(row.title(), nodes[0]->GetTitle()); 98 HistoryAndBookmarkRow row; local 99 row.set_raw_url("http://bookmark.com") 126 HistoryAndBookmarkRow row; local 210 HistoryAndBookmarkRow row; local [all...] |
android_urls_sql_handler.h | 20 virtual bool Update(const HistoryAndBookmarkRow& row, 23 virtual bool Insert(HistoryAndBookmarkRow* row) OVERRIDE;
|
urls_sql_handler.h | 21 virtual bool Insert(HistoryAndBookmarkRow* row) OVERRIDE; 22 virtual bool Update(const HistoryAndBookmarkRow& row,
|
/external/chromium_org/third_party/WebKit/Source/core/css/ |
CSSGridTemplateValue.cpp | 49 static String stringForPosition(const NamedGridAreaMap& gridAreaMap, size_t row, size_t column) 56 if (row >= coordinate.rows.initialPositionIndex && row <= coordinate.rows.finalPositionIndex) 73 for (size_t row = 0; row < m_rowCount; ++row) { 76 builder.append(stringForPosition(m_gridAreaMap, row, column)); 81 if (row != m_rowCount - 1)
|
/external/chromium_org/ui/views/controls/table/ |
test_table_model.h | 18 virtual string16 GetText(int row, int column_id) OVERRIDE; 19 virtual gfx::ImageSkia GetIcon(int row) OVERRIDE;
|
/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...] |
/external/chromium/chrome/browser/ui/views/ |
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);
|
/external/chromium_org/chrome/utility/media_galleries/ |
pmp_column_reader.h | 32 // These functions read the value of that |row| into |result|. 33 // Functions return false if the column is of the wrong type or the row 35 bool ReadString(const uint32 row, std::string* result) const; 36 bool ReadUInt32(const uint32 row, uint32* result) const; 37 bool ReadDouble64(const uint32 row, double* result) const; 38 bool ReadUInt8(const uint32 row, uint8* result) const; 39 bool ReadUInt64(const uint32 row, uint64* result) const;
|
/external/chromium_org/ui/base/models/ |
table_model.h | 39 virtual base::string16 GetText(int row, int column_id) = 0; 45 virtual gfx::ImageSkia GetIcon(int row); 47 // Returns the tooltip, if any, to show for a particular row. If there are 48 // multiple columns in the row, this will only be shown when hovering over 50 virtual base::string16 GetTooltip(int row); 52 // If true, this row should be indented. 53 virtual bool ShouldIndent(int row); 67 // Returns the group id of the specified row. 69 virtual int GetGroupID(int row);
|
/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...] |
/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...] |
/frameworks/uiautomator/core/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...] |
/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...] |