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

<<11121314151617181920>>

  /external/junit/src/junit/swingui/
TestSuitePanel.java 56 boolean sel, boolean expanded, boolean leaf, int row, boolean hasFocus) {
58 Component c= super.getTreeCellRendererComponent(tree, value, sel, expanded, leaf, row, hasFocus);
  /external/webkit/Source/WebCore/inspector/front-end/
ShortcutsHelp.js 71 var row = table.createChild("tr");
76 var td = row.createChild("td");
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/audioquality/
AudioQualityVerifierActivity.java 246 View row = inflater.inflate(R.layout.aq_row, parent, false); local
247 TextView nameField = (TextView) row.findViewById(R.id.testName);
248 TextView scoreField = (TextView) row.findViewById(R.id.testScore);
259 return row;
  /external/chromium/chrome/browser/resources/net_internals/
serviceprovidersview.js 108 // Add a table row for each service provider.
130 // Add a table row for each namespace provider.
  /external/libpng/contrib/pngminus/
png2pnm.c 204 int row, col; local
374 for (row = 0; row < height; row++)
420 } /* end for row */
pnm2png.c 207 int row, col; local
341 for (row = 0; row < height; row++)
378 } /* end for row */
411 /* if needed we will allocate memory for an new array of row-pointers */
  /external/libpng/
pngread.c 583 "Ignoring extra png_read_update_info() call; row buffer not reallocated");
608 png_read_row(png_structp png_ptr, png_bytep row, png_bytep dsp_row)
619 png_debug2(1, "in png_read_row (row %lu, pass %d)",
659 /* If interlaced and we do not need a new row, combine row and return */
736 png_error(png_ptr, "Invalid attempt to read row data");
837 if (row != NULL)
838 png_combine_row(png_ptr, row,
844 if (row != NULL)
845 png_combine_row(png_ptr, row, 0xff)
1541 int row; local
    [all...]
  /external/webkit/Tools/CodeCoverage/
regenerate-coverage-display 352 for row in r:
353 id, time_str = row
360 for row in r:
361 path, total_lines_str, covered_lines_str = row
  /external/zlib/
crc32.c 378 unsigned long row; local
388 row = 1;
390 odd[n] = row;
391 row <<= 1;
  /frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/ui/
DirListActivity.java 170 View row = inflater.inflate(R.layout.dirlist_row, null); local
172 TextView label = (TextView)row.findViewById(R.id.label);
175 ImageView icon = (ImageView)row.findViewById(R.id.icon);
182 return row;
  /cts/tests/tests/widget/src/android/widget/cts/
ResourceCursorAdapterTest.java 183 * @param rowCount the row count
195 ArrayList<String> row = new ArrayList<String>(); local
197 row.add("" + i + "" + j);
199 list.add(row);
ResourceCursorTreeAdapterTest.java 184 * @param rowCount the row count
196 ArrayList<String> row = new ArrayList<String>(); local
198 row.add("" + rowCount + "" + colCount);
200 list.add(row);
  /external/chromium/chrome/browser/history/
in_memory_url_index.h 146 void UpdateURL(URLID row_id, const URLRow& row);
286 bool IndexRow(const URLRow& row);
328 // if all of the terms in |terms_vector| occur in |row| and, if so,
338 const URLRow& row,
starred_url_database_unittest.cc 26 URLRow row(url);
27 row.set_visit_count(1);
28 EXPECT_TRUE(AddURL(row));
url_database_unittest.cc 217 URLRow row; local
219 for (; history_enum.GetNextURL(&row); ++row_count)
220 EXPECT_EQ(1U, good_urls.count(row.url().spec()));
233 // Insert a row with favicon
248 // Insert another row without favicon
257 // Insert a row with favicon
url_database.cc 435 KeywordSearchTermRow* row) {
446 if (row) {
447 row->url_id = url_id;
448 row->keyword_id = statement.ColumnInt64(0);
449 row->term = statement.ColumnString16(1);
history.cc 389 history::URLRow row(url);
390 row.set_title(title);
391 row.set_visit_count(visit_count);
392 row.set_typed_count(typed_count);
393 row.set_last_visit(last_visit);
394 row.set_hidden(hidden);
397 rows.push_back(row);
  /external/chromium/chrome/browser/ui/gtk/
task_manager_gtk.h 58 // Returns the model data for a given |row| and |col_id|.
59 std::string GetModelText(int row, int col_id);
61 // Retrieves the resource icon from the model for |row|.
62 GdkPixbuf* GetModelIcon(int row);
64 // Sets the treeview row data. |row| is an index into the model and |iter|
66 void SetRowDataFromModel(int row, GtkTreeIter* iter);
94 // row-activated handler that foregrounds a process on activation (e.g.,
  /external/libvpx/vp8/encoder/x86/
ssim_opt.asm 85 mov rdx, 16 ;row counter
105 add rsi, rcx ; next s row
106 add rdi, rax ; next r row
173 mov rdx, 8 ;row counter
187 add rsi, rcx ; next s row
188 add rdi, rax ; next r row
  /external/libvpx/vpx_scale/arm/neon/
vp8_vpxyv12_copysrcframe_func_neon.asm 38 add r10, r2, r6 ;second row src
39 add r11, r3, r7 ;second row dst
149 add r10, r2, r6 ;second row src
150 add r11, r3, r7 ;second row dst
249 addne r10, r2, r10 ;second row src
250 addne r11, r3, r11 ;second row dst
  /libcore/luni/src/main/java/java/text/
DateFormatSymbols.java 319 * Each row is an array of five strings:
469 * @throws IllegalArgumentException if any row has fewer than 5 elements.
476 for (String[] row : zoneStrings) {
477 if (row.length < 5) {
478 throw new IllegalArgumentException(Arrays.toString(row) + ".length < 5");
  /packages/apps/Gallery2/src/com/android/gallery3d/gadget/
LocalPhotoSource.java 110 int row = (int)(-Math.log(random.nextDouble()) * total / 2); local
111 if (row < total) selected.add(row);
  /external/jpeg/
jcsample.c 10 * Downsampling input data is counted in "row groups". A row group
13 * A single row group is processed in each call to the downsampler module.
23 * one row group's worth of pixels above and below the passed-in data;
25 * the first or last real pixel row.
93 int row; local
97 for (row = 0; row < num_rows; row++) {
98 ptr = image_data[row] + input_cols
    [all...]
  /external/mesa3d/src/glsl/
lower_mat_op_to_vec.cpp 31 * column or row.
49 ir_rvalue *get_element(ir_variable *var, int col, int row);
100 ir_mat_op_to_vec_visitor::get_element(ir_variable *var, int col, int row)
113 return new(mem_ctx) ir_swizzle(deref, row, 0, 0, 0, 1);
117 ir_mat_op_to_vec_visitor::get_column(ir_variable *var, int row)
126 new(mem_ctx) ir_constant(row));
  /frameworks/base/core/java/android/widget/
TableLayout.java 33 * each defining a row (actually, you can have other children, which will be
35 * their rows, columns, or cells. Each row has zero or more cells; each cell can
37 * as the row with the most cells. A table can leave cells empty. Cells can span
40 * <p>The width of a column is defined by the row with the widest cell in that
61 * <p> Cells must be added to a row in increasing column order, both in code and
64 * a column number, it will be considered an empty cell in that row. See the
69 * will be displayed as a single row that spans all the table columns.</p>
309 * takes up as much as available space as possible in its row.</p>
335 * <p>Makes the given column shrinkable or not. When a row is too wide, the
362 * <p>Applies the columns collapse status to a new row added to thi
373 final TableRow row = (TableRow) child; local
495 final TableRow row = (TableRow) child; local
    [all...]

Completed in 637 milliseconds

<<11121314151617181920>>