HomeSort by relevance Sort by last modified time
    Searched defs:row (Results 326 - 350 of 598) sorted by null

<<11121314151617181920>>

  /cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/analyzer/
CameraAnalyzerActivity.java 459 View row = inflater.inflate(R.layout.ca_row, parent, false); local
460 ImageView iconField = (ImageView) row.findViewById(R.id.caTestIcon);
461 TextView nameField = (TextView) row.findViewById(R.id.caTestName);
462 TextView resultField = (TextView) row.findViewById(R.id.caTestResult);
484 return row;
  /external/chromium/chrome/browser/history/
expire_history_backend.cc 372 // Add the URL row to the affected URL list.
377 URLRow row; local
378 if (!main_db_->GetURLRow(visits[i].url_id, &row))
380 dependencies->affected_urls[visits[i].url_id] = row;
447 // This row is not in the archived DB, add it.
488 continue; // URL row doesn't exist in the database.
534 URLRow row; // Row in the main DB. local
536 if (!main_db_->GetURLRow(visits[i].url_id, &row) ||
537 !(archived_id = ArchiveOneURL(row))) {
    [all...]
  /external/chromium/chrome/browser/search_engines/
template_url_model_unittest.cc 813 details.row = history::URLRow(GURL(data[i].url));
835 details.row = history::URLRow(GURL(data[i].url));
883 history::URLRow row; member in struct:QueryHistoryCallbackImpl
    [all...]
  /external/chromium/chrome/browser/ui/gtk/
certificate_viewer.cc 32 void AddTitle(GtkTable* table, int row, const std::string& text) {
36 row, row + 1);
39 void AddKeyValue(GtkTable* table, int row, const std::string& text,
45 0, 1, row, row + 1);
51 1, 2, row, row + 1);
217 int row = 0; local
220 AddTitle(table, row++
    [all...]
  /external/chromium/chrome/browser/ui/views/
task_manager_view.cc 67 string16 GetText(int row, int column) OVERRIDE;
68 SkBitmap GetIcon(int row) OVERRIDE;
79 // Returns true if resource corresponding to |row| is a background resource.
80 bool IsBackgroundResource(int row);
91 string16 TaskManagerTableModel::GetText(int row, int col_id) {
94 return model_->GetResourceTitle(row);
97 return model_->GetResourceNetworkUsage(row);
100 if (!model_->IsResourceFirstInGroup(row))
102 return model_->GetResourceCPUUsage(row);
105 if (!model_->IsResourceFirstInGroup(row))
467 const char* row = stats->GetRowName(i); local
    [all...]
  /external/chromium_org/chrome/browser/history/android/
android_provider_backend_unittest.cc 161 AndroidURLRow row; local
162 row.id = statement.ColumnInt64(0);
163 row.raw_url = statement.ColumnString(1);
164 row.url_id = statement.ColumnInt64(2);
165 rows->push_back(row);
177 BookmarkCacheRow row; local
178 row.create_time_ = FromDatabaseTime(statement.ColumnInt64(0));
179 row.last_visit_time_ = FromDatabaseTime(statement.ColumnInt64(1));
180 row.url_id_ = statement.ColumnInt64(2);
181 row.bookmark_ = statement.ColumnBool(3)
    [all...]
  /external/chromium_org/chrome/browser/search_engines/
template_url_service_unittest.cc 76 const history::URLRow* row,
79 if (row)
80 this->row = *row;
86 history::URLRow row; member in struct:__anon8108::QueryHistoryCallbackImpl
    [all...]
  /external/chromium_org/chrome/browser/thumbnails/
content_analysis.cc 323 uint8* row = input_bitmap->getAddr8(0, r); local
324 for (int c = 0; c < image_size.width(); ++c, ++row) {
325 *row <<= bit_shift;
402 // Points to the first byte of the row in the rectangle.
  /external/chromium_org/chrome/browser/ui/gtk/
certificate_viewer_gtk.cc 35 void AddTitle(GtkTable* table, int row, const std::string& text) {
39 row, row + 1);
42 void AddKeyValue(GtkTable* table, int row, const std::string& text,
48 0, 1, row, row + 1);
54 1, 2, row, row + 1);
227 int row = 0; local
230 AddTitle(table, row++
    [all...]
  /external/chromium_org/chrome/browser/ui/views/
task_manager_view.cc 78 virtual string16 GetText(int row, int column) OVERRIDE;
79 virtual gfx::ImageSkia GetIcon(int row) OVERRIDE;
104 string16 TaskManagerTableModel::GetText(int row, int col_id) {
105 return model_->GetResourceById(row, col_id);
108 gfx::ImageSkia TaskManagerTableModel::GetIcon(int row) {
109 return model_->GetResourceIcon(row);
233 // Activates the tab associated with the focused row.
409 // skip the first row (it's header data)
411 const char* row = stats->GetRowName(i); local
412 if (row != NULL && row[0] != '\0' && !tab_table_->HasColumn(i))
    [all...]
  /external/chromium_org/content/common/gpu/media/
rendering_helper_gl.cc 524 const int row = (frame_count_ / thumbnails_in_row) % thumbnails_in_column; local
527 const int y = row * thumbnail_size_.height();
  /external/chromium_org/content/shell/renderer/
webkit_test_runner.cc 104 uint32_t* row = bitmap->getAddr32(0, y); local
106 row[x] |= 0xFF000000; // Set alpha bits to 1.
  /external/chromium_org/ppapi/tests/
test_graphics_2d.cc 123 uint32_t* row = image->GetAddr32(pp::Point(rect.x(), y)); local
125 row[pixel] = color;
  /external/chromium_org/third_party/WebKit/Source/core/platform/image-decoders/jpeg/
JPEGImageDecoder.cpp 400 // Make a one-row-high sample array that will go away when done with
401 // image. Always make it big enough to hold an RGB row. Since this
706 unsigned char* row = reinterpret_cast<unsigned char*>(buffer.getAddr(0, info->output_scanline)); local
707 if (jpeg_read_scanlines(info, &row, 1) != 1)
711 qcms_transform_data_type(transform, row, row, info->output_width, rgbOutputColorSpace() == JCS_EXT_BGRA ? QCMS_OUTPUT_BGRX : QCMS_OUTPUT_RGBX);
  /external/chromium_org/third_party/icu/source/common/
rbbi.cpp 933 RBBIStateTableRow *row; local
964 row = (RBBIStateTableRow *)
1144 RBBIStateTableRow *row; local
    [all...]
rbbitblb.cpp 808 for (n=0; n<fDStates->size(); n++) { // For each state s (row in the state table)
1121 RBBIStateTableRow *row = (RBBIStateTableRow *)(table->fTableData + state*table->fRowLen); local
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/
dtfmtsym.cpp 279 int32_t row, col; local
284 for (row=0; row<fZoneStringsRowCount; ++row)
286 fZoneStrings[row] = newUnicodeStringArray(fZoneStringsColCount);
287 if (fZoneStrings[row] == NULL) {
293 fZoneStrings[row][col].fastCopyFrom(otherStrings[row][col]);
299 for (int i = row; i >= 0; i--) {
402 for (int32_t row = 0; row < fZoneStringsRowCount; ++row)
    [all...]
  /external/chromium_org/third_party/icu/source/test/intltest/
restsnew.cpp 326 int32_t count, row=0, col=0; local
347 row=0;
351 row=count;
357 expected+=itoa(row, buf);
358 ResourceBundle rowbundle=bundle.get(row, err);
365 expected+=itoa(row, buf);
537 int32_t count, row=0, col=0; local
559 row=0;
563 row=count;
569 expected+=itoa(row, buf)
636 int32_t i,j,row,col, actual_bundle; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
pack.c 146 * order with row alignment = 1 byte.
152 GLint bytes, row, width_in_bytes; local
166 for (row = 0; row < height; row++) {
169 GL_COLOR_INDEX, GL_BITMAP, row, 0);
253 GLint row, width_in_bytes; local
261 for (row = 0; row < height; row++)
5882 GLint img, row; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
st_cb_texture.c 629 GLuint row; local
630 for (row = 0; row < height; row++) {
632 height, format, type, row, 0);
640 GLuint row; local
650 for (row = 0; row < height; row++) {
653 height, format, type, row, 0)
758 GLint row, yStep; local
    [all...]
  /external/chromium_org/third_party/openssl/openssl/apps/
ocsp.c 1162 char *itmp, *row[DB_NUMBER],**rrow; local
1163 for (i = 0; i < DB_NUMBER; i++) row[i] = NULL;
1170 row[DB_serial] = itmp;
1172 rrow=TXT_DB_get_by_index(db->db,DB_serial,row);
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkScan_AntiPath.cpp 64 /// Widest row of region to be blitted, in destination coordinates.
66 /// Leftmost x coordinate in any row, in destination coordinates.
68 /// Leftmost x coordinate in any row, in supersampled coordinates.
114 /// Once fRuns contains a complete supersampled row, flush() blits
118 /// Blits a row of pixels, with location and width specified
291 // directly to the destintion canvas one row per SCALE supersampled rows.
531 uint8_t* row = fMask.fImage + iy * fMask.fRowBytes + (x >> SHIFT); local
543 SkASSERT(row >= fMask.fImage);
544 SkASSERT(row < fMask.fImage + kMAX_STORAGE + 1);
545 add_aa_span(row, coverage_to_partial_alpha(fe - fb))
    [all...]
  /external/chromium_org/third_party/skia/src/pathops/
SkPathOpsCommon.cpp 456 const int row = rIndex < count - 1 ? rIndex * ends : (ends - rIndex - 2) local
465 distances[row + iIndex] = dist; // oStart distance from iStart
477 int row = pair / ends; variable
478 int col = pair - row * ends;
479 int thingOne = row < col ? row : ends - row - 2;
486 int thingTwo = row < col ? col : ends - row + col - 1;
  /external/eigen/Eigen/src/Core/
TriangularMatrix.h 54 inline Scalar coeff(Index row, Index col) const { return derived().coeff(row,col); }
55 inline Scalar& coeffRef(Index row, Index col) { return derived().coeffRef(row,col); }
57 /** \see MatrixBase::copyCoeff(row,col)
60 EIGEN_STRONG_INLINE void copyCoeff(Index row, Index col, Other& other)
62 derived().coeffRef(row, col) = other.coeff(row, col);
65 inline Scalar operator()(Index row, Index col) const
67 check_coordinates(row, col)
437 row = (UnrollCount-1) % Derived1::RowsAtCompileTime enumerator in enum:Eigen::internal::triangular_assignment_selector::__anon19484
    [all...]
  /external/icu4c/common/
rbbi.cpp 994 RBBIStateTableRow *row; local
1210 RBBIStateTableRow *row; local
    [all...]

Completed in 649 milliseconds

<<11121314151617181920>>