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

12 3 4 5 6 7 8 91011>>

  /external/libavc/common/x86/
ih264_padding_ssse3.c 97 WORD32 row; local
103 for(row = 0; row < ht; row++)
164 WORD32 row; local
169 for(row = 0; row < ht; row++)
230 WORD32 row; local
236 for(row = 0; row < ht; row++
297 WORD32 row; local
    [all...]
  /frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/
AboveShelfObserverTest.java 52 ExpandableNotificationRow row = mNotificationTestHelper.createRow(); local
53 row.setAboveShelfChangedListener(mObserver);
54 mHostLayout.addView(row);
55 row = mNotificationTestHelper.createRow();
56 row.setAboveShelfChangedListener(mObserver);
57 mHostLayout.addView(row);
63 ExpandableNotificationRow row = (ExpandableNotificationRow) mHostLayout.getChildAt(0); local
65 row.setHeadsUp(true);
71 ExpandableNotificationRow row = (ExpandableNotificationRow) mHostLayout.getChildAt(0); local
72 row.setHeadsUp(true)
80 ExpandableNotificationRow row = (ExpandableNotificationRow) mHostLayout.getChildAt(0); local
    [all...]
  /frameworks/rs/
rsMatrix2x2.h 28 inline float get(uint32_t col, uint32_t row) const {
29 return m[col*2 + row];
32 inline void set(uint32_t col, uint32_t row, float v) {
33 m[col*2 + row] = v;
rsMatrix3x3.h 28 inline float get(uint32_t col, uint32_t row) const {
29 return m[col*3 + row];
32 inline void set(uint32_t col, uint32_t row, float v) {
33 m[col*3 + row] = v;
  /cts/tools/dasm/src/java_cup/
parse_action_table.java 7 * It has one row for each state in the parse machine, and a column for
67 for (int row = 0; row < num_states(); row++)
69 for (int col = 0; col < under_state[row].size(); col++)
72 act = under_state[row].under_term[col];
112 for (int row = 0; row < num_states(); row++)
114 result += "From state #" + row + "\n"
    [all...]
parse_reduce_table.java 6 * It has one row for each state in the parse machines, and a column for
63 for (int row = 0; row < num_states(); row++)
65 result += "From state #" + row + "\n";
67 for (int col = 0; col < under_state[row].size(); col++)
70 goto_st = under_state[row].under_non_term[col];
  /external/python/cpython2/Doc/includes/sqlite3/
execsql_fetchonerow.py 16 for row in cur:
17 print '%s is %d years old.' % (row[0], row[1])
  /external/python/cpython3/Doc/includes/sqlite3/
execsql_fetchonerow.py 16 for row in cur:
17 print('%s is %d years old.' % (row[0], row[1]))
  /external/tensorflow/tensorflow/contrib/lite/toco/tensorflow_graph_matching/
cluster_utils.cc 23 void Transpose2DTensor(const float* tensor, int row, int col,
26 for (int r = 0; r < row; ++r) {
28 *(result + c * row) = *tensor++;
  /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
QRDecompositionImpl.java 100 for (int row = minor; row < m; row++) {
101 final double c = qrtMinor[row];
134 for (int row = minor; row < m; row++) {
135 alpha -= qrtCol[row] * qrtMinor[row];
140 for (int row = minor; row < m; row++)
    [all...]
  /external/chromium-trace/catapult/common/lab/
hardware.py 60 row = {
76 row[key] = value
79 row = {key.replace('_', ' '): value for key, value in row.iteritems()}
80 if 'osfamily' in row:
81 row['os family'] = row.pop('osfamily')
82 if 'product name' not in row and slave_name.startswith('slave'):
83 row['product name'] = 'Google Compute Engine'
86 writer.writerow(row)
    [all...]
  /packages/apps/Dialer/java/com/android/dialer/calllog/ui/menu/
Modules.java 43 * Configures the modules for the bottom sheet; these are the rows below the top row (primary
49 static List<HistoryItemActionModule> fromRow(Context context, CoalescedRow row) {
53 String normalizedNumber = row.number().getNormalizedNumber();
55 PhoneNumberHelper.canPlaceCallsTo(normalizedNumber, row.numberPresentation());
58 modules.addAll(createModulesForCalls(context, row, normalizedNumber));
61 context, normalizedNumber, row.numberAttributes().getIsBlocked());
78 row.number(),
79 row.numberAttributes().getName(),
80 row.numberAttributes().getLookupUri(),
81 row.numberAttributes().getIsBlocked()
    [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/native/cmds/lshal/
TextTable.cpp 36 for (const auto& row : mTable) {
37 if (!row.isRow()) {
38 out << row.line() << std::endl;
42 for (size_t i = 0; i < row.fields().size(); ++i) {
47 if (i < row.fields().size() - 1) {
50 out << row.fields()[i];
57 for (auto&& row : other.mTable) {
58 if (row.isRow()) {
59 computeWidth(row.fields());
62 mTable.emplace_back(std::move(row));
    [all...]
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/layout/expected/
AbstractKeyboardBuilder.java 24 * A keyboard consists of an array of rows, and a row consists of an array of elements. Each row
25 * may have different number of elements. A element of a keyboard can be specified by a row number
57 final E[] row = rows[rowIndex]; local
58 mRows[rowIndex] = Arrays.copyOf(row, row.length);
79 * Get the current contents of the specified row.
80 * @param row the row number to get the contents.
81 * @return the array of elements at row number <code>row</code>
    [all...]
  /external/eigen/test/
schur_real.cpp 22 for(int row = 2; row < size; ++row) {
23 for(int col = 0; col < row - 1; ++col) {
24 VERIFY(T(row,col) == Scalar(0));
30 for(int row = 1; row < size; ++row) {
31 if (T(row,row-1) != Scalar(0))
    [all...]
  /external/libjpeg-turbo/simd/
jsimd_altivec.h 40 #define TRANSPOSE(row, col) \
48 row04l = vec_mergeh(row##0, row##4); /* row04l=(00 40 01 41 02 42 03 43) */ \
49 row04h = vec_mergel(row##0, row##4); /* row04h=(04 44 05 45 06 46 07 47) */ \
50 row15l = vec_mergeh(row##1, row##5); /* row15l=(10 50 11 51 12 52 13 53) */ \
51 row15h = vec_mergel(row##1, row##5); /* row15h=(14 54 15 55 16 56 17 57) */ \
52 row26l = vec_mergeh(row##2, row##6); /* row26l=(20 60 21 61 22 62 23 63) */
    [all...]
  /external/pdfium/fxbarcode/datamatrix/
BC_DefaultPlacement.cpp 48 bool CBC_DefaultPlacement::getBit(int32_t col, int32_t row) {
49 return m_bits[row * m_numcols + col] == 1;
51 void CBC_DefaultPlacement::setBit(int32_t col, int32_t row, bool bit) {
52 m_bits[row * m_numcols + col] = bit ? (uint8_t)1 : (uint8_t)0;
54 bool CBC_DefaultPlacement::hasBit(int32_t col, int32_t row) {
55 return m_bits[row * m_numcols + col] != 2;
59 int32_t row = 4; local
62 if ((row == m_numrows) && (col == 0)) {
65 if ((row == m_numrows - 2) && (col == 0) && ((m_numcols % 4) != 0)) {
68 if ((row == m_numrows - 2) && (col == 0) && (m_numcols % 8 == 4))
    [all...]
  /external/python/cpython3/Lib/sqlite3/test/
factory.py 32 def dict_factory(cursor, row):
35 d[col[0]] = row[idx]
83 row = cur.fetchone()
84 self.assertIsInstance(row, dict)
95 self.con.row_factory = lambda cur, row: list(row)
96 row = self.con.execute("select 1, 2").fetchone()
97 self.assertIsInstance(row, list)
100 self.con.row_factory = sqlite.Row
101 row = self.con.execute("select 1 as a, 2 as b").fetchone(
    [all...]
  /external/skia/src/gpu/effects/
GrTextureStripAtlas.cpp 89 void GrTextureStripAtlas::lockRow(int row) {
90 // This should only be called on a row that is already locked.
91 SkASSERT(fRows[row].fLocks);
92 fRows[row].fLocks++;
119 // We already have the data in a row, so we can just return that row
120 AtlasRow* row = fKeyTable[index]; local
121 if (0 == row->fLocks) {
122 this->removeFromLRU(row);
124 ++row->fLocks
135 AtlasRow* row = this->getLRU(); local
207 AtlasRow* row = fLRUFront; local
    [all...]
  /external/skqp/src/gpu/effects/
GrTextureStripAtlas.cpp 89 void GrTextureStripAtlas::lockRow(int row) {
90 // This should only be called on a row that is already locked.
91 SkASSERT(fRows[row].fLocks);
92 fRows[row].fLocks++;
110 // We already have the data in a row, so we can just return that row
111 AtlasRow* row = fKeyTable[index]; local
112 if (0 == row->fLocks) {
113 this->removeFromLRU(row);
115 ++row->fLocks
126 AtlasRow* row = this->getLRU(); local
198 AtlasRow* row = fLRUFront; local
    [all...]
  /frameworks/base/core/java/android/database/
CursorWindow.java 67 private static native byte[] nativeGetBlob(long windowPtr, int row, int column);
68 private static native String nativeGetString(long windowPtr, int row, int column);
69 private static native void nativeCopyStringToBuffer(long windowPtr, int row, int column,
71 private static native boolean nativePutBlob(long windowPtr, byte[] value, int row, int column);
73 int row, int column);
90 private static native int nativeGetType(long windowPtr, int row, int column);
92 private static native long nativeGetLong(long windowPtr, int row, int column);
94 private static native double nativeGetDouble(long windowPtr, int row, int column);
97 private static native boolean nativePutLong(long windowPtr, long value, int row, int column);
99 private static native boolean nativePutDouble(long windowPtr, double value, int row, int column)
    [all...]
  /external/autotest/frontend/migrations/
022_implement_sync_count.py 22 job_hqe_count = dict((row[0], row[2]) for row in rows)
23 synch_jobs = set(row[0] for row in rows if row[1] == 2)
  /external/skia/experimental/tools/
generate-unicode-test-txt 57 row = i - (i & 63) variable
58 if last_row != row:
59 if row:
60 o.write('\n' if row % 1024 else '\n\n')
61 o.write('U+%06x ' % row)
62 last_row = row
  /external/skqp/experimental/tools/
generate-unicode-test-txt 57 row = i - (i & 63) variable
58 if last_row != row:
59 if row:
60 o.write('\n' if row % 1024 else '\n\n')
61 o.write('U+%06x ' % row)
62 last_row = row

Completed in 791 milliseconds

12 3 4 5 6 7 8 91011>>