/external/eigen/Eigen/src/Core/ |
ArrayWrapper.h | 61 inline CoeffReturnType coeff(Index row, Index col) const 63 return m_expression.coeff(row, col); 66 inline Scalar& coeffRef(Index row, Index col) 68 return m_expression.const_cast_derived().coeffRef(row, col); 71 inline const Scalar& coeffRef(Index row, Index col) const 73 return m_expression.const_cast_derived().coeffRef(row, col); 92 inline const PacketScalar packet(Index row, Index col) const 94 return m_expression.template packet<LoadMode>(row, col); 98 inline void writePacket(Index row, Index col, const PacketScalar& x) 100 m_expression.const_cast_derived().template writePacket<LoadMode>(row, col, x) [all...] |
/external/smack/src/org/xbill/DNS/ |
Compression.java | 43 int row = (name.hashCode() & 0x7FFFFFFF) % TABLE_SIZE; local 47 entry.next = table[row]; 48 table[row] = entry; 61 int row = (name.hashCode() & 0x7FFFFFFF) % TABLE_SIZE; local 63 for (Entry entry = table[row]; entry != null; entry = entry.next) {
|
/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/unsupported/Eigen/src/Skyline/ |
SkylineProduct.h | 139 for (Index row = 0; row < lhs.rows(); row++) { 140 dst(row, col) = lhs.coeffDiag(row) * rhs(row, col); 144 for (Index row = 0; row < lhs.rows(); row++) { 145 typename _Lhs::InnerLowerIterator lIt(lhs, row); [all...] |
/external/chromium_org/third_party/openssl/openssl/apps/ |
srp.c | 177 static int update_index(CA_DB *db, BIO *bio, char **row) 190 irow[i]=row[i]; 191 row[i]=NULL; 590 char **row = sk_OPENSSL_PSTRING_value(db->db->data, userindex); local 592 row[DB_srptype][0] = 'V'; 598 char *row[DB_NUMBER] ; char *gNid; local 599 row[DB_srpverifier] = NULL; 600 row[DB_srpsalt] = NULL; 601 row[DB_srpinfo] = NULL; 602 if (!(gNid = srp_create_user(user,&(row[DB_srpverifier]), &(row[DB_srpsalt]),gNrow?gNrow[DB_srpsalt]:gN,gNrow?gNrow[DB_srpverifier]:NULL, (…) 637 char **row = sk_OPENSSL_PSTRING_value(db->db->data, userindex); local [all...] |
/external/openssl/apps/ |
srp.c | 177 static int update_index(CA_DB *db, BIO *bio, char **row) 190 irow[i]=row[i]; 191 row[i]=NULL; 590 char **row = sk_OPENSSL_PSTRING_value(db->db->data, userindex); local 592 row[DB_srptype][0] = 'V'; 598 char *row[DB_NUMBER] ; char *gNid; local 599 row[DB_srpverifier] = NULL; 600 row[DB_srpsalt] = NULL; 601 row[DB_srpinfo] = NULL; 602 if (!(gNid = srp_create_user(user,&(row[DB_srpverifier]), &(row[DB_srpsalt]),gNrow?gNrow[DB_srpsalt]:gN,gNrow?gNrow[DB_srpverifier]:NULL, (…) 637 char **row = sk_OPENSSL_PSTRING_value(db->db->data, userindex); local [all...] |
/external/eigen/test/ |
nomalloc.cpp | 54 m2.col(0).noalias() -= m1 * m1.row(0).adjoint(); 55 m2.col(0).noalias() -= m1.adjoint() * m1.row(0).adjoint(); 57 m2.row(0).noalias() = m1.row(0) * m1; 58 m2.row(0).noalias() -= m1.row(0) * m1.adjoint(); 59 m2.row(0).noalias() -= m1.col(0).adjoint() * m1; 60 m2.row(0).noalias() -= m1.col(0).adjoint() * m1.adjoint(); 65 m2.col(0).noalias() -= m1.template triangularView<Upper>() * m1.row(0).adjoint(); 66 m2.col(0).noalias() -= m1.adjoint().template triangularView<Upper>() * m1.row(0).adjoint() [all...] |
/external/chromium_org/ui/webui/resources/css/ |
tree.css | 11 .tree-item > .tree-row { 44 .tree-item[expanded] > .tree-row > .expand-icon { 50 .tree-row .expand-icon { 54 .tree-row[may-have-children] .expand-icon { 58 .tree-row[has-children=false] .expand-icon { 62 .tree-row:hover { 69 WebKit has a bug with attribute selectors so we apply selected to the tree row 75 .tree-row[selected] { 80 .tree-row[selected] { 86 .tree-row[selected]:hover [all...] |
/external/chromium/chrome/browser/ui/views/ |
generic_info_view.h | 37 void SetNameByStringId(int row, int id); 38 void SetName(int row, const string16& name); 39 void SetValue(int row, const string16& value);
|
/external/chromium_org/tools/perf/utils/results_viewer/src/ |
results_viewer.js | 38 rows.forEach(function (row, index, array) { 39 if (row.trim().length == 0) { 44 var columns = row.split(',');
|
/frameworks/opt/colorpicker/src/com/android/colorpicker/ |
ColorPickerPalette.java | 32 * row (and the padding between the squares) is determined by the user. 74 TableRow row = new TableRow(getContext()); local 77 row.setLayoutParams(params); 78 return row; 95 TableRow row = createTableRow(); local 102 addSwatchToRow(row, colorSwatch, rowNumber); 106 addView(row); 107 row = createTableRow(); 113 // Create blank views to fill the row if the last row has not been filled [all...] |
/libcore/xml/src/main/java/org/xmlpull/v1/ |
XmlPullParserException.java | 13 protected int row = -1; field in class:XmlPullParserException 29 public XmlPullParserException(String s, int row, int column) { 31 this.row = row; 42 this.row = parser.getLineNumber(); 50 public int getLineNumber() { return row; }
|
/packages/apps/Calendar/src/com/android/calendar/agenda/ |
AgendaByDayAdapter.java | 105 RowInfo row = mRowInfo.get(i); local 106 if (row != null && row.mType == TYPE_DAY) 138 RowInfo row = mRowInfo.get(position); local 139 if (row.mType == TYPE_DAY) { 140 return row; 142 return mAgendaAdapter.getItem(row.mPosition); 151 RowInfo row = mRowInfo.get(position); local 152 if (row.mType == TYPE_DAY) { 155 return mAgendaAdapter.getItemId(row.mPosition) 183 RowInfo row = mRowInfo.get(position); local 533 RowInfo row = mRowInfo.get(index); local 600 RowInfo row = mRowInfo.get(headerPos); local 622 RowInfo row = mRowInfo.get(index); local 640 RowInfo row = mRowInfo.get(position); local 655 RowInfo row = mRowInfo.get(listPos); local 679 RowInfo row = mRowInfo.get(position); local [all...] |
/sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/model/ |
ProfilesTableModel.java | 39 public Object getValueAt(int row, int column) { 43 return NAMES[row]; 47 return formatter.format(profiles[row]) + "";
|
/external/chromium_org/chrome/browser/history/android/ |
android_provider_backend.cc | 41 // Android framework assumes 'folder' column exist in the table, the row is 43 // has to be added and set as 0 when the row is bookmark. 73 bool IsHistoryAndBookmarkRowValid(const HistoryAndBookmarkRow& row) { 75 DCHECK(row.is_value_set_explicitly(HistoryAndBookmarkRow::RAW_URL) == 76 row.is_value_set_explicitly(HistoryAndBookmarkRow::URL)); 87 if (row.is_value_set_explicitly(HistoryAndBookmarkRow::LAST_VISIT_TIME) && 88 row.last_visit_time() > Time::Now()) 91 if (row.is_value_set_explicitly(HistoryAndBookmarkRow::CREATED) && 92 row.created() > Time::Now()) 95 if (row.is_value_set_explicitly(HistoryAndBookmarkRow::LAST_VISIT_TIME) & 378 HistoryAndBookmarkRow row = values; local 894 TableIDRow row; local [all...] |
sql_handler.cc | 25 bool SQLHandler::HasColumnIn(const HistoryAndBookmarkRow& row) { 28 if (row.is_value_set_explicitly(*i))
|
visit_sql_handler.h | 25 virtual bool Update(const HistoryAndBookmarkRow& row, 27 virtual bool Insert(HistoryAndBookmarkRow* row) OVERRIDE; 31 // Add a row in visit table with the given |url_id| and |visit_time|. 34 // Add the given |visit_count| rows for |url_id|. The visit time of each row
|
/external/ceres-solver/internal/ceres/ |
small_blas.h | 187 for (int row = 0; row < NUM_ROW_C; ++row) { 191 tmp += A[row * NUM_COL_A + k] * B[k * NUM_COL_B + col]; 194 const int index = (row + start_row_c) * col_stride_c + start_col_c + col; 247 for (int row = 0; row < NUM_ROW_C; ++row) { 251 tmp += A[k * NUM_COL_A + row] * B[k * NUM_COL_B + col]; 254 const int index = (row + start_row_c) * col_stride_c + start_col_c + col [all...] |
schur_eliminator_impl.h | 94 // and build the row/column block structure of the reduced linear 103 // Iterate over the row blocks of A, and detect the chunks. The 121 // Add to the chunk until the first block in the row is 122 // different than the one in the first row for the chunk. 124 const CompressedRow& row = bs->rows[r + chunk.size]; local 125 if (row.cells.front().block_id != chunk_block_id) { 129 // Iterate over the blocks in the row, ignoring the first 131 for (int c = 1; c < row.cells.size(); ++c) { 132 const Cell& cell = row.cells[c]; 210 // buffer_ contains the non-zero blocks in the row correspondin 328 const CompressedRow& row = bs->rows[chunk.start + j]; local 384 const CompressedRow& row = bs->rows[row_block_counter + j]; local 451 const CompressedRow& row = bs->rows[row_block_counter + j]; local 561 const CompressedRow& row = bs->rows[row_block_counter]; local 597 const CompressedRow& row = bs->rows[row_block_index]; local 650 const CompressedRow& row = bs->rows[row_block_index]; local [all...] |
/external/chromium_org/third_party/WebKit/Source/core/accessibility/ |
AccessibilityTable.cpp | 168 for (int row = 0; row < numRows; ++row) { 172 RenderTableCell* cell = firstBody->primaryCellAt(row, col); 187 // If the first row is comprised of all <th> tags, assume it is a data table. 188 if (!row && isTHCell) 236 if (row < 5 && row == alternatingRowColorCount) { 249 if (!row && headersInFirstRowCount == numCols && numCols > 1) 273 // Check if there is an alternating row background color indicating a zebra striped style pattern 357 AccessibilityTableRow* row = static_cast<AccessibilityTableRow*>(rowObject); local [all...] |
/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/emma/core/java12/com/vladium/emma/report/html/doc/ |
HTMLTable.java | 56 final Row row = new Row (true); local 57 add (row); 59 return row; 64 final Row row = new Row (false); local 65 add (row); 67 return row; [all...] |
/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];
|
/external/chromium_org/net/spdy/ |
spdy_test_utils.cc | 31 for (const unsigned char* row = data; length > 0; 32 row += kColumns, length -= kColumns) { 33 for (const unsigned char *p = row; p < row + 4; ++p) { 34 if (p < row + length) { 47 for (const unsigned char *p = row; p < row + 4 && p < row + length; ++p)
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
RenderTableSection.h | 78 void addCell(RenderTableCell*, RenderTableRow* row); 110 typedef Vector<CellStruct> Row; 119 Row row; member in struct:WebCore::FINAL::RowStruct 162 CellStruct& cellAt(unsigned row, unsigned col) { return m_grid[row].row[col]; } 163 const CellStruct& cellAt(unsigned row, unsigned col) const { return m_grid[row].row[col]; [all...] |