HomeSort by relevance Sort by last modified time
    Searched defs:row (Results 51 - 75 of 1411) sorted by null

1 23 4 5 6 7 8 91011>>

  /frameworks/compile/mclinker/lib/LD/
StaticResolver.cpp 60 unsigned int row = getOrdinate(pNew); local
69 action = link_action[row][col];
  /frameworks/ml/nn/runtime/test/specs/
concat_float_3.mod.py 20 row = 212 variable
25 input1 = Input("input1", "TENSOR_FLOAT32", "{%d, %d}" % (row, col1)) # input tensor 1
26 input2 = Input("input2", "TENSOR_FLOAT32", "{%d, %d}" % (row, col2)) # input tensor 2
28 output = Output("output", "TENSOR_FLOAT32", "{%d, %d}" % (row, output_col)) # output
32 input1_values = [x for x in range(row * col1)]
33 input2_values = [-x for x in range(row * col2)]
37 output_values = [x for x in range(row * output_col)]
38 for r in range(row):
concat_quant8_3.mod.py 20 row = 400 variable
25 input1 = Input("input1", "TENSOR_QUANT8_ASYMM", "{%d, %d}, 0.5f, 0" % (row, col1))
26 input2 = Input("input2", "TENSOR_QUANT8_ASYMM", "{%d, %d}, 0.5f, 0" % (row, col2))
28 output = Output("output", "TENSOR_QUANT8_ASYMM", "{%d, %d}, 0.5f, 0" % (row, output_col))
32 input1_values = [(x % 128 + 128) for x in range(row * col1)]
33 input2_values = [x % 128 for x in range(row * col2)]
37 output_values = [x for x in range(row * output_col)]
38 for r in range(row):
  /frameworks/support/samples/SupportLeanbackShowcase/app/src/main/java/android/support/v17/leanback/supportleanbackshowcase/app/details/
ShadowRowPresenterSelector.java 26 * enabled or not depending on {@link CardRow#useShadow()} for a given row.
40 CardRow row = listRow.getCardRow(); local
41 if (row.useShadow()) return mShadowEnabledRowPresenter;
  /libcore/xml/src/main/java/org/xmlpull/v1/
XmlPullParserException.java 13 protected int row = -1; field in class:XmlPullParserException
29 public XmlPullParserException(String s, int row, int column) {
31 this.row = row;
42 this.row = parser.getLineNumber();
50 public int getLineNumber() { return row; }
  /prebuilts/misc/windows/sdl2/test/
testdrawchessboard.c 25 int row = 0,coloum = 0,x = 0; local
31 for(row; row < 8; row++)
33 coloum = row%2;
35 for(coloum; coloum < 4+(row%2); coloum++)
42 rect.y = row * rect.h;
  /prebuilts/tools/common/spantable/
spantable.jar 
  /developers/build/prebuilts/gradle/StorageProvider/Application/src/main/java/com/example/android/storageprovider/
MyCloudProvider.java 121 // Construct one row for a root called "MyCloud".
122 final MatrixCursor.RowBuilder row = result.newRow(); local
124 row.add(Root.COLUMN_ROOT_ID, ROOT);
125 row.add(Root.COLUMN_SUMMARY, getContext().getString(R.string.root_summary));
131 row.add(Root.COLUMN_FLAGS, Root.FLAG_SUPPORTS_CREATE |
136 row.add(Root.COLUMN_TITLE, getContext().getString(R.string.app_name));
140 row.add(Root.COLUMN_DOCUMENT_ID, getDocIdForFile(mBaseDir));
144 row.add(Root.COLUMN_MIME_TYPES, getChildMimeTypes(mBaseDir));
145 row.add(Root.COLUMN_AVAILABLE_BYTES, mBaseDir.getFreeSpace());
146 row.add(Root.COLUMN_ICON, R.drawable.ic_launcher)
    [all...]
  /developers/samples/android/content/documentsUi/StorageProvider/Application/src/main/java/com/example/android/storageprovider/
MyCloudProvider.java 121 // Construct one row for a root called "MyCloud".
122 final MatrixCursor.RowBuilder row = result.newRow(); local
124 row.add(Root.COLUMN_ROOT_ID, ROOT);
125 row.add(Root.COLUMN_SUMMARY, getContext().getString(R.string.root_summary));
131 row.add(Root.COLUMN_FLAGS, Root.FLAG_SUPPORTS_CREATE |
136 row.add(Root.COLUMN_TITLE, getContext().getString(R.string.app_name));
140 row.add(Root.COLUMN_DOCUMENT_ID, getDocIdForFile(mBaseDir));
144 row.add(Root.COLUMN_MIME_TYPES, getChildMimeTypes(mBaseDir));
145 row.add(Root.COLUMN_AVAILABLE_BYTES, mBaseDir.getFreeSpace());
146 row.add(Root.COLUMN_ICON, R.drawable.ic_launcher)
    [all...]
  /development/samples/browseable/StorageProvider/src/com.example.android.storageprovider/
MyCloudProvider.java 121 // Construct one row for a root called "MyCloud".
122 final MatrixCursor.RowBuilder row = result.newRow(); local
124 row.add(Root.COLUMN_ROOT_ID, ROOT);
125 row.add(Root.COLUMN_SUMMARY, getContext().getString(R.string.root_summary));
131 row.add(Root.COLUMN_FLAGS, Root.FLAG_SUPPORTS_CREATE |
136 row.add(Root.COLUMN_TITLE, getContext().getString(R.string.app_name));
140 row.add(Root.COLUMN_DOCUMENT_ID, getDocIdForFile(mBaseDir));
144 row.add(Root.COLUMN_MIME_TYPES, getChildMimeTypes(mBaseDir));
145 row.add(Root.COLUMN_AVAILABLE_BYTES, mBaseDir.getFreeSpace());
146 row.add(Root.COLUMN_ICON, R.drawable.ic_launcher)
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
AbstractTableTest.java 158 Map<Integer, Character> row = table.row("foo"); local
159 assertEquals(ImmutableMap.of(1, 'a', 3, 'c'), row);
161 assertEquals(ImmutableMap.of(1, 'a'), row);
163 assertEquals(ImmutableMap.of(), row); local
165 assertEquals(ImmutableMap.of(2, 'b'), row);
166 row.clear();
167 assertEquals(ImmutableMap.of(), row); local
169 assertEquals(ImmutableMap.of(5, 'x'), row);
  /frameworks/opt/colorpicker/src/com/android/colorpicker/
ColorPickerPalette.java 32 * row (and the padding between the squares) is determined by the user.
74 TableRow row = new TableRow(getContext()); local
77 row.setLayoutParams(params);
78 return row;
102 TableRow row = createTableRow(); local
107 addSwatchToRow(row, colorSwatch, rowNumber);
112 addView(row);
113 row = createTableRow();
119 // Create blank views to fill the row if the last row has not been filled
    [all...]
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
DetailsOverviewLogoPresenter.java 123 public boolean isBoundToImage(ViewHolder viewHolder, DetailsOverviewRow row) {
124 return row != null && row.getImageDrawable() != null;
136 DetailsOverviewRow row = (DetailsOverviewRow) item; local
138 imageView.setImageDrawable(row.getImageDrawable());
139 if (isBoundToImage((ViewHolder) viewHolder, row)) {
143 lp.width = row.getImageDrawable().getIntrinsicWidth();
144 lp.height = row.getImageDrawable().getIntrinsicHeight();
  /packages/apps/TV/src/com/android/tv/dvr/ui/list/
SeriesScheduleRowPresenter.java 29 * A RowPresenter for series schedule row.
58 protected String onGetRecordingTimeText(ScheduleRow row) {
59 return Utils.getDurationString(getContext(), row.getStartTimeMs(), row.getEndTimeMs(),
64 protected String onGetProgramInfoText(ScheduleRow row) {
65 return row.getEpisodeDisplayTitle(getContext());
72 EpisodicProgramRow row = (EpisodicProgramRow) item; local
73 if (getDvrManager().isConflicting(row.getSchedule())) {
85 protected void onInfoClicked(ScheduleRow row) {
86 DvrUiHelper.startSchedulesActivity(getContext(), row.getSchedule())
92 "Start request with the existing schedule: " + row); local
100 "Stop request with the null schedule: " + row); local
    [all...]
  /cts/libs/vogar-expect/src/vogar/util/
MarkResetConsole.java 27 private int row; field in class:MarkResetConsole
41 row++;
57 private final int markRow = row;
74 for (int r = row; r > markRow; r--) {
84 row = markRow;
  /external/autotest/frontend/client/src/autotest/common/table/
TableClickWidget.java 13 private int row; field in class:TableClickWidget
21 int row, int cell) {
23 this.row = row;
36 return row;
  /external/javasqlite/src/main/java/SQLite/JDBC2z/
JDBCResultSet.java 9 * Current row to be retrieved.
11 private int row; field in class:JDBCResultSet
62 * Flag for cursor being (not) on insert row.
67 * Row buffer for insert/update row.
79 this.row = -1;
134 if (row < 0) {
138 System.arraycopy((String []) tr.rows.elementAt(row), 0,
147 row++;
148 return row < tr.nrows
    [all...]
  /external/javasqlite/src/main/java/SQLite/
TableResult.java 57 * Rows of the result set. Each row is stored as a String array.
150 String row[] = (String[]) rows.elementAt(i); local
152 sb.append(row[k] == null ? "NULL" : row[k]);
  /external/libvpx/libvpx/vpx_dsp/mips/
sum_squares_msa.c 16 int row, col; local
78 for (row = 0; row < (size >> 4); row++) {
118 for (row = 0; row < size; row++) {
  /external/pdfium/third_party/libtiff/
tif_next.c 54 uint8* row; local
74 for (row = buf; cc > 0 && occ > 0; occ -= scanline, row += scanline) {
83 _TIFFmemcpy(row, bp, scanline);
99 _TIFFmemcpy(row+off, bp+4, n);
117 op = row;
  /external/pdfium/xfa/fxbarcode/datamatrix/
BC_DefaultPlacement.cpp 49 bool CBC_DefaultPlacement::getBit(int32_t col, int32_t row) {
50 return m_bits[row * m_numcols + col] == 1;
52 void CBC_DefaultPlacement::setBit(int32_t col, int32_t row, bool bit) {
53 m_bits[row * m_numcols + col] = bit ? (uint8_t)1 : (uint8_t)0;
55 bool CBC_DefaultPlacement::hasBit(int32_t col, int32_t row) {
56 return m_bits[row * m_numcols + col] != 2;
60 int32_t row = 4; local
63 if ((row == m_numrows) && (col == 0)) {
66 if ((row == m_numrows - 2) && (col == 0) && ((m_numcols % 4) != 0)) {
69 if ((row == m_numrows - 2) && (col == 0) && (m_numcols % 8 == 4))
    [all...]
  /external/python/cpython2/Lib/plat-mac/lib-scriptpackages/StdSuites/
Table_Suite.py 46 row = rows variable
  /external/syslinux/com32/cmenu/libmenu/
tui.c 36 char row, col; local
41 getpos(&row, &col, 0); // Get current position
68 gotoxy(row, col);
192 gotoxy(row, col);
196 gotoxy(row, col + (p - str));
  /external/toybox/toys/pending/
more.c 77 unsigned rows = 24, cols = 80, row = 0, col = 0; local
105 st.st_size = show_prompt = col = row = 0;
112 row += 3;
125 col = row = show_prompt = 0;
136 if (++row >= rows || input_key == '\n') show_prompt = 1;
  /external/vogar/src/vogar/util/
MarkResetConsole.java 27 private int row; field in class:MarkResetConsole
41 row++;
57 private final int markRow = row;
74 for (int r = row; r > markRow; r--) {
84 row = markRow;

Completed in 638 milliseconds

1 23 4 5 6 7 8 91011>>