/external/libvpx/vp8/common/ |
mv.h | 17 short row; member in struct:__anon8450
|
/external/v8/tools/ |
process-heap-prof.py | 64 for row in logreader: 65 if row[0] == 'heap-sample-begin' and row[1] == 'Heap': 66 sample_time = float(row[3])/1000.0 72 elif row[0] == 'heap-sample-end' and row[1] == 'Heap': 75 elif row[0] == itemname and sampling: 76 print(row[1]), 78 print('%d' % (int(row[2]))), 80 print('%d' % (int(row[3]))) [all...] |
/frameworks/base/core/tests/coretests/src/android/widget/focus/ |
FocusChangeWithInterestingRectHintTest.java | 37 * when taking focus to best select the internal row to show as selected. 73 for (int row = 0; row < numRows; row++) { 75 if ((row % 2) == 0) { 76 assertEquals("row " + row + ": should be at left column", 77 row, mLeftColumn.getSelectedRow()); 80 assertTrue("row " + row + ": should be at middle column" [all...] |
/external/skia/src/gpu/ |
GrRectanizer.cpp | 38 struct Row { 47 Row fRows[16]; 61 void initRow(Row* row, int rowHeight) { 62 row->fLoc.set(0, fNextStripY); 63 row->fRowHeight = rowHeight; 77 We use bsearch, but there may be more than one row with the same height, 86 Row* row = &fRows[HeightToRowIndex(height)]; local 87 GrAssert(row->fRowHeight == 0 || row->fRowHeight == height) [all...] |
GrRectanizer_fifo.cpp | 38 struct Row { 47 Row fRows[16]; 61 void initRow(Row* row, int rowHeight) { 62 row->fLoc.set(0, fNextStripY); 63 row->fRowHeight = rowHeight; 77 We use bsearch, but there may be more than one row with the same height, 86 Row* row = &fRows[HeightToRowIndex(height)]; local 87 GrAssert(row->fRowHeight == 0 || row->fRowHeight == height) [all...] |
/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/chromium/chrome/browser/ui/views/ |
database_open_info_view.cc | 35 int row = 0; local 36 SetValue(row++, url); 37 SetValue(row++, database_name); 38 SetValue(row++, display_name); 39 SetValue(row++, size);
|
appcache_info_view.cc | 35 int row = 0; local 36 SetValue(row++, manifest_url); 37 SetValue(row++, size); 38 SetValue(row++, creation_date); 39 SetValue(row++, last_access_date);
|
/libcore/luni/src/main/native/ |
libcore_icu_TimeZones.cpp | 136 TimeZoneNames row; local 141 row.tz = NULL; 142 row.longStd = row.shortStd = row.longDst = row.shortDst = utc; 143 table.push_back(row); 148 row.tz = TimeZone::createTimeZone(id); 149 longFormat.setTimeZone(*row.tz); 150 shortFormat.setTimeZone(*row.tz) [all...] |
/frameworks/testing/uiautomator/library/src/com/android/uiautomator/core/ |
UiCollection.java | 52 UiObject row = getChildByInstance(childPattern, x); local 53 String nodeDesc = row.getContentDescription(); 55 return row; 57 UiObject item = row.getChild(new UiSelector().descriptionContains(text)); 59 return row; 103 UiObject row = getChildByInstance(childPattern, x); local 104 String nodeText = row.getText(); 106 return row; 108 UiObject item = row.getChild(new UiSelector().text(text)); 110 return row; [all...] |
/frameworks/base/core/java/android/database/ |
CursorWindow.java | 74 private static native int nativeGetType(int windowPtr, int row, int column); 75 private static native byte[] nativeGetBlob(int windowPtr, int row, int column); 76 private static native String nativeGetString(int windowPtr, int row, int column); 77 private static native long nativeGetLong(int windowPtr, int row, int column); 78 private static native double nativeGetDouble(int windowPtr, int row, int column); 79 private static native void nativeCopyStringToBuffer(int windowPtr, int row, int column, 82 private static native boolean nativePutBlob(int windowPtr, byte[] value, int row, int column); 83 private static native boolean nativePutString(int windowPtr, String value, int row, int column); 84 private static native boolean nativePutLong(int windowPtr, long value, int row, int column); 85 private static native boolean nativePutDouble(int windowPtr, double value, int row, int column) [all...] |
/frameworks/rs/ |
rsMatrix2x2.h | 28 inline float get(uint32_t row, uint32_t col) const { 29 return m[row*2 + col]; 32 inline void set(uint32_t row, uint32_t col, float v) { 33 m[row*2 + col] = v;
|
rsMatrix3x3.h | 28 inline float get(uint32_t row, uint32_t col) const { 29 return m[row*3 + col]; 32 inline void set(uint32_t row, uint32_t col, float v) { 33 m[row*3 + col] = v;
|
/frameworks/base/core/java/android/text/ |
PackedIntVector.java | 55 * Returns the value at the specified row and column. 57 * @param row the index of the row to return. 62 * @throws IndexOutOfBoundsException if the row is out of range 63 * (row < 0 || row >= size()) or the column is out of range 66 public int getValue(int row, int column) { 69 if (((row | column) < 0) || (row >= size()) || (column >= columns)) { 70 throw new IndexOutOfBoundsException(row + ", " + column) [all...] |
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
NotificationData.java | 38 public View row; // the outer expanded view field in class:NotificationData.Entry 51 writeBooleanTag(row, R.id.expandable_tag, expandedLarge != null); 60 return NotificationData.getIsExpandable(row); 66 return NotificationData.getUserExpanded(row); 72 return NotificationData.setUserExpanded(row, userExpanded); 78 return NotificationData.getUserLocked(row); 84 return NotificationData.setUserLocked(row, userLocked); 129 public int add(IBinder key, StatusBarNotification notification, View row, View content, 134 entry.row = row; [all...] |
/build/tools/ |
compare_fileslist.py | 20 def IsDifferent(row): 22 for v in row: 48 row = [fn] 51 row.append(sizes[i]) 53 row.append(None) 54 rows.append(row) 89 for row in rows: 91 for sz in row[1:]: 94 elif IsDifferent(row[1:]): 98 print " <td class='fn'>%s</td>" % cgi.escape(row[0] [all...] |
fileslist.py | 33 row = ( 37 output.append(row) 41 for row in output: 42 print "%12d %s" % row
|
/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...] |
/frameworks/base/core/java/android/util/ |
MonthDisplayHelper.java | 23 * 6 row calendar grid format. 111 * @param row Which row (0-5). 115 public int[] getDigitsForRow(int row) { 116 if (row < 0 || row > 5) { 117 throw new IllegalArgumentException("row " + row 123 result[column] = getDayAt(row, column); 130 * @param row The row, 0-5, starting from the top [all...] |
/external/webkit/Source/WebCore/html/ |
HTMLTableRowElement.cpp | 66 // To match Firefox, the row indices work like this: 69 // Rows from other <thead> and <tfoot> elements don't get row indices at all. 74 for (Node *row = head->firstChild(); row; row = row->nextSibling()) { 75 if (row == this) 77 if (row->hasTagName(trTag)) 85 for (Node* row = section->firstChild(); row; row = row->nextSibling()) [all...] |
/external/icu4c/common/ |
propsvec.c | 32 int32_t prevRow; /* search optimization: remember last row seen */ 43 uint32_t *v, *row; local 69 /* set the all-Unicode row and the special-value rows */ 70 row=pv->v; 71 uprv_memset(row, 0, pv->rows*columns*4); 72 row[0]=0; 73 row[1]=0x110000; 74 row+=columns; 76 row[0]=cp; 77 row[1]=cp+1 93 uint32_t *row; local 278 uint32_t *row; local 292 uint32_t *row; local 334 uint32_t *row; local [all...] |
/external/qemu/distrib/sdl-1.2.12/src/video/maccommon/ |
SDL_macmouse.c | 56 int row, bytes; local 74 for ( row=0; row<h; ++row ) { 75 SDL_memcpy(&cursor->curs.data[row], data, bytes); 78 for ( row=0; row<h; ++row ) { 79 SDL_memcpy(&cursor->curs.mask[row], mask, bytes);
|
/external/markdown/markdown/extensions/ |
tables.py | 55 for row in rows: 56 self._build_row(row, tbody, align, border) 58 def _build_row(self, row, parent, align, border): 59 """ Given a row of text, build table cells. """ 64 cells = self._split_row(row, border) 65 # We use align here rather than cells to ensure every row 76 def _split_row(self, row, border): 77 """ split a row of text into list of cells. """ 79 if row.startswith('|'): 80 row = row[1: [all...] |
/external/chromium/chrome/browser/ |
possible_url_model.h | 36 const GURL& GetURL(int row); 37 const std::wstring& GetTitle(int row); 44 virtual string16 GetText(int row, int col_id) OVERRIDE; 45 virtual SkBitmap GetIcon(int row) OVERRIDE;
|