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

1 2 34 5 6 7 8 91011>>

  /external/jpeg/
jquant1.c 112 * We can get away with a single array (holding one row's worth of errors)
113 * by using it to store the current row's errors at pixel columns not yet
114 * processed, but the next row's errors at columns already processed. We
159 int row_index; /* cur row's vertical index in dither matrix */
164 boolean on_odd_row; /* flag to remember which row we are on */
292 /* The colors are ordered in the map in standard row-major order, */
467 int row; local
472 for (row = 0; row < num_rows; row++)
497 int row; local
527 int row; local
580 int row; local
630 int row; local
    [all...]
jutils.c 132 register int row; local
137 for (row = num_rows; row > 0; row--) {
153 /* Copy a row of coefficient blocks from one place to another. */
rdcolmap.c 174 unsigned int w, h, maxval, row, col; local
194 for (row = 0; row < h; row++) {
205 for (row = 0; row < h; row++) {
  /frameworks/base/include/binder/
CursorWindow.h 43 * window has first chunk of RowSlots, which are offsets to the row directory, followed by
45 * the pre-allocated chunk isn't big enough to refer to all rows. Each row directory has a
99 * Allocate a row slot and its directory.
100 * The row is initialized will null entries for each field.
105 status_t putBlob(uint32_t row, uint32_t column, const void* value, size_t size);
106 status_t putString(uint32_t row, uint32_t column, const char* value, size_t sizeIncludingNull);
107 status_t putLong(uint32_t row, uint32_t column, int64_t value);
108 status_t putDouble(uint32_t row, uint32_t column, double value);
109 status_t putNull(uint32_t row, uint32_t column);
112 * Gets the field slot at the specified row and column
    [all...]
  /libcore/luni/src/test/java/libcore/java/text/
DateFormatSymbolsTest.java 85 // Kill a row.
106 for (String[] row : DateFormatSymbols.getInstance(Locale.US).getZoneStrings()) {
107 zoneStrings.put(row[0], row);
120 private static void assertUtc(String[] row) {
123 assertEquals(Arrays.toString(row), "UTC", row[2]); local
124 assertEquals(Arrays.toString(row), "UTC", row[4]); local
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
UnicodeChart.java 67 for (int row = 0; row < 16; row++) {
69 pos[index++] = row * YMUL + YBASE;
  /development/samples/ApiDemos/src/com/example/android/apis/view/
TableLayout7.java 64 TableRow row = new TableRow(this); local
75 row.addView(label, new TableRow.LayoutParams(1));
76 row.addView(shortcut, new TableRow.LayoutParams());
78 table.addView(row, new TableLayout.LayoutParams());
  /external/webkit/LayoutTests/fast/dom/HTMLTableSectionElement/script-tests/
rows.js 7 var row = document.createElement("tr");
9 container.appendChild(row);
  /external/wpa_supplicant/wpa_gui-qt4/
eventhistory.cpp 39 if (index.row() >= timeList.size())
41 return timeList.at(index.row());
43 if (index.row() >= msgList.size())
45 return msgList.at(index.row());
  /external/wpa_supplicant_6/wpa_supplicant/wpa_gui-qt4/
eventhistory.cpp 40 if (index.row() >= timeList.size())
42 return timeList.at(index.row());
44 if (index.row() >= msgList.size())
46 return msgList.at(index.row());
  /external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
eventhistory.cpp 40 if (index.row() >= timeList.size())
42 return timeList.at(index.row());
44 if (index.row() >= msgList.size())
46 return msgList.at(index.row());
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/model/
PropertiesTableModel.java 62 public Object getValueAt(int row, int column) {
65 if (row < privateProperties.size()) {
66 property = privateProperties.get(row);
68 property = properties.get(row - privateProperties.size());
  /external/chromium/chrome/browser/geolocation/
geolocation_exceptions_table_model.cc 95 size_t row = *i; local
96 Entry* entry = &entries_[row];
99 bool next_has_same_origin = ((row + 1) < entries_.size()) &&
100 (entries_[row + 1].origin == entry_origin);
108 observer_->OnItemsChanged(row, 1);
112 entries_.erase(entries_.begin() + row); // Note: |entry| is now garbage.
114 observer_->OnItemsRemoved(row, 1);
117 // table view will end up being called back as each row is removed, in
120 if ((row == 0) || rows.count(row - 1)
    [all...]
  /external/chromium/chrome/browser/ui/gtk/
gtk_chrome_cookie_view.cc 31 GtkWidget* InitRowLabel(int row, int label_id, GtkWidget* details_table) {
36 0, 1, row, row + 1, GTK_FILL, GTK_FILL, 0, 0); local
41 GtkWidget* InitDetailRow(int row, int label_id,
43 GtkWidget* name_label = InitRowLabel(row, label_id, details_table);
49 1, 2, row, row + 1); local
54 GtkWidget* InitComboboxRow(int row, int label_id,
58 GtkWidget* name_label = InitRowLabel(row, label_id, details_table);
73 1, 2, row, row + 1) local
299 int row = 0; local
    [all...]
  /external/chromium/chrome/browser/ui/search_engines/
template_url_table_model.h 29 // each row in the tableview. Each ModelEntry wraps a TemplateURL, providing
46 virtual string16 GetText(int row, int column) OVERRIDE;
47 virtual SkBitmap GetIcon(int row) OVERRIDE;
51 virtual int GetGroupID(int row) OVERRIDE;
84 // If there is an observer, it's notified the selected row has changed.
  /external/clang/test/Analysis/
dead-stores.cpp 55 class row : protected _Row_base<_Tp, _Number2> { class in namespace:TestTemp
59 explicit row(const pencil_type& __a = pencil_type()) : _Base(__a) {} function in class:TestTemp::row
64 TestTemp::row<const char*> x; // no-warning
  /external/javasqlite/src/main/java/SQLite/
TableResult.java 57 * Rows of the result set. Each row is stored as a String array.
150 String row[] = (String[]) rows.elementAt(i); local
152 sb.append(row[k] == null ? "NULL" : row[k]);
  /external/webkit/Tools/Scripts/webkitpy/common/net/
layouttestresults_unittest.py 85 row = BeautifulSoup("<tr><td><a>test.hml</a></td><td><a>expected image</a></td><td><a>25%</a></td></tr>")
86 test_name = unicode(row.find("a").string)
88 failures = OutputCapture().assert_outputs(self, LayoutTestResults._failures_from_fail_row, [row])
92 row = BeautifulSoup("<tr><td><a>test.hml</a><a>foo</a></td></tr>")
94 OutputCapture().assert_outputs(self, LayoutTestResults._failures_from_fail_row, [row], expected_stderr=expected_stderr)
  /libcore/luni/src/main/java/libcore/icu/
TimeZones.java 112 String[] row = zoneStrings[index]; local
114 return (style == TimeZone.LONG) ? row[LONG_NAME_DST] : row[SHORT_NAME_DST];
116 return (style == TimeZone.LONG) ? row[LONG_NAME] : row[SHORT_NAME];
  /external/webkit/Source/WebCore/inspector/front-end/
ResourceTimingView.js 79 var row = {};
80 row.title = title;
81 row.className = className;
82 row.start = start;
83 row.end = end;
84 rows.push(row);
131 var row = document.createElement("div");
132 row.className = "network-timing-row";
133 td.appendChild(row);
    [all...]
  /external/webkit/Source/WebCore/rendering/mathml/
RenderMathMLUnderOver.cpp 60 RenderMathMLBlock* row = new (renderArena()) RenderMathMLBlock(node()); local
62 row->setStyle(rowStyle.release());
76 RenderBlock::addChild(row, beforeChild);
81 row->style()->setTextAlign(CENTER);
84 RenderBlock::addChild(row, firstChild());
87 RenderBlock::addChild(row, beforeChild);
93 row->style()->setTextAlign(CENTER);
96 RenderBlock::addChild(row, firstChild());
99 RenderBlock::addChild(row, beforeChild);
106 RenderBlock::addChild(row, beforeChild)
    [all...]
  /frameworks/base/core/jni/android/graphics/
YuvToJpegEncoder.cpp 96 // y row
99 // construct u row and v row
116 for (int row = 0; row < 8; ++row) {
117 int offset = ((rowIndex >> 1) + row) * fStrides[1];
120 int index = row * (width >> 1) + i;
168 // y row
171 // construct u row and v ro
    [all...]
  /hardware/ti/omap4xxx/camera/
NV12_resize.c 36 mmUint16 row,col; local
113 for (row=0; row < cody; row++)
117 y = (mmUint16) ((mmUint32) (row*resizeFactorY) >> 9);
118 yf = (mmUchar) ((mmUint32)((row*resizeFactorY) >> 6) & 0x7);
192 for (row=0; row < (((cody)>>1)); row++)
199 y = (mmUint16) ((mmUint32) (row*resizeFactorY) >> 9)
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
MiniKeyboard.java 65 * @param rowHeight mini keyboard row height in pixel, including vertical gap.
115 // Centering of the top row.
126 // Need to subtract the bottom row's gutter only.
184 public int getX(int n, int row) {
186 if (isTopRow(row)) {
192 public int getY(int row) {
193 return (mNumRows - 1 - row) * mDefaultRowHeight + mTopPadding;
196 public void markAsEdgeKey(Key key, int row) {
197 if (row == 0)
199 if (isTopRow(row))
264 final int row = n \/ params.mNumColumns; local
    [all...]
  /external/chromium/chrome/browser/
plugin_exceptions_table_model.cc 81 string16 PluginExceptionsTableModel::GetText(int row, int column_id) {
82 DCHECK_GE(row, 0);
83 DCHECK_LT(row, static_cast<int>(settings_.size()));
84 SettingsEntry& entry = settings_[row];
115 int PluginExceptionsTableModel::GetGroupID(int row) {
116 DCHECK_LT(row, static_cast<int>(settings_.size()));
117 return settings_[row].plugin_id;

Completed in 478 milliseconds

1 2 34 5 6 7 8 91011>>