HomeSort by relevance Sort by last modified time
    Searched refs:Row (Results 1 - 22 of 22) sorted by null

  /external/emma/core/java12/com/vladium/emma/report/html/doc/
HTMLTable.java 56 final Row row = new Row (true); local
57 add (row);
59 return row;
64 final Row row = new Row (false); local
65 add (row);
67 return row;
    [all...]
  /development/samples/SoftKeyboard/src/com/example/android/softkeyboard/
LatinKeyboard.java 24 import android.inputmethodservice.Keyboard.Row;
41 protected Key createKeyFromXml(Resources res, Row parent, int x, int y,
90 public LatinKey(Resources res, Keyboard.Row parent, int x, int y, XmlResourceParser parser) {
  /packages/apps/Mms/src/com/android/mms/
SuggestionsProvider.java 94 ArrayList<Row> mRows = new ArrayList<Row>();
114 private class Row {
115 public Row(int row, String text, int startOffset, int endOffset) {
117 mRowNumber = row;
155 mRows.add(new Row(i, message, startOffset, endOffset));
221 * a "word" by taking the substring of the full row text in the words table
304 Row row = mRows.get(mCurrentRow) local
    [all...]
  /external/webkit/WebCore/rendering/
RenderTableSection.h 48 void addCell(RenderTableCell*, RenderTableRow* row);
61 typedef Vector<CellStruct> Row;
64 Row* row; member in struct:WebCore::RenderTableSection::RowStruct
70 CellStruct& cellAt(int row, int col) { return (*m_grid[row].row)[col]; }
71 const CellStruct& cellAt(int row, int col) const { return (*m_grid[row].row)[col];
    [all...]
RenderTableSection.cpp 49 static inline void setRowHeightToRowStyleHeightIfNotRelative(RenderTableSection::RowStruct* row)
51 ASSERT(row && row->rowRenderer);
52 row->height = row->rowRenderer->style()->height();
53 if (row->height.isRelative())
54 row->height = Length();
105 // If beforeChild is inside an anonymous cell/row, insert into the cell or into
106 // the anonymous row containing it, if there is one.
115 RenderObject* row = new (renderArena()) RenderTableRow(document() /* anonymous table row */) local
276 Row& row = *m_grid[i].row; local
360 Row* row = m_grid[r].row; local
1141 RenderTableRow* row = toRenderTableRow(cell->parent()); local
    [all...]
  /frameworks/base/core/java/android/inputmethodservice/
Keyboard.java 48 * &lt;Row android:keyWidth="32px" &gt;
51 * &lt;/Row&gt;
66 private static final String TAG_ROW = "Row";
148 * Container for keys in the keyboard. All keys in a row are at the same Y-coordinate.
149 * Some of the key size defaults can be overridden per row from what the {@link Keyboard}
158 public static class Row {
159 /** Default width of a key in this row. */
161 /** Default height of a key in this row. */
163 /** Default horizontal gap between keys in this row. */
165 /** Vertical gap following this row. *
553 Row row = new Row(this); local
713 int row = 0; local
    [all...]
  /external/tinyxml/
xmltest.cpp 356 XmlTest( "Error row", doc.ErrorRow(), 3 );
358 //printf( "error=%d id='%s' row %d col%d\n", (int) doc.Error(), doc.ErrorDesc(), doc.ErrorRow()+1, doc.ErrorCol() + 1 );
397 XmlTest( "Location tracking: Declaration row", declaration->Row(), 1 );
399 XmlTest( "Location tracking: room row", room->Row(), 1 );
401 XmlTest( "Location tracking: doors row", doors->Row(), 1 );
403 XmlTest( "Location tracking: Comment row", comment->Row(), 2 )
    [all...]
tinyxml.h 104 void Clear() { row = col = -1; }
106 int row; // 0 based. member in struct:TiXmlCursor
181 The row and column are 1-based. (That is the first row and first column is
183 a row and column value.
185 Generally, the row and column value will be set when the TiXmlDocument::Load(),
193 There is a minor performance cost to computing the row and column. Computation
198 int Row() const { return location.row + 1; }
199 int Column() const { return location.col + 1; } ///< See Row()
    [all...]
  /external/chromium/third_party/icu/source/common/
uresdata.c 520 * row of a temporary array
526 typedef struct Row {
528 } Row;
533 return (int32_t)uprv_strcmp(keyChars+((const Row *)left)->keyIndex,
534 keyChars+((const Row *)right)->keyIndex);
539 Row *rows;
851 uprv_sortArray(pTempTable->rows, count, sizeof(Row),
965 Row rows[STACK_ROW_CAPACITY];
    [all...]
  /external/icu4c/common/
uresdata.c 630 * row of a temporary array
636 typedef struct Row {
638 } Row;
643 return (int32_t)uprv_strcmp(keyChars+((const Row *)left)->keyIndex,
644 keyChars+((const Row *)right)->keyIndex);
649 Row *rows;
842 uprv_sortArray(pTempTable->rows, count, sizeof(Row),
956 Row rows[STACK_ROW_CAPACITY];
    [all...]
  /external/sonivox/jet_tools/JetCreator/
JetDialogs.py 46 for Lbl, Text, Row, Col, Len, Min, Max, Id, Lst, Fct, Enabled, HelpText in ctrls:
50 self.ctrls[Text] = wx.Button(panel, Id, Lbl, wx.Point(Col, Row), size=Len)
58 self.ctrls[Text] = wx.TextCtrl(panel, Id, "", wx.Point(Col, Row + LBL_OFFSET +3), wx.Size(Len,-1))
60 self.ctrls[Text] = JetSpinOneBased(panel, Id, "", wx.Point(Col, Row + LBL_OFFSET), wx.Size(Len,-1), min=Min, max=Max)
62 self.ctrls[Text] = JetSpin(panel, Id, "", wx.Point(Col, Row + LBL_OFFSET), wx.Size(Len,-1), min=Min, max=Max)
64 self.ctrls[Text] = wx.ComboBox(panel, Id, "", wx.Point(Col, Row + LBL_OFFSET), wx.Size(Len,-1), Lst, wx.CB_DROPDOWN | wx.CB_READONLY )
69 self.ctrls[Text] = TimeCtrl(panel, pos=(Col, Row + LBL_OFFSET), ctlName=Text)
71 self.ctrls[Text] = JetFileCombo(panel, pos=(Col, Row + LBL_OFFSET), size=wx.Size(Len,-1), title=Lbl, spec=Lst, id=Id)
73 self.ctrls[Text] = JetFileText(panel, pos=(Col, Row + LBL_OFFSET), size=wx.Size(Len,-1), title=Lbl, spec=Lst, id=Id)
75 self.ctrls[Text] = wx.StaticBox(parent=panel, id=wx.ID_ANY, label=Lbl, pos=(Row, Col), size=Len)
    [all...]
  /external/libvpx/vp8/encoder/x86/
variance_impl_mmx.asm 96 ; Row 1
121 ; Row 2
144 ; Row 3
167 ; Row 4
190 ; Row 5
214 ; Row 6
237 ; Row 7
260 ; Row 8
344 ; Row 1
358 ; Row
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/
PasswordEntryKeyboard.java 91 protected Key createKeyFromXml(Resources res, Row parent, int x, int y,
223 public LatinKey(Resources res, Keyboard.Row parent, int x, int y,
  /sdk/traceview/src/com/android/traceview/
ThreadData.java 22 class ThreadData implements TimeLineView.Row {
TimeLineView.java 80 /** vertical height of drawn blocks in each row */
87 /** total vertical space for row */
94 /** start of first row */
122 public static interface Row {
128 Row row; field in class:TimeLineView.Record
131 public Record(Row row, Block block) {
132 this.row = row;
401 Row row = rec.row; local
    [all...]
  /external/clearsilver/python/examples/base/
hdfhelp.py 16 # row = tbl.fetchRow( ('primary_key', value) )
17 # row.hdfExport("CGI.row", hdf_dataset)
87 class HdfRow(odb.Row):
132 for row in self:
134 n = row[export_by]
135 row.hdfExport("%s.%d" % (prefix,n),hdf_dataset,*extra,**extranamed)
odb.py 38 # # create row
43 # # fetch row (must use primary key)
47 # print "this is bad, we should have found the row"
118 return Row
352 for colname, row in dbcolumns.items():
634 # a unique row.
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
LatinKeyboard.java 168 protected Key createKeyFromXml(Resources res, Row parent, int x, int y,
    [all...]
  /external/emma/lib/
emma.jar 
  /prebuilt/sdk/4/
android.jar 
  /prebuilt/sdk/5/
android.jar 
  /prebuilt/sdk/6/
android.jar 

Completed in 1040 milliseconds