/external/chromium_org/chrome/browser/history/ |
url_database.h | 68 // Given an already-existing row in the URL table, updates that URL's stats. 76 // row ID. A row with the given URL must not exist. Returns 0 on error. 78 // This does NOT add a row to the full text search database. Use 84 // Delete the row of the corresponding URL. Only the row in the URL table 86 // the row existed and was deleted. 97 // Adds a row to the temporary URL table. This must be called between 101 URLID AddTemporaryURL(const URLRow& row) { 102 return AddURLInternal(row, true) [all...] |
url_index_private_data.cc | 85 // row from the history database. 285 const URLRow& row, 288 // The row may or may not already be in our index. If it is not already 293 URLID row_id = row.id(); 296 // This new row should be indexed if it qualifies. 297 URLRow new_row(row); 301 } else if (RowQualifiesAsSignificant(row, base::Time())) { 302 // This indexed row still qualifies and will be re-indexed. 306 bool title_updated = row_to_update.title() != row.title(); 307 if (row_to_update.visit_count() != row.visit_count() | [all...] |
/external/chromium_org/chrome/browser/resources/memory_internals/ |
memory_internals.js | 56 var row = $('snapshot-view').insertRow(-1); 85 var col = row.insertCell(-1); 89 row.setAttribute('class', 'process'); 109 var row = $('extension-view').insertRow(-1); 124 var col = row.insertCell(-1); 128 row.setAttribute('class', 'extension');
|
/external/chromium_org/chrome/browser/ui/gtk/ |
content_setting_bubble_gtk.cc | 122 int row = 0; local 124 i(popup_items.begin()); i != popup_items.end(); ++i, ++row) { 138 gtk_table_attach(GTK_TABLE(table), event_box, 0, 1, row, row + 1, local 148 gtk_table_attach(GTK_TABLE(table), button, 1, 2, row, row + 1, local 189 int row = 0; local 193 ++i, ++row) { 197 row, row + 1, GTK_FILL, GTK_FILL local 244 gtk_table_attach(GTK_TABLE(table), button, 1, 2, row, row + 1, local [all...] |
gtk_tree.h | 25 // Get the row number corresponding to |path|. 28 // Get the row number corresponding to |iter|. 31 // Get the row number in the child tree model corresponding to |sort_path| in 36 // Select the given row by number. 37 void SelectAndFocusRowNum(int row, GtkTreeView* tree_view); 39 // Remove the row and all its children from the |tree_store|. If there is a 40 // following row, |iter| will be updated to point to the it and the return value 64 // Should fill in the column and row. 65 virtual void SetColumnValues(int row, GtkTreeIter* iter) = 0; 101 // Callback checking whether a row should be drawn as a separator [all...] |
/external/chromium_org/chrome/common/extensions/docs/examples/api/nativeMessaging/host/ |
native-messaging-example-host | 61 self.text.grid(row=0, column=0, padx=10, pady=10, columnspan=2) 66 self.sendEntry.grid(row=1, column=0, padx=10, pady=10) 69 self.sendButton.grid(row=1, column=1, padx=10, pady=10)
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/scripts_cvs/searchcvs/ |
parsecvs.php | 83 $row = mysql_fetch_row($result); variable 98 wmysql_query("INSERT INTO `filetags` SELECT $row[0], `tid`, `revision` FROM `tmptags` NATURAL JOIN `tags` ON DUPLICATE KEY UPDATE `filetags`.`revision` = `tmptags`.`revision`"); 109 wmysql_query("INSERT INTO `commits` SET `fid` = '$row[0]', `revision` = '$revs[1]', $q ON DUPLICATE KEY UPDATE $q"); 116 $bugs = preg_replace("/^(.+)$/", "('$row[0]', '$revs[1]', '$1')", $bugs); 127 while ($row = mysql_fetch_row($result)) 129 array_push($tables, $row[0]);
|
/external/libvpx/libvpx/vp8/common/arm/armv6/ |
vp8_sad16x16_armv6.asm | 37 ; 1st row 51 add r0, r0, r1 ; set src pointer to next row 52 add r2, r2, r3 ; set dst pointer to next row 64 ; 2nd row 76 add r0, r0, r1 ; set src pointer to next row 77 add r2, r2, r3 ; set dst pointer to next row
|
/external/libvpx/libvpx/vp9/common/ |
vp9_findnearmv.c | 17 if (mv->row & 1) 18 mv->row += (mv->row > 0 ? -1 : 1);
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/ |
h264bsd_util.c | 268 u32 row, col; local 273 row = mbNum / width; 276 tmp = row * width;
|
/frameworks/rs/driver/runtime/ |
rs_matrix.c | 174 rsMatrixSet(rs_matrix4x4 *m, uint32_t row, uint32_t col, float v) { 175 m->m[row * 4 + col] = v; 179 rsMatrixGet(const rs_matrix4x4 *m, uint32_t row, uint32_t col) { 180 return m->m[row * 4 + col]; 184 rsMatrixSet(rs_matrix3x3 *m, uint32_t row, uint32_t col, float v) { 185 m->m[row * 3 + col] = v; 189 rsMatrixGet(const rs_matrix3x3 *m, uint32_t row, uint32_t col) { 190 return m->m[row * 3 + col]; 194 rsMatrixSet(rs_matrix2x2 *m, uint32_t row, uint32_t col, float v) { 195 m->m[row * 2 + col] = v [all...] |
/frameworks/rs/scriptc/ |
rs_matrix.rsh | 30 * @param row 37 rsMatrixSet(rs_matrix4x4 *m, uint32_t row, uint32_t col, float v); 42 rsMatrixSet(rs_matrix3x3 *m, uint32_t row, uint32_t col, float v); 47 rsMatrixSet(rs_matrix2x2 *m, uint32_t row, uint32_t col, float v); 53 * @param row 59 rsMatrixGet(const rs_matrix4x4 *m, uint32_t row, uint32_t col); 64 rsMatrixGet(const rs_matrix3x3 *m, uint32_t row, uint32_t col); 69 rsMatrixGet(const rs_matrix2x2 *m, uint32_t row, uint32_t col);
|
/packages/apps/UnifiedEmail/src/com/android/mail/analytics/ |
AnalyticsUtils.java | 122 final String[] row = SUFFIX_ACCOUNT_TYPES[i]; local 123 if (name.endsWith(row[0])) { 124 return row[1];
|
/prebuilts/sdk/renderscript/include/ |
rs_matrix.rsh | 30 * @param row 37 rsMatrixSet(rs_matrix4x4 *m, uint32_t row, uint32_t col, float v); 42 rsMatrixSet(rs_matrix3x3 *m, uint32_t row, uint32_t col, float v); 47 rsMatrixSet(rs_matrix2x2 *m, uint32_t row, uint32_t col, float v); 53 * @param row 59 rsMatrixGet(const rs_matrix4x4 *m, uint32_t row, uint32_t col); 64 rsMatrixGet(const rs_matrix3x3 *m, uint32_t row, uint32_t col); 69 rsMatrixGet(const rs_matrix2x2 *m, uint32_t row, uint32_t col);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/ |
RelativeLayoutConversionHelper.java | 158 // Compute x/y offsets for each row/column index 237 * Initializes the column and row indices, as well as any column span and row span 242 // Now initialize table view row, column and spans 267 Integer row = yToRow.get(view.getTopEdge()); local 268 assert row != null; 272 view.mRow = row; 273 view.mRowSpan = end - row; [all...] |
/external/skia/tests/ |
Matrix44Test.cpp | 91 for (int row = 0; row < 4; ++row) { 93 placeholderMatrix->setDouble(row, col, row * col); 103 for (int row = 0; row < 4; ++row) { 105 REPORTER_ASSERT(reporter, nearly_equal_double(row * col, testMatrix->getDouble(row, col))) [all...] |
/developers/build/prebuilts/gradle/StorageProvider/StorageProviderSample/src/main/java/com/example/android/storageprovider/ |
MyCloudProvider.java | 121 // Construct one row for a root called "MyCloud". 122 final MatrixCursor.RowBuilder row = result.newRow(); local 124 row.add(Root.COLUMN_ROOT_ID, ROOT); 125 row.add(Root.COLUMN_SUMMARY, getContext().getString(R.string.root_summary)); 131 row.add(Root.COLUMN_FLAGS, Root.FLAG_SUPPORTS_CREATE | 136 row.add(Root.COLUMN_TITLE, getContext().getString(R.string.app_name)); 140 row.add(Root.COLUMN_DOCUMENT_ID, getDocIdForFile(mBaseDir)); 144 row.add(Root.COLUMN_MIME_TYPES, getChildMimeTypes(mBaseDir)); 145 row.add(Root.COLUMN_AVAILABLE_BYTES, mBaseDir.getFreeSpace()); 146 row.add(Root.COLUMN_ICON, R.drawable.ic_launcher) [all...] |
/developers/samples/android/content/documentsUi/StorageProvider/StorageProviderSample/src/main/java/com/example/android/storageprovider/ |
MyCloudProvider.java | 121 // Construct one row for a root called "MyCloud". 122 final MatrixCursor.RowBuilder row = result.newRow(); local 124 row.add(Root.COLUMN_ROOT_ID, ROOT); 125 row.add(Root.COLUMN_SUMMARY, getContext().getString(R.string.root_summary)); 131 row.add(Root.COLUMN_FLAGS, Root.FLAG_SUPPORTS_CREATE | 136 row.add(Root.COLUMN_TITLE, getContext().getString(R.string.app_name)); 140 row.add(Root.COLUMN_DOCUMENT_ID, getDocIdForFile(mBaseDir)); 144 row.add(Root.COLUMN_MIME_TYPES, getChildMimeTypes(mBaseDir)); 145 row.add(Root.COLUMN_AVAILABLE_BYTES, mBaseDir.getFreeSpace()); 146 row.add(Root.COLUMN_ICON, R.drawable.ic_launcher) [all...] |
/development/samples/browseable/StorageProvider/src/com.example.android.storageprovider/ |
MyCloudProvider.java | 121 // Construct one row for a root called "MyCloud". 122 final MatrixCursor.RowBuilder row = result.newRow(); local 124 row.add(Root.COLUMN_ROOT_ID, ROOT); 125 row.add(Root.COLUMN_SUMMARY, getContext().getString(R.string.root_summary)); 131 row.add(Root.COLUMN_FLAGS, Root.FLAG_SUPPORTS_CREATE | 136 row.add(Root.COLUMN_TITLE, getContext().getString(R.string.app_name)); 140 row.add(Root.COLUMN_DOCUMENT_ID, getDocIdForFile(mBaseDir)); 144 row.add(Root.COLUMN_MIME_TYPES, getChildMimeTypes(mBaseDir)); 145 row.add(Root.COLUMN_AVAILABLE_BYTES, mBaseDir.getFreeSpace()); 146 row.add(Root.COLUMN_ICON, R.drawable.ic_launcher) [all...] |
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/ |
LODGeomap.java | 168 for (int r = lod; r < getWidth() - (2 * lod); r += lod) { // row
199 for (int row = getWidth() - lod; row >= 1 + lod; row -= 2 * lod) {
200 int idx = (row) * getWidth() - 1 - lod;
202 idx = (row - lod) * getWidth() - 1;
204 if (row > lod + 1) { //if not the last one
205 idx = (row - lod) * getWidth() - 1 - lod;
207 idx = (row - lod) * getWidth() - 1;
214 for (int row = getWidth() - lod; row > lod; row -= lod) { [all...] |
/external/chromium/chrome/browser/sync/resources/ |
gaia_login.js | 69 setElementDisplay("errormsg-1-password", 'table-row'); 73 setElementDisplay("errormsg-0-connection", 'table-row'); 107 setElementDisplay("password-row", "none"); 108 setElementDisplay("email-row", "none"); 112 setElementDisplay("access-code-label-row", "table-row"); 113 setElementDisplay("access-code-input-row", "table-row"); 114 setElementDisplay("access-code-help-row", "table-row"); [all...] |
/external/chromium_org/ui/views/controls/table/ |
table_view_unittest.cc | 59 // Adds a new row at index |row| with values |c1_value| and |c2_value|. 60 void AddRow(int row, int c1_value, int c2_value); 62 // Removes the row at index |row|. 63 void RemoveRow(int row); 65 // Changes the values of the row at |row|. 66 void ChangeRow(int row, int c1_value, int c2_value); 70 virtual string16 GetText(int row, int column_id) OVERRIDE [all...] |
/external/eigen/Eigen/src/SparseCore/ |
SparseMatrix.h | 21 * This class implements a more versatile variants of the common \em compressed row/column storage format. 22 * Each colmun's (resp. row) non zeros are stored as a pair of value with associated row (resp. colmiun) index. 123 /** \returns the number of rows (resp. columns) of the matrix if the storage order column major (resp. row major) */ 125 /** \returns the number of columns (resp. rows) of the matrix if the storage order column major (resp. row major) */ 171 inline Scalar coeff(Index row, Index col) const 173 const Index outer = IsRowMajor ? row : col; 174 const Index inner = IsRowMajor ? col : row; 187 inline Scalar& coeffRef(Index row, Index col) 189 const Index outer = IsRowMajor ? row : col 952 inline Index row() const { return IsRowMajor ? m_outer : index(); } function in class:Eigen::SparseMatrix::InnerIterator 985 inline Index row() const { return IsRowMajor ? m_outer : index(); } function in class:Eigen::SparseMatrix::ReverseInnerIterator [all...] |
/packages/apps/Gallery/src/com/android/camera/ |
GridViewSpecial.java | 503 int row = pos / mColumns; local 504 int col = pos - (row * mColumns); 508 int top = row * mBlockHeight; 523 int row = (mScrollY + y - spacing) / (mSpec.mCellHeight + spacing); local 526 return (row * mColumns) + col; 696 int row = mCurrentSelection / mColumns; local 697 int col = mCurrentSelection - (row * mColumns); 702 int yTop = spacing + (row * mBlockHeight); 720 // mCache maps from row number to the ImageBlock. 725 private final Runnable mRedrawCallback; // Called after a row is loaded 794 int row = pos \/ mColumns; local 880 int row = index \/ mColumns; local [all...] |
/device/google/accessory/arduino/USB_Host_Shield/ |
Max_LCD.cpp | 167 void Max_LCD::setCursor(uint8_t col, uint8_t row) 170 if ( row > _numlines ) { 171 row = _numlines-1; // we count rows starting w/0 174 command(LCD_SETDDRAMADDR | (col + row_offsets[row]));
|