/cts/tests/tests/widget/src/android/widget/cts/ |
SimpleAdapterTest.java | 353 * @param rowCount the row count 367 HashMap<String, String> row = new HashMap<String, String>(); local 369 row.put(columns[j], "" + i + "" + j); 371 list.add(row);
|
SimpleExpandableListAdapterTest.java | 71 * row, the second has 2 rows, the third has 3 rows and the last has 4 rows 412 * @param rowCount the row count 425 HashMap<String, String> row = new HashMap<String, String>(); local 427 row.put(columns[j], prefix + i + "" + j); 429 list.add(row);
|
/external/chromium_org/chrome/browser/history/ |
url_database_unittest.cc | 216 URLRow row; local 218 for (; history_enum.GetNextURL(&row); ++row_count) 219 EXPECT_EQ(1U, good_urls.count(row.url().spec())); 232 // Insert a row with favicon 247 // Insert another row without favicon 256 // Insert a row with favicon 324 // We should get 1 row for |keyword2|. 340 // No row for keyword.
|
history_backend.h | 225 // redirect in a row, so this function will fill the given array with the 352 const HistoryAndBookmarkRow& row); 362 const HistoryAndBookmarkRow& row, 386 const SearchRow& row); 389 const SearchRow& row, [all...] |
visit_database.cc | 469 VisitRow row; local 470 if (!GetRowForVisit(to_visit, &row)) 474 *from_visit = row.referring_visit; 481 statement.BindInt64(0, row.referring_visit);
|
/external/chromium_org/media/base/ |
yuv_convert.cc | 326 // For formats with half-height UV planes, each even-numbered pixel row 327 // should not interpolate, since the next row to interpolate from should 328 // be a duplicate of the current row. 434 // Determine number of pixels in each output row. 455 // For each destination row perform interpolation and color space 457 for (int row = dest_rect_top; row < dest_rect_bottom; ++row) { 458 // Round the fixed-point y position to get the current row. 463 // Locate the first row for each plane for interpolation [all...] |
/external/chromium_org/third_party/angle_dx11/src/compiler/ |
OutputHLSL.cpp | [all...] |
/external/chromium_org/v8/tools/ |
gc-nvp-trace-processor.py | 215 def reclaimed_bytes(row): 216 return row['total_size_before'] - row['total_size_after']
|
/external/javasqlite/src/main/java/SQLite/ |
Database.java | 165 * for each row of the result set.<P> 186 * for each row of the result set. Each '%q' or %Q in the 218 * Return the row identifier of the last inserted 219 * row. 726 * @param row row identifier 732 long row, boolean rw) throws SQLite.Exception { 735 _open_blob(db, table, column, row, rw, blob); 780 * @param row row identifie [all...] |
/external/libvpx/libvpx/vp8/common/arm/neon/ |
buildintrapredictorsmby_neon.asm | 54 ; Load above row, if it exists 78 ; Load left row, if it exists 148 ; Copy down above row 337 ; Load above row, if it exists 361 ; Load left row, if it exists 431 ; Copy down above row
|
/external/linux-tools-perf/util/ |
svghelper.c | 422 void svg_interrupt(u64 start, int row) 428 time2pixels(start), row * SLOT_MULT); 430 time2pixels(start), row * SLOT_MULT + SLOT_HEIGHT);
|
/external/v8/tools/ |
gc-nvp-trace-processor.py | 215 def reclaimed_bytes(row): 216 return row['total_size_before'] - row['total_size_after']
|
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/ |
motion_comp.cpp | 364 /* the next row; full-pel resolution */ 463 /* the next row; full-pel resolution */ 788 /* the next row; full-pel resolution */ 1719 Int row, col, i; local 1767 Int row, col; local 1797 Int row, col, i; local 1865 Int row, col; local [all...] |
/hardware/ti/omap4xxx/camera/ |
Encoder_libjpeg.cpp | 436 JSAMPROW row[1]; /* pointer to JSAMPLE row[s] */ local 445 row[0] = row_tmp; 446 jpeg_write_scanlines(&cinfo, row, 1); 449 // move uv row if input format needs it
|
/packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/ |
CalendarSyncTestingBase.java | 371 Map<String, String> row = Maps.newHashMap(); local 378 row.put(col, cursor1.getString(i)); 380 assertEquals("Row: " + row + " Table: " + tableName + ": " + cols[i] +
|
/pdk/apps/CameraITS/service/src/com/android/camera2/its/ |
ItsUtils.java | 284 for (int row = 0; row < h; row++) { 287 // Special case: optimized read of the entire row 290 // Advance buffer the remainder of the row stride
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/ |
cpp_unittest.py | 145 self.assertEqual(parameter.row, 1) 151 self.assertEqual(parameter.row, 1) 157 self.assertEqual(parameter.row, 0) 163 self.assertEqual(parameter.row, 0) 166 start_position = cpp_style.Position(row=1, column=1) 167 end_position = cpp_style.Position(row=3, column=1) 177 start_position = cpp_style.Position(row=0, column=3) 178 end_position = cpp_style.Position(row=0, column=4) 211 start_position = cpp_style.Position(row=0, column=8) 212 end_position = cpp_style.Position(row=3, column=16 [all...] |
/cts/suite/pts/deviceTests/browserbench/assets/octane/ |
navier-stokes.js | 261 var row = j * rowSize; 263 var prevValue = row - 1; 264 var currentRow = row; 265 var nextValue = row + 1;
|
/cts/tests/tests/graphics/src/android/graphics/cts/ |
BitmapFactoryTest.java | 458 for (int row = 0; row < height; ++row) { 460 int idx = row * width + col;
|
BitmapRegionDecoderTest.java | 422 for (int row = 0; row < height; ++row) { 424 int idx = row * width + col;
|
/development/samples/Spinner/src/com/android/example/spinner/ |
SpinnerActivity.java | 188 * @param row - the 0-based row number of the selection in the View 190 public void onItemSelected(AdapterView<?> parent, View v, int pos, long row) {
|
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/ |
RunnerController.java | 203 boolean selected, boolean expanded, boolean leaf, int row,
|
/external/chromium_org/chrome/browser/ui/webui/extensions/chromeos/ |
kiosk_apps_browsertest.js | 97 // Test the row delete button. 103 appItem.querySelector('.row-delete-button').click();
|
/external/chromium_org/content/browser/accessibility/ |
cross_platform_accessibility_browsertest.cc | 255 // child of both a row and a column, so it appears to use multiple 270 const AccessibilityNodeDataTreeNode& row = table.children[0]; local 271 EXPECT_EQ(AccessibilityNodeData::ROLE_ROW, row.role); 272 const AccessibilityNodeDataTreeNode& cell1 = row.children[0]; 274 const AccessibilityNodeDataTreeNode& cell2 = row.children[1];
|
/external/chromium_org/third_party/WebKit/Source/core/Resources/pagepopups/ |
calendarPicker.css | 153 -webkit-flex-flow: row; 241 .month-buttons-row {
|