/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...] |
/packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/ |
MockSuggestionProviderCursor.java | 28 private final ArrayList<Row> mRows; 32 mRows = new ArrayList<Row>(); 35 public Row addRow(Object... values) { 36 Row row = new Row(values); local 37 mRows.add(row); 38 return row; 90 private class Row { 92 public Row(Object... values) [all...] |
/external/skia/gpu/src/ |
GrRectanizer.cpp | 45 struct Row { 54 Row fRows[16]; 68 void initRow(Row* row, int rowHeight) { 69 row->fLoc.set(0, fNextStripY); 70 row->fRowHeight = rowHeight; 84 We use bsearch, but there may be more than one row with the same height, 93 Row* row = &fRows[HeightToRowIndex(height)]; local 94 GrAssert(row->fRowHeight == 0 || row->fRowHeight == height) [all...] |
GrRectanizer_fifo.cpp | 45 struct Row { 54 Row fRows[16]; 68 void initRow(Row* row, int rowHeight) { 69 row->fLoc.set(0, fNextStripY); 70 row->fRowHeight = rowHeight; 84 We use bsearch, but there may be more than one row with the same height, 93 Row* row = &fRows[HeightToRowIndex(height)]; local 94 GrAssert(row->fRowHeight == 0 || row->fRowHeight == height) [all...] |
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/ |
KeyboardBuilder.java | 50 * >Row row_attributes*< 51 * >!-- Row Content --< 56 * >/Row< 73 * >Row row_attributes*< 75 * >/Row< 116 private static final String TAG_ROW = "Row"; 135 private Row mCurrentRow = null; 142 * Container for keys in the keyboard. All keys in a row are at the same Y-coordinate. 143 * Some of the key size defaults can be overridden per row from what the {@link Keyboard} 146 public static class Row { 401 Row row = parseRowAttributes(parser); local 538 parseMerge(mResources.getLayout(keyboardLayout), row, skip); local [all...] |
/external/skia/src/core/ |
SkRegion_rects.cpp | 63 struct Row { 69 SkTDArray<Row> fRows; 88 SkRegion::RunType* row = (SkRegion::RunType*)fAlloc.allocThrow(size); 89 SkRegion::RunType* rowHead = row; 94 // record the L R values for this row 101 *row++ = edge->fX; 115 *row++ = currR; 116 *row++ = edge->fX; 124 *row++ = currR; 127 int rowCount = row - rowHead [all...] |
/packages/apps/Mms/src/com/android/mms/ |
SuggestionsProvider.java | 94 ArrayList<Row> mRows = new ArrayList<Row>(); 116 private class Row { 120 public Row(int row, String snippet) { 122 mRowNumber = row; 144 mRows.add(new Row(i, snippet)); 211 * a "word" by taking the substring of the full row text in the words table 299 Row row = mRows.get(mCurrentRow) local [all...] |
/development/samples/SoftKeyboard/src/com/example/android/softkeyboard/ |
LatinKeyboard.java | 41 protected Key createKeyFromXml(Resources res, Row parent, int x, int y, 96 public LatinKey(Resources res, Keyboard.Row parent, int x, int y, XmlResourceParser parser) {
|
/external/webkit/Source/WebCore/rendering/ |
RenderTableSection.h | 48 void addCell(RenderTableCell*, RenderTableRow* row); 76 typedef Vector<CellStruct> Row; 79 Row* row; member in struct:WebCore::RenderTableSection::RowStruct 85 CellStruct& cellAt(int row, int col) { return (*m_grid[row].row)[col]; } 86 const CellStruct& cellAt(int row, int col) const { return (*m_grid[row].row)[col]; [all...] |
RenderTableSection.cpp | 51 static inline void setRowLogicalHeightToRowStyleLogicalHeightIfNotRelative(RenderTableSection::RowStruct* row) 53 ASSERT(row && row->rowRenderer); 54 row->logicalHeight = row->rowRenderer->style()->logicalHeight(); 55 if (row->logicalHeight.isRelative()) 56 row->logicalHeight = Length(); 110 // If beforeChild is inside an anonymous cell/row, insert into the cell or into 111 // the anonymous row containing it, if there is one. 120 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 1006 RenderTableRow* row = toRenderTableRow(cell->parent()); local [all...] |
/frameworks/base/core/java/android/inputmethodservice/ |
Keyboard.java | 48 * <Row android:keyWidth="32px" > 51 * </Row> 66 private static final String TAG_ROW = "Row"; 147 private ArrayList<Row> rows = new ArrayList<Row>(); 150 * Container for keys in the keyboard. All keys in a row are at the same Y-coordinate. 151 * Some of the key size defaults can be overridden per row from what the {@link Keyboard} 160 public static class Row { 161 /** Default width of a key in this row. */ 163 /** Default height of a key in this row. * 581 Row row = new Row(this); local 616 Row row = rows.get(rowIndex); local 783 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/clang/tools/scan-build/ |
scan-build | 301 my $Row = { 311 push @$Stats, $Row; 442 foreach my $Row (@$Stats) { 443 $FilesHash->{$Row->{Filename}} = 1; 444 $TotalBlocks += $Row->{Total}; 445 $UnreachedBlocks += $Row->{Unreachable}; 446 $BlockAborted++ if $Row->{Aborted} eq 'yes'; 447 $WorkListAborted++ if $Row->{Empty} eq 'no'; 448 $Aborted++ if $Row->{Aborted} eq 'yes' || $Row->{Empty} eq 'no' [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 | 88 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 | 79 /** vertical height of drawn blocks in each row */ 86 /** total vertical space for row */ 93 /** start of first row */ 130 public static interface Row { 136 Row row; field in class:TimeLineView.Record 139 public Record(Row row, Block block) { 140 this.row = row; 423 Row row = rec.row; local [all...] |
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/ |
Key.java | 204 * @param row the row that this key belongs to. row's x-coordinate will be the right edge of 209 public Key(Resources res, KeyboardParams params, KeyboardBuilder.Row row, 212 final int keyHeight = row.mRowHeight; 229 final float keyXPos = row.getKeyX(keyAttr); 230 final float keyWidth = row.getKeyWidth(keyAttr, keyXPos); 231 final int keyYPos = row.getKeyY(); 239 // Update row to have current x coordinate [all...] |
/external/chromium/chrome/browser/resources/keyboard/ |
main.js | 81 * Set the position, a.k.a. row, of this key. 421 * @param {number} position The position of the row (0-3). 422 * @param {Array.<BaseKey>} keys The keys in the row. 425 function Row(position, keys) { 432 Row.prototype = { 434 * Get the total aspect ratio of the row. 446 * Create the DOM elements for the row. 447 * @return {Element} The top-level DOM Element for the row. 451 this.element_.className = 'row'; 492 * Resizes all keys in the row according to the global size [all...] |
/external/opencv/cxcore/include/ |
cvwimage.h | 64 // We use the convention (c,r) to refer to column c and row r with (0,0) being 77 // *im(2, 3) = 15; // Modify the element at column 2, row 3 80 // // Copy the second row into the first. This can be done with no memory 88 // float* row = im->Row(r); 90 // for (int ch = 0; ch < im->Channels(); ++ch, ++row) { 91 // *row = uchar(rand() & 255); 209 inline const T* Row(int r) const { 213 inline T* Row(int r) {
|
/external/emma/lib/ |
emma.jar | |
/prebuilt/sdk/14/ |
android.jar | |