HomeSort by relevance Sort by last modified time
    Searched full:row (Results 301 - 325 of 4359) sorted by null

<<11121314151617181920>>

  /frameworks/base/core/res/res/xml/
password_kbd_symbols.xml 28 <Row android:rowEdgeFlags="top">
39 </Row>
41 <Row>
58 </Row>
60 <Row>
75 </Row>
77 <Row android:rowEdgeFlags="bottom">
89 </Row>
password_kbd_symbols_shift.xml 28 <Row android:rowEdgeFlags="top">
39 </Row>
41 <Row>
52 </Row>
54 <Row>
71 </Row>
73 <Row android:rowEdgeFlags="bottom">
85 </Row>
password_kbd_extension.xml 28 <Row android:rowEdgeFlags="top">
40 </Row>
42 <Row android:rowEdgeFlags="bottom">
53 </Row>
  /frameworks/base/core/res/res/xml-land/
password_kbd_qwerty.xml 28 <Row>
39 </Row>
41 <Row>
51 </Row>
53 <Row>
69 </Row>
71 <Row android:keyboardMode="@+id/mode_normal" android:rowEdgeFlags="bottom">
84 </Row>
password_kbd_qwerty_shifted.xml 28 <Row>
39 </Row>
41 <Row>
52 </Row>
54 <Row>
70 </Row>
72 <Row android:keyboardMode="@+id/mode_normal" android:rowEdgeFlags="bottom">
85 </Row>
  /frameworks/base/core/res/res/xml-xlarge/
password_kbd_qwerty.xml 28 <Row android:keyWidth="8.272%p">
46 </Row>
48 <Row android:keyWidth="8.157%p">
66 </Row>
68 <Row android:keyWidth="8.042%p">
90 </Row>
92 <Row android:keyWidth="8.042%p"
99 </Row>
password_kbd_qwerty_shifted.xml 28 <Row android:keyWidth="8.272%p">
46 </Row>
48 <Row android:keyWidth="8.157%p">
66 </Row>
68 <Row android:keyWidth="8.042%p">
90 </Row>
92 <Row android:keyWidth="8.042%p"
99 </Row>
password_kbd_symbols.xml 28 <Row android:keyWidth="8.272%p">
46 </Row>
48 <Row android:keyWidth="8.157%p">
66 </Row>
68 <Row android:keyWidth="8.042%p">
90 </Row>
92 <Row android:keyWidth="8.042%p">
99 </Row>
  /packages/inputmethods/LatinIME/java/res/xml/
rows_number_normal.xml 24 <Row>
40 </Row>
41 <Row>
77 </Row>
78 <Row>
91 </Row>
92 <Row>
132 </Row>
  /packages/inputmethods/LatinIME/java/res/xml-sw600dp/
rows_phone.xml 28 <Row>
54 </Row>
55 <Row>
81 </Row>
82 <Row>
107 </Row>
108 <Row>
121 </Row>
  /packages/inputmethods/OpenWnn/res/xml/
keyboard_12key_phone.xml 25 <Row>
33 </Row>
35 <Row>
41 </Row>
43 <Row>
49 </Row>
51 <Row android:rowEdgeFlags="bottom">
59 </Row>
  /packages/inputmethods/OpenWnn/res/xml-sw768dp/
keyboard_12key_phone.xml 26 <Row>
35 </Row>
37 <Row>
43 </Row>
45 <Row>
51 </Row>
53 <Row android:rowEdgeFlags="bottom">
61 </Row>
  /packages/inputmethods/PinyinIME/res/xml/
skb_smiley.xml 26 <row>
41 </row>
43 <row>
58 </row>
60 <row>
74 </row>
76 <row width="14.696%p" key_type="1">
83 </row>
skb_sym1.xml 25 <row>
28 </row>
30 <row>
44 </row>
46 <row width="10.205%p">
70 </row>
72 <row width="14.696%p" key_type="1">
86 </row>
  /external/eigen/Eigen/src/Core/
SelfAdjointView.h 83 inline Scalar coeff(Index row, Index col) const
85 Base::check_coordinates_internal(row, col);
86 return m_matrix.coeff(row, col);
92 inline Scalar& coeffRef(Index row, Index col)
94 Base::check_coordinates_internal(row, col);
95 return m_matrix.const_cast_derived().coeffRef(row, col);
209 row = (UnrollCount-1) % Derived1::RowsAtCompileTime enumerator in enum:Eigen::internal::triangular_assignment_selector::__anon20382
216 if(row == col)
217 dst.coeffRef(row, col) = real(src.coeff(row, col))
234 row = (UnrollCount-1) % Derived1::RowsAtCompileTime enumerator in enum:Eigen::internal::triangular_assignment_selector::__anon20383
    [all...]
Reverse.h 110 inline Scalar& operator()(Index row, Index col)
112 eigen_assert(row >= 0 && row < rows() && col >= 0 && col < cols());
113 return coeffRef(row, col);
116 inline Scalar& coeffRef(Index row, Index col)
118 return m_matrix.const_cast_derived().coeffRef(ReverseRow ? m_matrix.rows() - row - 1 : row,
122 inline CoeffReturnType coeff(Index row, Index col) const
124 return m_matrix.coeff(ReverseRow ? m_matrix.rows() - row - 1 : row,
    [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_mcomp.c 29 const int row_min = (mv->row >> 3) - MAX_FULL_PEL_VAL + (mv->row & 7 ? 1 : 0);
31 const int row_max = (mv->row >> 3) + MAX_FULL_PEL_VAL;
65 comp_cost[0][mv->row] + comp_cost[1][mv->col];
70 const MV diff = { mv->row - ref->row,
79 const MV diff = { mv->row - ref->row,
91 const MV diff = { mv->row - ref->row,
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/view/
TableLayout8.java 55 TableRow row = new TableRow(this); local
66 row.addView(label, new TableRow.LayoutParams(1));
67 row.addView(shortcut, new TableRow.LayoutParams());
69 table.addView(row, new TableLayout.LayoutParams());
  /external/chromium_org/cc/scheduler/
texture_uploader.cc 193 // Use 4-byte row alignment (OpenGL default) for upload performance.
207 // Strides not equal, so do a row-by-row memcpy from the
209 for (int row = 0; row < source_rect.height(); ++row)
210 memcpy(&sub_image_[upload_image_stride * row],
212 (offset.x() + (offset.y() + row) * image_rect.width())],
248 // Use 4-byte row alignment (OpenGL default) for upload performance.
276 // Strides not equal, so do a row-by-row memcpy from th
    [all...]
  /external/chromium_org/tools/perf/measurements/
loading_measurement_analyzer.py 46 for row in row_dict:
48 self._GetRank(row['url']) > options.rank_limit):
51 load_time = float(row['load_time (ms)'])
53 print 'Skipping %s due to negative load time' % row['url']
55 for key, value in row.iteritems():
64 self.avgs[key].append((value, row['url']))
66 self.maxes[key].append((value, row['url']))
68 self.totals[key].append((value, row['url']))
70 self.load_times.append((load_time, row['url']))
71 self.cpu_times.append((cpu_time, row['url'])
    [all...]
  /external/chromium_org/ui/views/controls/
prefix_selector_unittest.cc 35 virtual void SetSelectedRow(int row) OVERRIDE {
36 selected_row_ = row;
39 virtual string16 GetTextForRow(int row) OVERRIDE {
40 return rows_[row];
  /external/eigen/bench/
benchmark_suite 7 echo "Fixed size 3x3, row-major, -DNDEBUG"
9 echo "Fixed size 3x3, row-major, with asserts"
15 echo "Dynamic size 20x20, row-major, -DNDEBUG"
17 echo "Dynamic size 20x20, row-major, with asserts"
  /external/eigen/doc/examples/
Tutorial_ReductionsVisitorsBroadcasting_broadcast_simple_rowwise.cpp 15 //add v to each row of m
  /external/linux-tools-perf/util/ui/
browser.c 105 int row = 0; local
113 ui_browser__gotorc(self, row, 0);
114 self->write(self, nd, row);
115 if (++row == self->height)
120 return row;
123 bool ui_browser__is_current_entry(struct ui_browser *self, unsigned row)
125 return self->top_idx + row == self->index;
220 int row; local
224 row = self->refresh(self);
226 SLsmg_fill_region(self->y + row, self->x
316 int row = 0; local
    [all...]
  /external/llvm/lib/DebugInfo/
DWARFDebugLine.h 87 struct Row {
88 Row(bool default_is_stmt = false) { reset(default_is_stmt); }
89 /// Called after a row is appended to the matrix.
94 static bool orderByAddress(const Row& LHS, const Row& RHS) {
167 void appendRow(const DWARFDebugLine::Row &state) { Rows.push_back(state); }
177 // Returns the index of the row with file/line info for a given address,
178 // or -1 if there is no such row.
194 typedef std::vector<Row> RowVector;
202 struct State : public Row, public Sequence, public LineTable
221 unsigned row; member in struct:llvm::DWARFDebugLine::State
    [all...]

Completed in 1155 milliseconds

<<11121314151617181920>>