HomeSort by relevance Sort by last modified time
    Searched refs:row (Results 426 - 450 of 1530) sorted by null

<<11121314151617181920>>

  /external/emma/core/java12/com/vladium/emma/report/lcov/
ReportGenerator.java 165 row("SF:".concat(item.getFullVMName()));
171 row("end_of_record");
244 row("FN:" + method.getFirstLine() + "," + className + "::" + mname);
245 row("FNDA:" + (covered ? 1 : 0) + "," + className + "::" + mname);
276 row("DA:" + l + ",0");
281 row("DA:" + l + ",1");
285 row("DA:" + l + ",1");
317 private void row(final StringBuffer str) method in class:ReportGenerator
335 private void row(final String str) method in class:ReportGenerator
  /external/opencv/cv/src/
cvpyramids.cpp 123 worktype *row = rows[y1]; \
126 row[0] = PD_LT( src[0], src[1], src[2] ); \
127 row[Wd-1] = PD_RB( src[Wd*2-4], src[Wd*2-3], \
132 row[x] = PD_FILTER( src[2*x-2], src[2*x-1], src[2*x], \
146 worktype *row = rows[y1]; \
154 row[c] = PD_LT( src[c], src[3+c], src[6+c] ); \
155 row[Wdn-3+c] = PD_RB( src[Wdn*2-12+c], src[Wdn*2-9+c], \
161 row[x] = PD_FILTER( src[2*x-6], src[2*x-3], src[2*x], \
163 row[x+1] = PD_FILTER( src[2*x-5], src[2*x-2], src[2*x+1], \
165 row[x+2] = PD_FILTER( src[2*x-4], src[2*x-1], src[2*x+2],
    [all...]
  /external/chromium/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...]
  /external/chromium/chrome/browser/ui/gtk/
gtk_tree.h 24 // Get the row number corresponding to |path|.
27 // Get the row number corresponding to |iter|.
30 // Get the row number in the child tree model corresponding to |sort_path| in
35 // Select the given row by number.
36 void SelectAndFocusRowNum(int row, GtkTreeView* tree_view);
38 // Remove the row and all its children from the |tree_store|. If there is a
39 // following row, |iter| will be updated to point to the it and the return value
63 // Should fill in the column and row.
64 virtual void SetColumnValues(int row, GtkTreeIter* iter) = 0;
100 // Callback checking whether a row should be drawn as a separator
    [all...]
  /external/chromium_org/chrome/browser/history/android/
android_history_provider_service.h 36 int)> // the number of row updated.
43 int64)> // the id of inserted row.
50 int)> // the number of row deleted.
77 // Runs the given update and the number of the row updated is returned to the
80 // |row| is the value to update.
83 Handle UpdateHistoryAndBookmarks(const history::HistoryAndBookmarkRow& row,
90 // of row deleted on success.
108 // the row deleted from the |callback|.
115 // Moves the statement's current row from |current_pos| to |destination| in DB
129 // Inserts the given values and returns the SearchTermID of the inserted row
    [all...]
  /external/chromium_org/chrome/browser/history/
typed_url_syncable_service.h 60 void OnUrlVisited(content::PageTransition transition, URLRow* row);
89 bool ShouldSyncVisit(content::PageTransition transition, URLRow* row);
99 const URLRow& row,
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 84 // row from the history database.
283 const URLRow& row,
286 // The row may or may not already be in our index. If it is not already
291 URLID row_id = row.id();
294 // This new row should be indexed if it qualifies.
295 URLRow new_row(row);
299 } else if (RowQualifiesAsSignificant(row, base::Time())) {
300 // This indexed row still qualifies and will be re-indexed.
304 bool title_updated = row_to_update.title() != row.title();
305 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');
108 var row = $('extension-view').insertRow(-1);
123 var col = row.insertCell(-1);
127 row.setAttribute('class', 'extension');
  /external/chromium_org/chrome/browser/ui/gtk/
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/media/base/
video_frame_unittest.cc 28 for (int row = 0; row < frame->coded_size().height(); ++row) {
29 int color = (row < first_black_row) ? 0xFF : 0x00;
35 for (int row = 0; row < frame->coded_size().height(); row += 2) {
73 for (int row = 0; row < rgb_frame->coded_size().height(); ++row) {
    [all...]
  /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...]
  /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/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...]

Completed in 1316 milliseconds

<<11121314151617181920>>