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

1 2 3 4 5 6 7 891011>>

  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
ArrayTable.java 40 * <p>The allowed row and column keys must be supplied when the table is
41 * created. The table always contains a mapping for every row key / column pair.
42 * The value corresponding to a given row and column is null unless another
45 * <p>The table's size is constant: the product of the number of supplied row
50 * <p>The ordering of the row and column keys provided when the table is
59 * <p>Null row keys or column keys are not permitted.
62 * where the array indices correspond to the position of a row or column in the
89 * @param rowKeys row keys that may be stored in the generated table
102 * iterable, to specify the allowed row keys and/or column keys. Note that
110 * <p>If {@code table} includes a mapping with row key {@code r} and
    [all...]
  /external/swiftshader/third_party/LLVM/lib/DebugInfo/
DWARFContext.cpp 154 // Get the index of the row we're looking for in the line table.
163 const DWARFDebugLine::Row &row = lineTable->Rows[rowIndex]; local
164 const std::string &fileName = lineTable->Prologue.FileNames[row.File-1].Name;
166 return DILineInfo(fileName.c_str(), row.Line, row.Column);
  /external/syslinux/gpxe/src/include/gpxe/efi/Protocol/
SimpleTextOut.h 301 @param Row The position to set the cursor to. Must be greater than or
316 IN UINTN Row
357 The cursor's row.
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
DetailsOverviewRow.java 26 * An overview {@link Row} for a details fragment. This row consists of an image, a
32 * row. {@link SparseArrayObjectAdapter} is recommended for easily updating actions while
34 * row is bound to a view.
37 * After the row is bound to a view, the application may call {@link #setItem(Object)}
41 * After the row is bound to view, the application may change the image by calling {@link
45 public class DetailsOverviewRow extends Row {
55 public void onImageDrawableChanged(DetailsOverviewRow row) {
61 public void onItemChanged(DetailsOverviewRow row) {
67 public void onActionsAdapterChanged(DetailsOverviewRow row) {
    [all...]
RowHeaderPresenter.java 140 HeaderItem headerItem = item == null ? null : ((Row) item).getHeaderItem();
  /external/gemmlowp/internal/
dispatch_gemm_shape.h 50 Shape == VectorShape::Row ? VectorShape::Col : VectorShape::Row;
simd_wrappers_common_neon_sse.h 28 const MatrixMap<SrcScalarType, MapOrder::ColMajor>& src, int row,
32 result.buf.reg[i] = LoadInt32x4(src.data(row, col + i));
42 const MatrixMap<SrcScalarType, MapOrder::ColMajor>& src, int row,
46 result.buf.reg[2 * i + 0] = LoadInt32x4(src.data(row + 0, col + i));
47 result.buf.reg[2 * i + 1] = LoadInt32x4(src.data(row + 4, col + i));
57 const MatrixMap<SrcScalarType, MapOrder::ColMajor>& src, int row,
62 buf[i] = src(row, col + i);
73 const MatrixMap<SrcScalarType, MapOrder::ColMajor>& src, int row,
78 buf[i] = src(row, col + i);
145 VectorMap<SrcScalarType, VectorShape::Row>> {
    [all...]
simd_wrappers.h 296 static RegisterBlockType Run(const SrcObjectType& src, int row, int col) {
300 const ScalarType* src_ptr = src.data(row, col + c);
317 static_assert(Shape == VectorShape::Row || Cols == 1, "");
334 static_assert(Shape == VectorShape::Row || Cols == 1, "");
344 RegisterBlockType Load(const SrcObjectType& src, int row, int col) {
345 return LoadImpl<RegisterBlockType, SrcObjectType>::Run(src, row, col);
381 static constexpr int kCols = Shape == VectorShape::Row ? BroadcastCols : 1;
455 LoadForBroadcasting(const SrcObjectType& src, int row, int col) {
457 src, row, col);
unpack.h 96 const VectorMap<const std::int32_t, VectorShape::Row>&
138 : "unpack to row-major");
146 const VectorMap<const std::int32_t, VectorShape::Row> rhs_sums_of_each_slice(
  /frameworks/support/samples/SupportLeanbackDemos/src/com/example/android/leanback/
SearchFragment.java 21 import android.support.v17.leanback.widget.Row;
43 // Adapter for first row
130 HeaderItem header = new HeaderItem(0, mQuery + " results row " + 0);
133 // first row based on the flag mIsDataSetOnePresented flag.
134 // Also the first row adapter will only be created once so the animation will be triggered
152 header = new HeaderItem(i, mQuery + " results row " + i);
167 RowPresenter.ViewHolder rowViewHolder, Row row) {
188 * Create a data set (data set one) for the last row of this browse fragment. It will be
190 * Different with other rows in the browsing fragment, the photo item in last row all have bee
    [all...]
SearchSupportFragment.java 24 import android.support.v17.leanback.widget.Row;
46 // Adapter for first row
131 HeaderItem header = new HeaderItem(0, mQuery + " results row " + 0);
134 // first row based on the flag mIsDataSetOnePresented flag.
135 // Also the first row adapter will only be created once so the animation will be triggered
153 header = new HeaderItem(i, mQuery + " results row " + i);
168 RowPresenter.ViewHolder rowViewHolder, Row row) {
189 * Create a data set (data set one) for the last row of this browse fragment. It will be
191 * Different with other rows in the browsing fragment, the photo item in last row all have bee
    [all...]
  /frameworks/support/samples/SupportLeanbackShowcase/app/src/main/java/android/support/v17/leanback/supportleanbackshowcase/app/media/
MediaPlayerGlue.java 35 import android.support.v17.leanback.widget.Row;
146 // Add secondary actions and change the control row color.
395 * RowPresenter.ViewHolder, Row)
398 RowPresenter.ViewHolder rowViewHolder, Row row) {
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/media/
MediaPlayerGlue.java 31 import android.support.v17.leanback.widget.Row;
484 RowPresenter.ViewHolder rowViewHolder, Row row) {
  /frameworks/support/v17/leanback/tests/java/android/support/v17/leanback/app/
PlaybackTestFragment.java 34 import android.support.v17.leanback.widget.Row;
71 RowPresenter.ViewHolder rowViewHolder, Row row) {
72 Log.d(TAG, "onItemClicked: " + item + " row " + row);
131 HeaderItem header = new HeaderItem(i, "Row " + i);
PlaybackTestSupportFragment.java 37 import android.support.v17.leanback.widget.Row;
74 RowPresenter.ViewHolder rowViewHolder, Row row) {
75 Log.d(TAG, "onItemClicked: " + item + " row " + row);
134 HeaderItem header = new HeaderItem(i, "Row " + i);
  /external/llvm/lib/DebugInfo/DWARF/
DWARFContext.cpp 513 // Get the index of row we're looking for in the line table.
519 // Take file number and line/column from the row.
520 const DWARFDebugLine::Row &Row = LineTable->Rows[RowIndex];
522 LineTable->getFileNameByIndex(Row.File, CU->getCompilationDir(),
525 Result.Line = Row.Line;
526 Result.Column = Row.Column;
527 Lines.push_back(std::make_pair(Row.Address, Result));
  /external/skia/src/core/
SkAAClip.cpp 92 return segments * 2; // each segment is row[0] + row[1] (n + alpha)
103 uint8_t* row = head->data(); local
106 row[0] = n;
107 row[1] = 0xFF;
109 row += 2;
176 static size_t compute_row_length(const uint8_t row[], int width) {
177 const uint8_t* origRow = row;
179 int n = row[0];
182 row += 2
213 const uint8_t* row = head->data() + yoff->fOffset; local
490 uint8_t* row = base + yoff->fOffset; local
741 const uint8_t* row = head->data() + yoff->fOffset; local
921 const uint8_t* row = this->findRow(top, &lastY); local
968 Row* row = fRows.begin(); local
986 Row* row = fCurrRow; local
1079 const Row* row = fRows.begin(); local
1133 const Row& row = fRows[y]; local
1154 const Row& row = fRows[i]; local
1944 const uint8_t* row = fAAClip->findRow(y); local
2012 const uint8_t* row = fAAClip->findRow(y); local
2030 const uint8_t* row = fAAClip->findRow(y, &lastY); local
2229 const uint8_t* row = fAAClip->findRow(y, &localStopY); local
    [all...]
  /prebuilts/go/darwin-x86/src/database/sql/
sql.go 282 // row. In such a case, QueryRow returns a placeholder *Row value that
    [all...]
  /prebuilts/go/linux-x86/src/database/sql/
sql.go 282 // row. In such a case, QueryRow returns a placeholder *Row value that
    [all...]
  /developers/build/prebuilts/androidtv/leanback/app/src/main/java/com/example/android/tvleanback/ui/
PlaybackOverlayFragment.java 47 import android.support.v17.leanback.widget.Row;
151 RowPresenter.ViewHolder rowViewHolder, Row row) {
152 Log.i(TAG, "onItemSelected: " + item + " row " + row);
485 RowPresenter.ViewHolder rowViewHolder, Row row) {
MovieDetailsFragment.java 36 import android.support.v17.leanback.widget.Row;
182 final DetailsOverviewRow row = new DetailsOverviewRow(mSelectedMovie); local
183 row.setImageDrawable(getResources().getDrawable(R.drawable.default_background));
198 row.setImageDrawable(resource);
203 row.addAction(new Action(ACTION_WATCH_TRAILER, getResources().getString(
205 row.addAction(new Action(ACTION_RENT, getResources().getString(R.string.rent_1),
207 row.addAction(new Action(ACTION_BUY, getResources().getString(R.string.buy_1),
210 mAdapter.add(row);
263 RowPresenter.ViewHolder rowViewHolder, Row row) {
    [all...]
  /device/linaro/bootloader/edk2/ShellPkg/Include/Library/
ShellLib.h     [all...]
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Universal/BdsDxe/BootMaint/
UpdatePage.c 774 UINTN Row;
797 Status = ConOut->QueryMode (ConOut, Mode, &Col, &Row);
823 Status = ConOut->QueryMode (ConOut, Mode, &Col, &Row);
829 // Build mode string Column x Row
835 UnicodeValueToString (PStr , 0, Row, 0);
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/BootMaintenanceManagerLib/
UpdatePage.c 808 UINTN Row;
831 Status = ConOut->QueryMode (ConOut, Mode, &Col, &Row);
857 Status = ConOut->QueryMode (ConOut, Mode, &Col, &Row);
863 // Build mode string Column x Row
869 UnicodeValueToString (PStr , 0, Row, 0);
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/DisplayEngineDxe/
FormDisplay.h 245 UINTN Row;

Completed in 1767 milliseconds

1 2 3 4 5 6 7 891011>>