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

1 2 3 4 5 6

  /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...]
  /external/llvm/lib/DebugInfo/DWARF/
DWARFUnitIndex.cpp 134 auto &Row = Rows[i];
135 if (auto *Contribs = Row.Contributions.get()) {
136 OS << format("%5u 0x%016" PRIx64 " ", i + 1, Row.Signature);
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...]
DWARFContext.cpp 495 // Get the index of row we're looking for in the line table.
501 // Take file number and line/column from the row.
502 const DWARFDebugLine::Row &Row = LineTable->Rows[RowIndex];
504 LineTable->getFileNameByIndex(Row.File, CU->getCompilationDir(),
507 Result.Line = Row.Line;
508 Result.Column = Row.Column;
509 Lines.push_back(std::make_pair(Row.Address, Result));
  /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/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...]
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
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...]
  /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/snakeyaml/src/test/java/org/yaml/snakeyaml/extensions/compactnotation/
Row.java 18 public class Row {
25 public Row(String id) {
78 return "Row id=" + id;
  /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...]
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...]
  /packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/
MockSuggestionProviderCursor.java 28 private final ArrayList<Row> mRows;
32 mRows = new ArrayList<Row>();
35 public Row addRow(Object... values) {
36 Row row = new Row(values); local
37 mRows.add(row);
38 return row;
90 private class Row {
92 public Row(Object... values)
    [all...]
  /external/webrtc/webrtc/system_wrappers/source/
data_log.cc 30 // A Row contains cells, which are indexed by the column names as std::string.
32 class Row {
34 Row();
35 ~Row();
56 // A LogTable contains multiple rows, where only the latest row is active for
70 // Buffers the current row while it is waiting to be written to file,
71 // which is done by a call to Flush(). A new row is available when the
94 typedef std::list<Row*> RowList;
100 Row* current_row_;
106 Row::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/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/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/chromium-trace/catapult/dashboard/dashboard/models/
graph_data.py 29 The graph data points are represented by Row entities. Each Row entity contains
33 The keys of the Row entities for a particular data series are start with a
34 TestContainer key, instead of a TestMetadata key. This way, the Row entities for
38 For example, Row entities are organized like this:
41 Row: revision 12345, value 2.5
42 Row: revision 12346, value 2.0
43 Row: revision 12347, value 2.1
45 Row: revision 12345, value 2.4
46 Row: revision 12346, value 2.
    [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/guava/guava/src/com/google/common/collect/
StandardTable.java 45 * {@link Table} implementation backed by a map that associates row keys with
47 * records by the row key alone or by both keys, but not by just the column key.
51 * all optional operations are supported. Null row keys, columns keys, and
54 * <p>Lookups by row key are often faster than lookups by column key, because
56 * column(columnKey).get(rowKey)} still runs quickly, since the row key is
58 * iteration across all row keys occurs.
182 /** Remove a row key / column key / value mapping, if present. */
210 * <p>The set's iterator traverses the mappings for the first row, the
211 * mappings for the second row, and so on.
213 * <p>Each cell is an immutable snapshot of a row key / column key / valu
254 @Override public Map<C, V> row(R rowKey) { method in class:StandardTable
    [all...]
  /packages/apps/Settings/src/com/android/settings/notification/
NotificationBackend.java 41 final AppRow row = new AppRow(); local
42 row.pkg = app.packageName;
43 row.uid = app.uid;
45 row.label = app.loadLabel(pm);
47 Log.e(TAG, "Error loading application label for " + row.pkg, t);
48 row.label = row.pkg;
50 row.icon = app.loadIcon(pm);
51 row.banned = getNotificationsBanned(row.pkg, row.uid)
61 final AppRow row = loadAppRow(context, pm, app.applicationInfo); local
    [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...]
  /external/opencv/cxcore/include/
cvwimage.h 64 // We use the convention (c,r) to refer to column c and row r with (0,0) being
77 // *im(2, 3) = 15; // Modify the element at column 2, row 3
80 // // Copy the second row into the first. This can be done with no memory
88 // float* row = im->Row(r);
90 // for (int ch = 0; ch < im->Channels(); ++ch, ++row) {
91 // *row = uchar(rand() & 255);
209 inline const T* Row(int r) const {
213 inline T* Row(int r) {
  /external/opencv3/modules/core/include/opencv2/core/
wimage.hpp 133 We use the convention (c,r) to refer to column c and row r with (0,0) being the upper left corner.
146 *im(2, 3) = 15; // Modify the element at column 2, row 3
149 // Copy the second row into the first. This can be done with no memory
157 float* row = im->Row(r);
159 for (int ch = 0; ch < im->Channels(); ++ch, ++row) {
160 *row = uchar(rand() & 255);
205 inline const T* Row(int r) const {
209 inline T* Row(int r) {

Completed in 1381 milliseconds

1 2 3 4 5 6