/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/chromium_org/ui/views/controls/ |
prefix_delegate.h | 18 // Returns the row of the currently selected item, or -1 if no item is 22 // Sets the selection to the specified row. 23 virtual void SetSelectedRow(int row) = 0; 25 // Returns the item at the specified row. 26 virtual string16 GetTextForRow(int row) = 0;
|
/external/chromium_org/chrome/browser/history/android/ |
urls_sql_handler_unittest.cc | 52 // Insert a row only has URL to verify the visit count and last visit time 55 HistoryAndBookmarkRow row; local 56 row.set_raw_url("http://google.com"); 57 row.set_url(GURL("http://google.com")); 59 ASSERT_TRUE(urls_sql_handler_.Insert(&row)); 61 ASSERT_TRUE(history_db_.GetURLRow(row.url_id(), &url_row)); 62 EXPECT_EQ(row.url(), url_row.url()); 66 // The new row's id was set in url_row correctly. 67 EXPECT_EQ(row.url_id(), url_row.id()); 70 // Insert a row with last visit time to verify the visit count is set to 1 b 73 HistoryAndBookmarkRow row; local 91 HistoryAndBookmarkRow row; local 110 HistoryAndBookmarkRow row; local 131 HistoryAndBookmarkRow row; local 148 HistoryAndBookmarkRow row; local 167 HistoryAndBookmarkRow row; local 200 HistoryAndBookmarkRow row; local 239 HistoryAndBookmarkRow row; local 269 HistoryAndBookmarkRow row; local 294 HistoryAndBookmarkRow row; local 322 HistoryAndBookmarkRow row; local [all...] |
urls_sql_handler.cc | 30 bool UrlsSQLHandler::Insert(HistoryAndBookmarkRow* row) { 31 URLRow url_row(row->url()); 33 URLID id = history_db_->GetRowForURL(row->url(), &url_row); 36 return false; // We already has this row. 39 if (row->is_value_set_explicitly(HistoryAndBookmarkRow::TITLE)) 40 url_row.set_title(row->title()); 42 if (row->is_value_set_explicitly(HistoryAndBookmarkRow::LAST_VISIT_TIME)) 43 url_row.set_last_visit(row->last_visit_time()); 45 if (row->is_value_set_explicitly(HistoryAndBookmarkRow::VISIT_COUNT)) 46 url_row.set_visit_count(row->visit_count()) [all...] |
visit_sql_handler_unittest.cc | 55 HistoryAndBookmarkRow row; local 56 row.set_raw_url("http://google.com"); 57 row.set_url(GURL("http://google.com")); 59 ASSERT_TRUE(urls_sql_handler_.Insert(&row)); 60 ASSERT_TRUE(visit_sql_handler_.Insert(&row)); 63 ASSERT_TRUE(history_db_.GetURLRow(row.url_id(), &url_row)); 67 ASSERT_TRUE(history_db_.GetVisitsForURL(row.url_id(), &visits)); 73 HistoryAndBookmarkRow row; local 74 row.set_raw_url("http://google.com"); 75 row.set_url(GURL("http://google.com")) 92 HistoryAndBookmarkRow row; local 112 HistoryAndBookmarkRow row; local 132 HistoryAndBookmarkRow row; local 157 HistoryAndBookmarkRow row; local 190 HistoryAndBookmarkRow row; local 223 HistoryAndBookmarkRow row; local 255 HistoryAndBookmarkRow row; local 282 HistoryAndBookmarkRow row; local [all...] |
/external/chromium_org/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...] |
/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/chromium_org/third_party/skia/src/gpu/ |
GrRectanizer.cpp | 44 struct Row { 53 Row fRows[16]; 67 void initRow(Row* row, int rowHeight) { 68 row->fLoc.set(0, fNextStripY); 69 row->fRowHeight = rowHeight; 83 We use bsearch, but there may be more than one row with the same height, 92 Row* row = &fRows[HeightToRowIndex(height)]; local 93 SkASSERT(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 SkASSERT(row->fRowHeight == 0 || row->fRowHeight == height) [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/libvpx/libvpx/vp9/common/ |
vp9_mv.h | 19 int16_t row; member in struct:__anon21281 29 int32_t row; member in struct:__anon21282 36 mv->row = clamp(mv->row, min_row, max_row);
|
/external/skia/src/gpu/ |
GrRectanizer.cpp | 44 struct Row { 53 Row fRows[16]; 67 void initRow(Row* row, int rowHeight) { 68 row->fLoc.set(0, fNextStripY); 69 row->fRowHeight = rowHeight; 83 We use bsearch, but there may be more than one row with the same height, 92 Row* row = &fRows[HeightToRowIndex(height)]; local 93 SkASSERT(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 SkASSERT(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);
|
/external/chromium_org/third_party/WebKit/Source/core/html/ |
HTMLTableRowElement.cpp | 60 // To match Firefox, the row indices work like this: 63 // Rows from other <thead> and <tfoot> elements don't get row indices at all. 68 for (Node *row = head->firstChild(); row; row = row->nextSibling()) { 69 if (row == this) 71 if (row->hasTagName(trTag)) 79 for (Node* row = section->firstChild(); row; row = row->nextSibling()) [all...] |
/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...] |
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/ |
MatrixUtils.java | 43 * Find a pivot and swap the row of squareMatrix0 and squareMatrix1 45 private static void findPivotAndSwapRow(final int row, final float[][] squareMatrix0, 47 int ip = row; 48 float pivot = Math.abs(squareMatrix0[row][row]); 49 for (int i = row + 1; i < size; ++i) { 50 if (pivot < Math.abs(squareMatrix0[i][row])) { 52 pivot = Math.abs(squareMatrix0[i][row]); 55 if (ip != row) { 58 squareMatrix0[ip][j] = squareMatrix0[row][j] 152 final int row = a.length; local [all...] |
/external/chromium_org/chrome/browser/resources/ |
profile_signin_confirmation.css | 5 #button-row { 14 #button-row button {
|