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

1 2 34 5 6 7 8 91011>>

  /external/chromium_org/third_party/icu/source/common/
propsvec.c 33 int32_t prevRow; /* search optimization: remember last row seen */
44 uint32_t *v, *row; local
70 /* set the all-Unicode row and the special-value rows */
71 row=pv->v;
72 uprv_memset(row, 0, pv->rows*columns*4);
73 row[0]=0;
74 row[1]=0x110000;
75 row+=columns;
77 row[0]=cp;
78 row[1]=cp+1
94 uint32_t *row; local
279 uint32_t *row; local
293 uint32_t *row; local
335 uint32_t *row; local
    [all...]
  /external/icu/icu4c/source/common/
propsvec.c 33 int32_t prevRow; /* search optimization: remember last row seen */
44 uint32_t *v, *row; local
70 /* set the all-Unicode row and the special-value rows */
71 row=pv->v;
72 uprv_memset(row, 0, pv->rows*columns*4);
73 row[0]=0;
74 row[1]=0x110000;
75 row+=columns;
77 row[0]=cp;
78 row[1]=cp+1
94 uint32_t *row; local
279 uint32_t *row; local
293 uint32_t *row; local
335 uint32_t *row; local
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/maccommon/
SDL_macmouse.c 56 int row, bytes; local
74 for ( row=0; row<h; ++row ) {
75 SDL_memcpy(&cursor->curs.data[row], data, bytes);
78 for ( row=0; row<h; ++row ) {
79 SDL_memcpy(&cursor->curs.mask[row], mask, bytes);
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/
radeon_tile.c 42 unsigned row; /* current source row */ local
49 for (row = 0; row < height; row += tile_height)
53 uint8_t *src2 = (uint8_t *)src + src_pitch * row + col;
54 uint8_t *dst2 = (uint8_t *)dst + row * dst_pitch +
58 for (j = 0; j < MIN2(tile_height, height - row); ++j)
73 unsigned row; /* current source row */ local
104 unsigned row; \/* current source row *\/ local
135 unsigned row; \/* current source row *\/ local
166 unsigned row; \/* current source row *\/ local
256 unsigned row; \/* current destination row *\/ local
289 unsigned row; \/* current destination row *\/ local
322 unsigned row; \/* current destination row *\/ local
355 unsigned row; \/* current destination row *\/ local
388 unsigned row; \/* current destination row *\/ local
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_tile.c 42 unsigned row; /* current source row */ local
49 for (row = 0; row < height; row += tile_height)
53 uint8_t *src2 = (uint8_t *)src + src_pitch * row + col;
54 uint8_t *dst2 = (uint8_t *)dst + row * dst_pitch +
58 for (j = 0; j < MIN2(tile_height, height - row); ++j)
73 unsigned row; /* current source row */ local
104 unsigned row; \/* current source row *\/ local
135 unsigned row; \/* current source row *\/ local
166 unsigned row; \/* current source row *\/ local
256 unsigned row; \/* current destination row *\/ local
289 unsigned row; \/* current destination row *\/ local
322 unsigned row; \/* current destination row *\/ local
355 unsigned row; \/* current destination row *\/ local
388 unsigned row; \/* current destination row *\/ local
    [all...]
  /external/chromium_org/chrome/browser/history/android/
sql_handler.h 46 // value stored in |row|. Return true if the update succeeds.
47 virtual bool Update(const HistoryAndBookmarkRow& row,
50 // Inserts the given |row|, return true on success; The id of insertted row
51 // should be set in |row|, so other implemnetations could use it to complete
53 virtual bool Insert(HistoryAndBookmarkRow* row) = 0;
59 // Return true if |row| has a value explicitly set for at least one of the
60 // columns in |row| that are known to this class.
61 bool HasColumnIn(const HistoryAndBookmarkRow& row);
visit_sql_handler.cc 31 // The created time is updated according the given |row|.
37 // Visit row is insertted/removed to keep consistent with urls table.
42 bool VisitSQLHandler::Update(const HistoryAndBookmarkRow& row,
60 if (row.is_value_set_explicitly(HistoryAndBookmarkRow::CREATED) ||
67 if (row.is_value_set_explicitly(HistoryAndBookmarkRow::CREATED) &&
69 if (!AddVisit(id->url_id, row.created()))
81 bool VisitSQLHandler::Insert(HistoryAndBookmarkRow* row) {
82 DCHECK(row->is_value_set_explicitly(HistoryAndBookmarkRow::URL_ID));
85 if (!history_db_->GetURLRow(row->url_id(), &url_row))
93 // Add a row if the last visit time is different from created time
    [all...]
  /external/chromium_org/chrome/browser/ui/cocoa/omnibox/
omnibox_popup_matrix.h 18 virtual void OnMatrixRowSelected(OmniboxPopupMatrix* matrix, size_t row) = 0;
20 // Called when the user clicks on a row.
21 virtual void OnMatrixRowClicked(OmniboxPopupMatrix* matrix, size_t row) = 0;
23 // Called when the user middle clicks on a row.
25 size_t row) = 0;
41 // Return the currently highlighted row. Returns -1 if no row is highlighted.
  /external/chromium_org/third_party/markdown/extensions/
tables.py 90 for row in rows:
91 self._build_row(row.strip(), tbody, align, border)
93 def _build_row(self, row, parent, align, border):
94 """ Given a row of text, build table cells. """
99 cells = self._split_row(row, border)
100 # We use align here rather than cells to ensure every row
111 def _split_row(self, row, border):
112 """ split a row of text into list of cells. """
114 if row.startswith('|'):
115 row = row[1:
    [all...]
  /external/chromium_org/ui/views/controls/table/
test_table_model.cc 25 base::string16 TestTableModel::GetText(int row, int column_id) {
26 return base::ASCIIToUTF16(base::IntToString(row) + "x" +
30 gfx::ImageSkia TestTableModel::GetIcon(int row) {
  /external/markdown/markdown/extensions/
tables.py 55 for row in rows:
56 self._build_row(row, tbody, align, border)
58 def _build_row(self, row, parent, align, border):
59 """ Given a row of text, build table cells. """
64 cells = self._split_row(row, border)
65 # We use align here rather than cells to ensure every row
76 def _split_row(self, row, border):
77 """ split a row of text into list of cells. """
79 if row.startswith('|'):
80 row = row[1:
    [all...]
  /libcore/luni/src/test/java/libcore/java/text/
DateFormatSymbolsTest.java 89 // Kill a row.
110 for (String[] row : DateFormatSymbols.getInstance(Locale.US).getZoneStrings()) {
111 zoneStrings.put(row[0], row);
124 private static void assertUtc(String[] row) {
127 assertEquals(Arrays.toString(row), "UTC", row[2]); local
128 assertEquals(Arrays.toString(row), "UTC", row[4]); local
138 for (String[] row : array)
153 String[] row = array[i]; local
    [all...]
  /external/libhevc/common/
ihevc_sao.c 85 WORD32 row, col; local
88 for(row = 0; row < ht; row++)
90 pu1_src_left[row] = pu1_src[row * src_strd + (wd - 1)];
108 for(row = 0; row < ht; row++)
140 WORD32 row, col local
198 WORD32 row, col; local
281 WORD32 row, col; local
377 WORD32 row, col; local
471 WORD32 row, col; local
569 WORD32 row, col; local
758 WORD32 row, col; local
993 WORD32 row, col; local
1170 WORD32 row, col; local
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/
gcm_internals_ui.cc 35 base::ListValue* row = new base::ListValue(); local
36 checkin_info->Append(row);
38 row->AppendDouble(it->time.ToJsTime());
39 row->AppendString(it->event);
40 row->AppendString(it->details);
49 base::ListValue* row = new base::ListValue(); local
50 connection_info->Append(row);
52 row->AppendDouble(it->time.ToJsTime());
53 row->AppendString(it->event);
54 row->AppendString(it->details)
64 base::ListValue* row = new base::ListValue(); local
80 base::ListValue* row = new base::ListValue(); local
97 base::ListValue* row = new base::ListValue(); local
    [all...]
  /build/tools/
fileslist.py 33 row = (
37 output.append(row)
41 for row in output:
42 print "%12d %s" % row
  /external/chromium_org/chrome/browser/predictors/
autocomplete_action_predictor_table.h 37 struct Row {
44 Row();
47 Row(const Id& id,
53 Row(const Row& row);
62 typedef std::vector<Row> Rows;
65 void GetRow(const Row::Id& id, Row* row);
    [all...]
  /external/chromium_org/chrome/utility/media_galleries/
pmp_column_reader.cc 62 bool PmpColumnReader::ReadString(const uint32 row, std::string* result) const {
65 if (field_type_ != PMP_TYPE_STRING || row >= rows_read_)
68 DCHECK_LT(row, strings_.size());
69 *result = strings_[row];
73 bool PmpColumnReader::ReadUInt32(const uint32 row, uint32* result) const {
76 if (field_type_ != PMP_TYPE_UINT32 || row >= rows_read_)
79 *result = reinterpret_cast<uint32*>(data_.get() + kPmpHeaderSize)[row];
83 bool PmpColumnReader::ReadDouble64(const uint32 row, double* result) const {
86 if (field_type_ != PMP_TYPE_DOUBLE64 || row >= rows_read_)
89 *result = reinterpret_cast<double*>(data_.get() + kPmpHeaderSize)[row];
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/
vp9_mv.h 23 int16_t row; member in struct:mv
33 int32_t row; member in struct:mv32
48 mv->row = clamp(mv->row, min_row, max_row);
  /external/chromium_org/ui/file_manager/file_manager/foreground/css/
tree.css 13 .tree-item > .tree-row {
37 .tree-item[expanded] > .tree-row > .expand-icon {
42 .tree-row .expand-icon {
46 .tree-row[may-have-children] .expand-icon {
50 .tree-row[has-children=false] .expand-icon {
54 .tree-row[selected] {
66 .tree-item > .tree-row > * {
80 .tree-rename > .tree-row > .tree-label {
  /external/guava/guava-gwt/src/com/google/common/collect/
HashBasedTable_CustomFieldSerializer.java 42 for (Entry<?, ?> row : hashMap.entrySet()) {
43 table.row(row.getKey()).putAll((Map<?, ?>) row.getValue());
53 * Therefore, the backing map is serializable (assuming the row,
  /frameworks/base/core/tests/coretests/src/android/widget/focus/
LinearLayoutGrid.java 39 public Button getButtonAt(int column, int row) {
40 if (row < 0 || row > 2) {
41 throw new IllegalArgumentException("row out of range");
46 return (Button) getColumn(column).getChildAt(row);
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
OnItemViewClickedListener.java 22 RowPresenter.ViewHolder rowViewHolder, Row row);
OnItemViewSelectedListener.java 17 * Interface for receiving notification when a row or item becomes selected.
21 * Called when the a row or a new item becomes selected. The concept of current selection
22 * is different than focus. Row or item can be selected even they don't have focus.
24 * item or selected row when user selects rows outside row UI (e.g. headers left of
28 * selection changes between rows, regardless if row view has focus or not.
30 * For a {@link ListRow} case, parameter item can be null if the list row is empty.
33 * In the case of a grid, the row parameter is always null.
36 * Row has focus: event is fired when focus changes between child of the row
    [all...]
  /external/chromium_org/third_party/libjpeg_turbo/
tjunittest.c 92 int index, row, col, halfway=16; local
97 for(row=0; row<h; row++)
101 if(flags&TJFLAG_BOTTOMUP) index=(h-row-1)*w+col;
102 else index=row*w+col;
103 if(((row/8)+(col/8))%2==0) buf[index]=(row<halfway)? 255:0;
104 else buf[index]=(row<halfway)? 76:226;
110 for(row=0; row<h; row++
164 int index, row, col, retval=1; local
240 int row, col; local
    [all...]
  /development/samples/SupportLeanbackDemos/src/com/example/android/leanback/
BrowseAnimationFragment.java 23 import android.support.v17.leanback.widget.Row;
80 createRandomRow(new HeaderItem(i, "Row " + i)));
91 public void onItemClicked(Object item, Row row) {
92 ArrayObjectAdapter adapter = ((ArrayObjectAdapter) ((ListRow) row)
105 public void onItemClicked(Object item, Row row) {
106 ArrayObjectAdapter adapter = ((ArrayObjectAdapter) ((ListRow) row)
119 public void onItemClicked(Object item, Row row) {
    [all...]

Completed in 2370 milliseconds

1 2 34 5 6 7 8 91011>>