HomeSort by relevance Sort by last modified time
    Searched refs:Row (Results 26 - 50 of 161) sorted by null

12 3 4 5 6 7

  /external/chromium_org/chrome/browser/ui/cocoa/autofill/
simple_grid_layout.h 15 class Row;
19 // Each row has exactly one ColumnSet, ColumnSets can be shared between rows.
31 // The id is later used when starting a new row.
39 // Adds a padding row. Padding rows typically don't have any views, but are
41 // |size| specifies the height of the row.
44 // Starts a new row with the specified column set.
47 // This is a convenience function that starts a new row,
56 // TODO(groby): This currently *must* be called after a StartRow for the row
69 // Returns the column set of the last non-padding row.
72 // Get the height of a given row
    [all...]
  /developers/build/prebuilts/gradle/GridViewPager/Wearable/src/main/java/com/example/android/wearable/gridviewpager/
SampleGridPagerAdapter.java 38 * Constructs fragments as requested by the GridViewPager. For each row a different background is
49 private List<Row> mRows;
58 mRows = new ArrayList<SampleGridPagerAdapter.Row>();
60 mRows.add(new Row(cardFragment(R.string.welcome_title, R.string.welcome_text)));
61 mRows.add(new Row(cardFragment(R.string.about_title, R.string.about_text)));
62 mRows.add(new Row(
65 mRows.add(new Row(
68 mRows.add(new Row(new CustomFragment()));
69 mRows.add(new Row(cardFragment(R.string.dismiss_title, R.string.dismiss_text)));
76 protected Drawable create(final Integer row) {
    [all...]
  /developers/samples/android/wearable/wear/GridViewPager/Wearable/src/main/java/com/example/android/wearable/gridviewpager/
SampleGridPagerAdapter.java 38 * Constructs fragments as requested by the GridViewPager. For each row a different background is
49 private List<Row> mRows;
58 mRows = new ArrayList<SampleGridPagerAdapter.Row>();
60 mRows.add(new Row(cardFragment(R.string.welcome_title, R.string.welcome_text)));
61 mRows.add(new Row(cardFragment(R.string.about_title, R.string.about_text)));
62 mRows.add(new Row(
65 mRows.add(new Row(
68 mRows.add(new Row(new CustomFragment()));
69 mRows.add(new Row(cardFragment(R.string.dismiss_title, R.string.dismiss_text)));
76 protected Drawable create(final Integer row) {
    [all...]
  /development/samples/browseable/GridViewPager/Wearable/src/com.example.android.wearable.gridviewpager/
SampleGridPagerAdapter.java 38 * Constructs fragments as requested by the GridViewPager. For each row a different background is
49 private List<Row> mRows;
58 mRows = new ArrayList<SampleGridPagerAdapter.Row>();
60 mRows.add(new Row(cardFragment(R.string.welcome_title, R.string.welcome_text)));
61 mRows.add(new Row(cardFragment(R.string.about_title, R.string.about_text)));
62 mRows.add(new Row(
65 mRows.add(new Row(
68 mRows.add(new Row(new CustomFragment()));
69 mRows.add(new Row(cardFragment(R.string.dismiss_title, R.string.dismiss_text)));
76 protected Drawable create(final Integer row) {
    [all...]
  /external/chromium_org/third_party/webrtc/system_wrappers/source/
data_log.cc 31 // A Row contains cells, which are indexed by the column names as std::string.
33 class Row {
35 Row();
36 ~Row();
57 // A LogTable contains multiple rows, where only the latest row is active for
71 // Buffers the current row while it is waiting to be written to file,
72 // which is done by a call to Flush(). A new row is available when the
95 typedef std::list<Row*> RowList;
101 Row* current_row_;
107 Row::Row(
    [all...]
  /external/webrtc/src/system_wrappers/source/
data_log.cc 31 // A Row contains cells, which are indexed by the column names as std::string.
33 class Row {
35 Row();
36 ~Row();
57 // A LogTable contains multiple rows, where only the latest row is active for
71 // Buffers the current row while it is waiting to be written to file,
72 // which is done by a call to Flush(). A new row is available when the
95 typedef std::list<Row*> RowList;
101 Row* current_row_;
107 Row::Row(
    [all...]
  /developers/build/prebuilts/androidtv/leanback/app/src/main/java/com/example/android/leanback/
VerticalGridFragment.java 24 import android.support.v17.leanback.widget.Row;
72 public void onItemSelected(Object item, Row row) {
78 public void onItemClicked(Object item, Row row) {
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
ListRow.java 17 * A row composed of a optional {@link HeaderItem}, and an {@link ObjectAdapter}
20 public class ListRow extends Row {
StaggeredGrid.java 24 * for each individual child. The algorithm ensures that each row will be kept
39 * <li>Only one row (e.g., a single row listview)</li>
58 * Create the object at a given row.
60 public abstract void createItem(int index, int row, boolean append);
64 * Location of an item in the grid. For now it only saves row index but
69 * The index of the row for this Location.
71 public final int row; field in class:StaggeredGrid.Location
74 * Create a Location with the given row index.
76 public Location(int row) {
    [all...]
  /external/lldb/source/Plugins/UnwindAssembly/x86/
UnwindAssembly-x86.cpp 504 UnwindPlan::RowSP row(new UnwindPlan::Row);
509 UnwindPlan::Row::RegisterLocation initial_regloc;
521 row->SetOffset (current_func_text_offset);
522 row->SetCFARegister (m_lldb_sp_regnum);
523 row->SetCFAOffset (m_wordsize);
527 row->SetRegisterInfo (m_lldb_sp_regnum, initial_regloc);
532 row->SetRegisterInfo (m_lldb_ip_regnum, initial_regloc);
534 unwind_plan.AppendRow (row);
536 // Allocate a new Row, populate it with the existing Row contents
    [all...]
  /external/lldb/include/lldb/Symbol/
UnwindPlan.h 42 class Row {
220 const UnwindPlan::Row* row,
241 Row ();
243 Row (const UnwindPlan::Row& rhs) :
252 operator == (const Row &rhs) const;
337 lldb::addr_t m_offset; // Offset into the function for this row
339 int32_t m_cfa_offset; // The offset from the CFA for this row
341 }; // class Row
    [all...]
  /development/samples/SupportLeanbackDemos/src/com/example/android/leanback/
VerticalGridFragment.java 22 import android.support.v17.leanback.widget.Row;
73 RowPresenter.ViewHolder rowViewHolder, Row row) {
74 Log.i(TAG, "onItemSelected: " + item + " row " + row);
81 RowPresenter.ViewHolder rowViewHolder, Row row) {
82 Log.i(TAG, "onItemClicked: " + item + " row " + row);
BrowseFragment.java 28 import android.support.v17.leanback.widget.Row;
63 RowPresenter.ViewHolder rowViewHolder, Row row) {
64 Log.i(TAG, "onItemSelected: " + item + " row " + row);
102 HeaderItem header = new HeaderItem(i, "Row " + i);
112 RowPresenter.ViewHolder rowViewHolder, Row row) {
RowsFragment.java 29 import android.support.v17.leanback.widget.Row;
58 RowPresenter.ViewHolder rowViewHolder, Row row) {
59 Log.i(TAG, "onItemSelected: " + item + " row " + row);
63 if (mRowsAdapter != null && mRowsAdapter.size() > 0 && row != null &&
64 row != mRowsAdapter.get(0)) {
103 HeaderItem header = new HeaderItem(i, "Row " + i);
113 RowPresenter.ViewHolder rowViewHolder, Row row) {
    [all...]
  /external/chromium_org/chrome/browser/predictors/
autocomplete_action_predictor.h 151 typedef std::map<DBCacheKey, AutocompleteActionPredictorTable::Row::Id>
184 std::vector<AutocompleteActionPredictorTable::Row>* row_buffer);
195 // |id_list| must not be NULL. Every row id deleted will be added to id_list.
198 std::vector<AutocompleteActionPredictorTable::Row::Id>* id_list);
autocomplete_action_predictor_unittest.cc 141 history::URLRow row(test_row.url);
142 row.set_title(test_row.title);
143 row.set_last_visit(visit_time);
145 return url_db->AddURL(row);
148 AutocompleteActionPredictorTable::Row CreateRowFromTestUrlInfo(
150 AutocompleteActionPredictorTable::Row row; local
151 row.id = base::GenerateGUID();
152 row.user_text = test_row.user_text;
153 row.url = test_row.url
165 AutocompleteActionPredictorTable::Row row = local
    [all...]
  /external/lldb/source/Plugins/SymbolFile/DWARF/
DWARFDebugLine.cpp 90 if (state.row == DWARFDebugLine::State::StartParsingLineTable)
92 // If the row is zero we are being called with the prologue only
97 else if (state.row == DWARFDebugLine::State::DoneParsingLineTable)
207 Row row(prologue.default_is_stmt);
232 row.Dump(log);
233 row.Reset(prologue.default_is_stmt);
238 row.address = debug_line_data.GetMaxU64(&offset, arg_size);
239 log->Printf( "0x%8.8x: DW_LNE_set_address (0x%" PRIx64 ")", op_offset, row.address);
273 row.Dump (log)
1042 DWARFDebugLine::Row row; local
    [all...]
  /external/chromium_org/third_party/skia/src/gpu/
GrRectanizer_pow2.cpp 24 Row* row = &fRows[HeightToRowIndex(height)]; local
25 SkASSERT(row->fRowHeight == 0 || row->fRowHeight == height);
27 if (0 == row->fRowHeight) {
31 this->initRow(row, height);
33 if (!row->canAddWidth(width, this->width())) {
37 // that row is now "full", so retarget our Row record for
39 this->initRow(row, height)
    [all...]
  /external/lldb/source/Symbol/
DWARFCallFrameInfo.cpp 286 UnwindPlan::Row::RegisterLocation reg_location;
440 UnwindPlan::Row *cie_initial_row = new UnwindPlan::Row;
442 UnwindPlan::RowSP row(cie_initial_row);
447 UnwindPlan::Row::RegisterLocation reg_location;
458 case DW_CFA_advance_loc : // (Row Creation Instruction)
461 // required action is to create a new table row with a location
464 // values in the new row are initially identical to the current row.
465 unwind_plan.AppendRow(row);
    [all...]
  /external/skia/src/gpu/
GrRectanizer_pow2.cpp 24 Row* row = &fRows[HeightToRowIndex(height)]; local
25 SkASSERT(row->fRowHeight == 0 || row->fRowHeight == height);
27 if (0 == row->fRowHeight) {
31 this->initRow(row, height);
33 if (!row->canAddWidth(width, this->width())) {
37 // that row is now "full", so retarget our Row record for
39 this->initRow(row, height)
    [all...]
  /external/chromium_org/third_party/webrtc/modules/desktop_capture/
desktop_region.cc 23 DesktopRegion::Row::Row(int32_t top, int32_t bottom)
27 DesktopRegion::Row::~Row() {}
51 // Copy each row.
52 Row* row = it->second; local
53 it->second = new Row(*row);
59 // Iterate over rows of the tow regions and compare each row
98 Rows::iterator row = rows_.upper_bound(top); local
374 Row* row = it->second; local
    [all...]
  /external/chromium_org/ui/views/layout/
grid_layout.h 33 // // First start a row.
34 // layout->StartRow(0, // This row isn't vertically resizable.
35 // 0); // The column set to use for this row.
48 // columns and rows with a resize percent > 0 are resized. Each column/row
54 // new row you specify the id of the column set the row is to use.
65 class Row;
113 // The id is later used when starting a new row.
121 // Adds a padding row. Padding rows typically don't have any views, and
123 // Size specifies the height of the row
    [all...]
  /packages/apps/Mms/src/com/android/mms/
SuggestionsProvider.java 93 ArrayList<Row> mRows = new ArrayList<Row>();
115 private class Row {
119 public Row(int row, String snippet) {
121 mRowNumber = row;
143 mRows.add(new Row(i, snippet));
208 * a "word" by taking the substring of the full row text in the words table
296 Row row = mRows.get(mCurrentRow) local
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/sqlite3/test/
factory.py 31 def dict_factory(cursor, row):
34 d[col[0]] = row[idx]
74 row = cur.fetchone()
75 self.assertTrue(isinstance(row,
77 "row is not instance of dict")
88 self.con.row_factory = lambda cur, row: list(row)
89 row = self.con.execute("select 1, 2").fetchone()
90 self.assertTrue(isinstance(row,
92 "row is not instance of list"
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/sqlite3/test/
factory.py 31 def dict_factory(cursor, row):
34 d[col[0]] = row[idx]
74 row = cur.fetchone()
75 self.assertTrue(isinstance(row,
77 "row is not instance of dict")
88 self.con.row_factory = lambda cur, row: list(row)
89 row = self.con.execute("select 1, 2").fetchone()
90 self.assertTrue(isinstance(row,
92 "row is not instance of list"
    [all...]

Completed in 2234 milliseconds

12 3 4 5 6 7