HomeSort by relevance Sort by last modified time
    Searched refs:Row (Results 1 - 25 of 283) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/llvm/include/llvm/ADT/
edit_distance.h 53 // array, only one row plus one element are used at a time, so this
54 // implementation just keeps one vector for the row. To update one entry,
56 // entry is in Row[x-1], the top entry is what's in Row[x] from the last
64 unsigned *Row = SmallBuffer;
66 Row = new unsigned[n + 1];
67 Allocated.reset(Row);
71 Row[i] = i;
74 Row[0] = y;
75 unsigned BestThisRow = Row[0]
    [all...]
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
OnItemViewClickedListener.java 18 * row object to be sub class of {@link Row}.
20 public interface OnItemViewClickedListener extends BaseOnItemViewClickedListener<Row> {
OnItemViewSelectedListener.java 17 * Interface for receiving notification when a row or item becomes selected. The concept of
18 * current selection is different than focus. A row or item can be selected without having focus;
19 * for example, when a row header view gains focus then the corresponding row view becomes selected.
20 * This interface expects row object to be sub class of {@link Row}.
22 public interface OnItemViewSelectedListener extends BaseOnItemViewSelectedListener<Row> {
DividerRow.java 19 public class DividerRow extends Row {
PageRow.java 19 public class PageRow extends Row {
Row.java 22 public class Row {
33 * Constructor for a Row.
35 * @param id The id of the row.
36 * @param headerItem The {@link HeaderItem} for this Row, or null if there
39 public Row(long id, HeaderItem headerItem) {
45 * Constructor for a Row.
47 * @param headerItem The {@link HeaderItem} for this Row, or null if there
50 public Row(HeaderItem headerItem) {
55 * Constructor for a Row.
57 public Row() {
    [all...]
SectionRow.java 17 * Used to represent section item in HeadersFragment. Unlike a normal Row, it's not focusable.
19 public class SectionRow extends Row {
  /external/clang/test/SemaCXX/
constexpr-nqueens.cpp 13 constexpr Board addQueen(int Row, int Col) {
14 return Board(State | ((uint64_t)Row << (Col * 4)));
19 constexpr bool ok(int Row, int Col) {
20 return okRecurse(Row, Col, 0);
22 constexpr bool okRecurse(int Row, int Col, int CheckCol) {
24 getQueenRow(CheckCol) == Row ? false :
25 getQueenRow(CheckCol) == Row + (Col - CheckCol) ? false :
26 getQueenRow(CheckCol) == Row + (CheckCol - Col) ? false :
27 okRecurse(Row, Col, CheckCol + 1);
29 constexpr bool at(int Row, int Col)
    [all...]
  /frameworks/support/samples/SupportLeanbackShowcase/app/src/main/java/android/support/v17/leanback/supportleanbackshowcase/app/media/
SongListRow.java 18 import android.support.v17.leanback.widget.Row;
20 public class SongListRow extends Row {}
TrackListHeader.java 18 import android.support.v17.leanback.widget.Row;
20 public class TrackListHeader extends Row {
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/extensions/compactnotation/
Table.java 23 private List<Row> rows;
31 public List<Row> getRows() {
35 public void setRows(List<Row> rows) {
ManyListsTable.java 22 private List<Row> rows;
29 public List<Row> getRows() {
33 public void setRows(List<Row> rows) {
CompactConstructorErrorsTest.java 88 "org.yaml.snakeyaml.error.YAMLException: Cannot set property='size' with value='17' (class java.lang.String) in Row id=id111");
92 * Created Map instead of Row
97 List<Row> rows = table.getRows();
99 assertFalse("Row should not be created.", rows.get(0) instanceof Row);
102 assertEquals("15}", map.get("Row(id111, description = text) {size"));
111 List<Row> rows = table.getRows();
113 assertFalse("Row should not be created.", rows.get(0) instanceof Row);
117 assertNull(map.get(new Row("id222")))
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
Row.java 19 public class Row<C0, C1, C2, C3, C4> implements java.lang.Comparable, Cloneable,
20 Freezable<Row<C0, C1, C2, C3, C4>>{
40 public static class R2<C0, C1> extends Row<C0, C1, C1, C1, C1> {
45 public static class R3<C0, C1, C2> extends Row<C0, C1, C2, C2, C2> {
50 public static class R4<C0, C1, C2, C3> extends Row<C0, C1, C2, C3, C3> {
55 public static class R5<C0, C1, C2, C3, C4> extends Row<C0, C1, C2, C3, C4> {
61 public Row<C0, C1, C2, C3, C4> set0(C0 item) {
67 public Row<C0, C1, C2, C3, C4> set1(C1 item) {
73 public Row<C0, C1, C2, C3, C4> set2(C2 item) {
79 public Row<C0, C1, C2, C3, C4> set3(C3 item)
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
Row.java 15 public class Row<C0, C1, C2, C3, C4> implements java.lang.Comparable, Cloneable,
16 Freezable<Row<C0, C1, C2, C3, C4>>{
36 public static class R2<C0, C1> extends Row<C0, C1, C1, C1, C1> {
41 public static class R3<C0, C1, C2> extends Row<C0, C1, C2, C2, C2> {
46 public static class R4<C0, C1, C2, C3> extends Row<C0, C1, C2, C3, C3> {
51 public static class R5<C0, C1, C2, C3, C4> extends Row<C0, C1, C2, C3, C4> {
57 public Row<C0, C1, C2, C3, C4> set0(C0 item) {
63 public Row<C0, C1, C2, C3, C4> set1(C1 item) {
69 public Row<C0, C1, C2, C3, C4> set2(C2 item) {
75 public Row<C0, C1, C2, C3, C4> set3(C3 item)
    [all...]
  /external/skia/src/gpu/
GrRectanizer_pow2.h 15 // of two can have, at most, one active row/shelf. Once a row/shelf for
17 // to a new row.
43 struct Row {
46 // but it is used to signal if there exists an open row of this height
54 Row fRows[kMaxExponent]; // 0-th entry will be unused
70 void initRow(Row* row, int rowHeight) {
71 row->fLoc.set(0, fNextStripY);
72 row->fRowHeight = rowHeight
    [all...]
  /external/emma/core/java12/com/vladium/emma/report/html/doc/
HTMLTable.java 56 final Row row = new Row (true); local
57 add (row);
59 return row;
64 final Row row = new Row (false); local
65 add (row);
67 return row;
    [all...]
  /external/webrtc/webrtc/system_wrappers/include/
aligned_array.h 19 // Wrapper class for aligned arrays. Every row (and the first dimension) are
50 T* Row(size_t row) {
51 RTC_CHECK_LE(row, rows_);
52 return head_row_[row];
55 const T* Row(size_t row) const {
56 RTC_CHECK_LE(row, rows_);
57 return head_row_[row];
60 T& At(size_t row, size_t col)
    [all...]
  /external/llvm/lib/DebugInfo/DWARF/
DWARFDebugLine.cpp 134 DWARFDebugLine::Row::Row(bool default_is_stmt) {
138 void DWARFDebugLine::Row::postAppend() {
144 void DWARFDebugLine::Row::reset(bool default_is_stmt) {
158 void DWARFDebugLine::Row::dump(raw_ostream &OS) const {
193 for (const Row &R : Rows) {
211 Row.reset(LineTable->Prologue.DefaultIsStmt);
219 Sequence.LowPC = Row.Address;
223 LineTable->appendRow(Row);
224 if (Row.EndSequence)
    [all...]
  /external/webrtc/webrtc/common_audio/
lapped_transform.cc 32 memcpy(parent_->real_buf_.Row(i), input[i],
34 parent_->fft_->Forward(parent_->real_buf_.Row(i),
35 parent_->cplx_pre_.Row(i));
48 parent_->fft_->Inverse(parent_->cplx_post_.Row(i),
49 parent_->real_buf_.Row(i));
50 memcpy(output[i], parent_->real_buf_.Row(i),
  /external/webrtc/webrtc/modules/desktop_capture/
desktop_region.h 25 // Internally each region is stored as a set of rows where each row contains one
32 // RowSpan represents a horizontal span withing a single row.
47 // Row represents a single row of a region. A row is set of rectangles that
49 struct Row {
50 Row(int32_t top, int32_t bottom);
51 ~Row();
59 // Type used to store list of rows in the region. The bottom position of row
62 typedef std::map<int, Row*> Rows
    [all...]
  /external/eigen/Eigen/src/OrderingMethods/
Eigen_Colamd.h 69 /* knobs [0] and stats [0]: dense row knob and output statistic. */
114 /* Row and column status */
122 /* Macros for row and column status update and checking. */
123 #define ROW_IS_DEAD(r) ROW_IS_MARKED_DEAD (Row[r].shared2.mark)
125 #define ROW_IS_ALIVE(r) (Row [r].shared2.mark >= ALIVE)
129 #define KILL_ROW(r) { Row [r].shared2.mark = DEAD ; }
137 // == Row and Column structures ==
141 Index start ; /* index for A of first row in this column, or DEAD */
175 Index start ; /* index for A of first col in this row */
176 Index length ; /* number of principal columns in this row */
505 Index row ; \/* a row index *\/ local
724 Index r, row ; \/* a row index *\/ local
974 Index row ; \/* a row index *\/ local
    [all...]
  /frameworks/support/samples/SupportLeanbackDemos/src/com/example/android/leanback/
BrowseAnimationFragment.java 24 import android.support.v17.leanback.widget.Row;
82 createRandomRow(new HeaderItem(i, "Row " + i)));
94 RowPresenter.ViewHolder rowViewHolder, Row row) {
95 ArrayObjectAdapter adapter = ((ArrayObjectAdapter) ((ListRow) row)
109 RowPresenter.ViewHolder rowViewHolder, Row row) {
110 ArrayObjectAdapter adapter = ((ArrayObjectAdapter) ((ListRow) row)
124 RowPresenter.ViewHolder rowViewHolder, Row row) {
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
netioapi.h 361 const MIB_ANYCASTIPADDRESS_ROW *Row
365 const MIB_IPFORWARD_ROW2 *Row
374 PMIB_IPNET_ROW2 Row
378 const MIB_IPNET_ROW2 *Row
392 const MIB_IPNET_ROW2 *Row
396 const MIB_UNICASTIPADDRESS_ROW *Row
400 const MIB_IPFORWARD_ROW2 *Row
413 const MIB_IPNET_ROW2 *Row
422 const MIB_UNICASTIPADDRESS_ROW *Row
426 PMIB_UNICASTIPADDRESS_ROW Row
    [all...]
  /external/llvm/include/llvm/DebugInfo/DWARF/
DWARFDebugLine.h 93 struct Row {
94 explicit Row(bool default_is_stmt = false);
96 /// Called after a row is appended to the matrix.
101 static bool orderByAddress(const Row& LHS, const Row& RHS) {
174 // Represents an invalid row
177 void appendRow(const DWARFDebugLine::Row &R) {
184 // Returns the index of the row with file/line info for a given address,
185 // or UnknownRowIndex if there is no such row.
211 typedef std::vector<Row> RowVector
    [all...]

Completed in 913 milliseconds

1 2 3 4 5 6 7 8 91011>>