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

12 3 4 5 6 7 8 91011>>

  /device/linaro/bootloader/edk2/ShellPkg/Application/Shell/
FileHandleInternal.h 23 @param[in, out] Row Current row of the cursor position
30 IN OUT UINTN *Row
37 @param[in] TotalRow Total row of a screen
39 @param[in, out] Row Current row of the cursor position
47 IN OUT UINTN *Row
  /device/linaro/bootloader/edk2/StdLib/LibC/Uefi/InteractiveIO/
IIOutilities.h 58 @param[out] Row Pointer to where the current cursor row is to be stored.
69 UINT32 *Row
92 @param[out] Row Pointer to where to store the MAX Row, or NULL.
104 UINTN *Row
IIOutilities.c 116 @param[out] Row Pointer to where the current cursor row is to be stored.
127 UINT32 *Row
143 *Row = Proto->Mode->CursorRow;
185 Status = Proto->SetCursorPosition(Proto, CursorXY->Column, CursorXY->Row);
188 This->CurrentXY.Row = CursorXY->Row;
200 @param[out] Row Pointer to where to store the MAX Row, or NULL.
212 UINTN *Row
    [all...]
  /external/python/cpython2/Doc/includes/sqlite3/
rowclass.py 4 con.row_factory = sqlite3.Row
8 for row in cur:
9 assert row[0] == row["name"]
10 assert row["name"] == row["nAmE"]
11 assert row[1] == row["age"]
12 assert row[1] == row["AgE"
    [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/
SectionRow.java 17 * Used to represent section item in HeadersFragment. Unlike a normal Row, it's not focusable.
19 public class SectionRow extends Row {
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellDebug1CommandsLib/HexEdit/
BufferImage.c 105 HBufferImage.DisplayPosition.Row = 2;
107 HBufferImage.MousePosition.Row = 2;
239 Print Line on Row
242 @param[in] Row The row on screen ( begin from 1 ).
252 IN UINTN Row,
303 (INT32)Row - 1,
305 ((INT32)Row - 2 + HBufferImage.LowVisibleRow - 1) * 0x10
328 ShellPrintEx ((INT32)Pos - 1, (INT32)Row - 1, L"0");
333 ShellPrintEx ((INT32)Pos - 1, (INT32)Row - 1, L"%x ", Line->Buffer[Index]);
    [all...]
  /tools/loganalysis/src/com/android/loganalysis/item/
CpuInfoItem.java 39 private Map<Integer, Row> mRows = new HashMap<Integer, Row>();
41 private static class Row {
97 * Add a row from the cpuinfo output to the {@link CpuInfoItem}.
104 Row row = new Row(); local
105 row.percent = percent;
106 row.name = name;
107 mRows.put(pid, row);
    [all...]
GfxInfoItem.java 42 private Map<Integer, Row> mRows = new HashMap<Integer, Row>();
44 private static class Row {
102 * Add a row from the gfxinfo output to the {@link GfxInfoItem}.
110 Row row = new Row(); local
111 row.name = name;
112 row.totalFrames = totalFrames;
113 row.jankyFrames = jankyFrames
    [all...]
  /external/llvm/lib/DebugInfo/DWARF/
DWARFDebugLine.cpp 132 DWARFDebugLine::Row::Row(bool default_is_stmt) { reset(default_is_stmt); }
134 void DWARFDebugLine::Row::postAppend() {
140 void DWARFDebugLine::Row::reset(bool default_is_stmt) {
154 void DWARFDebugLine::Row::dump(raw_ostream &OS) const {
183 for (const Row &R : Rows) {
201 Row.reset(LineTable->Prologue.DefaultIsStmt);
209 Sequence.LowPC = Row.Address;
213 LineTable->appendRow(Row);
214 if (Row.EndSequence)
    [all...]
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/extensions/compactnotation/
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...]
Row.java 18 public class Row {
25 public Row(String id) {
78 return "Row id=" + id;
  /external/swiftshader/third_party/LLVM/lib/DebugInfo/
DWARFDebugLine.h 85 struct Row {
86 Row(bool default_is_stmt = false) { reset(default_is_stmt); }
87 /// Called after a row is appended to the matrix.
130 void appendRow(const DWARFDebugLine::Row &state) { Rows.push_back(state); }
140 std::vector<Row> Rows;
143 struct State : public Row, public LineTable {
144 // Special row codes.
150 State() : row(StartParsingLineTable) {}
154 virtual void finalize(uint32_t offset) { row = DoneParsingLineTable; }
155 virtual void reset() { Row::reset(Prologue.DefaultIsStmt);
159 unsigned row; member in struct:llvm::DWARFDebugLine::State
    [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 65 /* knobs [0] and stats [0]: dense row knob and output statistic. */
107 /* Row and column status */
115 /* Macros for row and column status update and checking. */
116 #define ROW_IS_DEAD(r) ROW_IS_MARKED_DEAD (Row[r].shared2.mark)
118 #define ROW_IS_ALIVE(r) (Row [r].shared2.mark >= ALIVE)
122 #define KILL_ROW(r) { Row [r].shared2.mark = DEAD ; }
130 // == Row and Column structures ==
134 IndexType start ; /* index for A of first row in this column, or DEAD */
168 IndexType start ; /* index for A of first col in this row */
169 IndexType length ; /* number of principal columns in this row */
498 IndexType row ; \/* a row index *\/ local
717 IndexType r, row ; \/* a row index *\/ local
967 IndexType row ; \/* a row index *\/ local
    [all...]
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellDebug1CommandsLib/Edit/
FileBuffer.c 101 FileBuffer.DisplayPosition.Row = 2;
103 FileBuffer.LowVisibleRange.Row = 2;
294 if ((FileBuffer.MousePosition.Row == FileBufferBackupVar.MousePosition.Row &&
310 FRow = FileBuffer.LowVisibleRange.Row + FileBufferBackupVar.MousePosition.Row - 2;
319 Line = MoveLine (FRow - FileBuffer.FilePosition.Row);
330 (INT32)FileBufferBackupVar.MousePosition.Row - 1,
338 (INT32)FileBufferBackupVar.MousePosition.Row - 1,
351 FRow = FileBuffer.LowVisibleRange.Row + FileBuffer.MousePosition.Row - 2;
    [all...]
  /frameworks/support/samples/SupportLeanbackDemos/src/com/example/android/leanback/
BrowseAnimationFragment.java 25 import android.support.v17.leanback.widget.Row;
83 createRandomRow(new HeaderItem(i, "Row " + i)));
95 RowPresenter.ViewHolder rowViewHolder, Row row) {
96 ArrayObjectAdapter adapter = ((ArrayObjectAdapter) ((ListRow) row)
110 RowPresenter.ViewHolder rowViewHolder, Row row) {
111 ArrayObjectAdapter adapter = ((ArrayObjectAdapter) ((ListRow) row)
125 RowPresenter.ViewHolder rowViewHolder, 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...]
  /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...]
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/DebugInfo/DWARF/
DWARFDebugLine.h 99 struct Row {
100 explicit Row(bool default_is_stmt = false);
102 /// Called after a row is appended to the matrix.
107 static bool orderByAddress(const Row& LHS, const Row& RHS) {
183 // Represents an invalid row
186 void appendRow(const DWARFDebugLine::Row &R) {
194 // Returns the index of the row with file/line info for a given address,
195 // or UnknownRowIndex if there is no such row.
223 typedef std::vector<Row> RowVector
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/DebugInfo/DWARF/
DWARFDebugLine.h 99 struct Row {
100 explicit Row(bool default_is_stmt = false);
102 /// Called after a row is appended to the matrix.
107 static bool orderByAddress(const Row& LHS, const Row& RHS) {
183 // Represents an invalid row
186 void appendRow(const DWARFDebugLine::Row &R) {
194 // Returns the index of the row with file/line info for a given address,
195 // or UnknownRowIndex if there is no such row.
223 typedef std::vector<Row> RowVector
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/DebugInfo/DWARF/
DWARFDebugLine.h 99 struct Row {
100 explicit Row(bool default_is_stmt = false);
102 /// Called after a row is appended to the matrix.
107 static bool orderByAddress(const Row& LHS, const Row& RHS) {
183 // Represents an invalid row
186 void appendRow(const DWARFDebugLine::Row &R) {
194 // Returns the index of the row with file/line info for a given address,
195 // or UnknownRowIndex if there is no such row.
223 typedef std::vector<Row> RowVector
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/DebugInfo/DWARF/
DWARFDebugLine.h 99 struct Row {
100 explicit Row(bool default_is_stmt = false);
102 /// Called after a row is appended to the matrix.
107 static bool orderByAddress(const Row& LHS, const Row& RHS) {
183 // Represents an invalid row
186 void appendRow(const DWARFDebugLine::Row &R) {
194 // Returns the index of the row with file/line info for a given address,
195 // or UnknownRowIndex if there is no such row.
223 typedef std::vector<Row> RowVector
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/DebugInfo/DWARF/
DWARFDebugLine.h 99 struct Row {
100 explicit Row(bool default_is_stmt = false);
102 /// Called after a row is appended to the matrix.
107 static bool orderByAddress(const Row& LHS, const Row& RHS) {
183 // Represents an invalid row
186 void appendRow(const DWARFDebugLine::Row &R) {
194 // Returns the index of the row with file/line info for a given address,
195 // or UnknownRowIndex if there is no such row.
223 typedef std::vector<Row> RowVector
    [all...]

Completed in 634 milliseconds

12 3 4 5 6 7 8 91011>>