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

1 23 4 5 6 7

  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
RowHeaderPresenter.java 72 Row rowItem = (Row) item;
DetailsOverviewRow.java 26 * An overview row for a details fragment. This row consists of an image, a
30 public class DetailsOverviewRow extends Row {
RowPresenter.java 22 * An abstract {@link Presenter} that renders a {@link Row}.
38 * A Row is selected via {@link #setRowViewSelected(Presenter.ViewHolder, boolean)}. The event
39 * is triggered immediately when there is a row selection change before the selection
44 * A Row is expanded to full width via {@link #setRowViewExpanded(Presenter.ViewHolder, boolean)}.
62 * 0 and 1. By default, the RowPresenter draws a dim overlay on top of the row
77 * wrapped row view holder
93 * A view holder for a {@link Row}.
98 Row mRow;
108 * @param view The View bound to the Row.
116 * Returns the Row bound to the View in this ViewHolder
    [all...]
  /external/lldb/source/Plugins/UnwindAssembly/InstEmulation/
UnwindAssemblyInstEmulation.cpp 49 // CreateFunctionEntryUnwind should have created the first row. If it
98 // Make a copy of the current instruction Row and save it in m_curr_row
101 UnwindPlan::Row *newrow = new UnwindPlan::Row;
111 bool reinstate_prologue_next_instruction = false; // Next iteration, re-install the prologue row of CFI
113 bool last_instruction_restored_return_addr_reg = false; // re-install the prologue row of CFI if the next instruction is a branch immediate
117 UnwindPlan::RowSP prologue_completed_row; // copy of prologue row of CFI
162 // Append the new row
165 // Allocate a new Row for m_curr_row, copy the current state into it
166 UnwindPlan::Row *newrow = new UnwindPlan::Row
    [all...]
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
Keyboard.java 52 * <Row android:keyWidth="32px" >
55 * </Row>
65 private static final String TAG_ROW = "Row";
164 * Container for keys in the keyboard. All keys in a row are at the same Y-coordinate.
165 * Some of the key size defaults can be overridden per row from what the {@link Keyboard}
168 public static class Row {
169 /** Default width of a key in this row. */
171 /** Default height of a key in this row. */
173 /** Default horizontal gap between keys in this row. */
175 /** Vertical gap following this row. *
570 Row row = new Row(this); local
760 int row = 0; local
    [all...]
  /development/samples/SupportLeanbackDemos/src/com/example/android/leanback/
ErrorFragment.java 24 import android.support.v17.leanback.widget.Row;
SearchFragment.java 15 import android.support.v17.leanback.widget.Row;
76 HeaderItem header = new HeaderItem(i, mQuery + " results row " + i);
91 RowPresenter.ViewHolder rowViewHolder, Row row) {
DetailsFragment.java 34 import android.support.v17.leanback.widget.Row;
102 RowPresenter.ViewHolder rowViewHolder, Row row) {
103 Log.i(TAG, "onItemClicked: " + item + " row " + row);
119 RowPresenter.ViewHolder rowViewHolder, Row row) {
120 Log.i(TAG, "onItemSelected: " + item + " row " + row);
166 HeaderItem header = new HeaderItem(i, "Row " + i)
    [all...]
  /external/chromium_org/mojo/examples/keyboard/
keyboard_view.cc 47 int NumKeys(const std::vector<const Row*>& rows) {
113 void KeyboardView::LayoutRow(const Row& row,
118 int x = initial_x + row.padding * (button_width + kHorizontalPadding);
120 for (size_t i = 0; i < row.num_keys; ++i) {
123 if (row.keys[i].size > 1) {
125 row.keys[i].size - kHorizontalPadding;
132 void KeyboardView::SetRows(const std::vector<const Row*>& rows) {
151 void KeyboardView::ConfigureButtonsInRow(int row_index, const Row& row) {
200 int row = 0; local
    [all...]
  /external/chromium_org/chrome/browser/predictors/
autocomplete_action_predictor.cc 279 std::vector<AutocompleteActionPredictorTable::Row>* rows =
280 new std::vector<AutocompleteActionPredictorTable::Row>();
310 std::vector<AutocompleteActionPredictorTable::Row::Id> id_list;
368 std::vector<AutocompleteActionPredictorTable::Row> rows_to_add;
369 std::vector<AutocompleteActionPredictorTable::Row> rows_to_update;
384 AutocompleteActionPredictorTable::Row row; local
385 row.user_text = key.user_text;
386 row.url = key.url;
390 row.id = base::GenerateGUID()
    [all...]
  /frameworks/base/core/java/android/inputmethodservice/
Keyboard.java 48 * &lt;Row android:keyWidth="32px" &gt;
51 * &lt;/Row&gt;
66 private static final String TAG_ROW = "Row";
147 private ArrayList<Row> rows = new ArrayList<Row>();
150 * Container for keys in the keyboard. All keys in a row are at the same Y-coordinate.
151 * Some of the key size defaults can be overridden per row from what the {@link Keyboard}
160 public static class Row {
161 /** Default width of a key in this row. */
163 /** Default height of a key in this row. *
581 Row row = new Row(this); local
616 Row row = rows.get(rowIndex); local
783 int row = 0; local
    [all...]
  /developers/build/prebuilts/androidtv/leanback/app/src/main/java/com/example/android/leanback/
SearchFragment.java 32 import android.support.v17.leanback.widget.Row;
110 public void onItemClicked(Object item, Row row) {
  /development/samples/SoftKeyboard/src/com/example/android/softkeyboard/
LatinKeyboard.java 65 protected Key createKeyFromXml(Resources res, Row parent, int x, int y,
149 public LatinKey(Resources res, Keyboard.Row parent, int x, int y,
  /external/libvpx/libvpx/vp9/encoder/x86/
vp9_variance_impl_mmx.asm 96 ; Row 1
121 ; Row 2
144 ; Row 3
167 ; Row 4
190 ; Row 5
214 ; Row 6
237 ; Row 7
260 ; Row 8
344 ; Row 1
358 ; Row
    [all...]
  /external/smack/src/org/jivesoftware/smackx/search/
SimpleUserSearch.java 112 ReportedData.Row row = new ReportedData.Row(fields); local
113 data.addRow(row);
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/app/
BaseRowFragment.java 22 import android.support.v17.leanback.widget.Row;
118 * Sets the selected row position with smooth animation.
125 * Sets the selected row position.
157 Object getItem(Row row, int position) {
158 if (row instanceof ListRow) {
159 return ((ListRow) row).getAdapter().get(position);
BaseRowSupportFragment.java 24 import android.support.v17.leanback.widget.Row;
120 * Sets the selected row position with smooth animation.
127 * Sets the selected row position.
159 Object getItem(Row row, int position) {
160 if (row instanceof ListRow) {
161 return ((ListRow) row).getAdapter().get(position);
HeadersFragment.java 27 import android.support.v17.leanback.widget.Row;
38 * An internal fragment containing a list of row headers.
77 Row row = (Row) getAdapter().get(position); local
78 mOnItemSelectedListener.onItemSelected(null, row);
HeadersSupportFragment.java 29 import android.support.v17.leanback.widget.Row;
40 * An internal fragment containing a list of row headers.
79 Row row = (Row) getAdapter().get(position); local
80 mOnItemSelectedListener.onItemSelected(null, row);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/x86/
vp9_variance_impl_mmx.asm 96 ; Row 1
121 ; Row 2
144 ; Row 3
167 ; Row 4
190 ; Row 5
214 ; Row 6
237 ; Row 7
260 ; Row 8
344 ; Row 1
358 ; Row
    [all...]
  /external/fonttools/Lib/fontTools/
inspect.py 18 class Row(object):
129 children.append(Row(self, i, k, v, self._font))
141 c = self._children[n] = Row(self, n, k, v, self._font)
170 self._root = Row(None, 0, "font", font, font)
  /external/lldb/include/lldb/Symbol/
DWARFCallFrameInfo.h 94 lldb_private::UnwindPlan::Row initial_row;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
iphlpapi.h 153 PMIB_TCP6ROW Row,
167 PMIB_TCP6ROW Row,
176 PMIB_TCPROW Row,
191 PMIB_TCPROW Row,
  /external/llvm/lib/DebugInfo/
DWARFContext.cpp 455 // Get the index of row we're looking for in the line table.
459 // Take file number and line/column from the row.
460 const DWARFDebugLine::Row &Row = LineTable->Rows[RowIndex];
461 if (!getFileNameForCompileUnit(CU, LineTable, Row.File, Kind,
464 Result.Line = Row.Line;
465 Result.Column = Row.Column;
527 // Get the index of row we're looking for in the line table.
533 // Take file number and line/column from the row.
534 const DWARFDebugLine::Row &Row = LineTable->Rows[RowIndex]
    [all...]
  /external/tinyxml/
xmltest.cpp 356 XmlTest( "Error row", doc.ErrorRow(), 3 );
358 //printf( "error=%d id='%s' row %d col%d\n", (int) doc.Error(), doc.ErrorDesc(), doc.ErrorRow()+1, doc.ErrorCol() + 1 );
397 XmlTest( "Location tracking: Declaration row", declaration->Row(), 1 );
399 XmlTest( "Location tracking: room row", room->Row(), 1 );
401 XmlTest( "Location tracking: doors row", doors->Row(), 1 );
403 XmlTest( "Location tracking: Comment row", comment->Row(), 2 )
    [all...]

Completed in 1970 milliseconds

1 23 4 5 6 7