/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ |
SuggestionCursorBackedCursor.java | 31 // used by SearchDialog, expects an _id column. 109 public int getInt(int column) { 110 if (column == COLUMN_INDEX_ID) { 114 return Integer.valueOf(getString(column)); 122 public String getString(int column) { 123 if (column < COLUMNS.length) { 124 switch (column) { 152 throw new CursorIndexOutOfBoundsException("Requested column " + column 156 return getExtra(column); [all...] |
/frameworks/ex/common/java/com/android/common/content/ |
ProjectionMap.java | 32 public Builder add(String column) { 33 mMap.putColumn(column, column); 43 for (String column : columns) { 44 add(column); 73 * Returns a sorted array of all column names in the projection map. 79 private void putColumn(String alias, String column) { 80 super.put(alias, column);
|
/external/bison/examples/calc++/ |
position.hh | 68 , column (c) 80 column = c; 83 /** \name Line and Column related manipulators 88 column = 1u; 92 /// (column related) Advance to the COUNT next columns. 95 column = std::max (1u, column + count); 103 /// Current column number. 104 unsigned int column; member in class:yy::position 142 && pos1.column == pos2.colum [all...] |
/external/chromium_org/third_party/angle/src/compiler/translator/ |
VariablePacker.h | 31 unsigned makeColumnFlags(int column, int numComponentsPerRow); 32 void fillColumns(int topRow, int numRows, int column, int numComponentsPerRow); 33 bool searchColumn(int column, int numRows, int* destRow, int* destSize);
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
PhoneLookupWithStarPrefix.java | 84 for (int column = 0; column < cursor.getColumnCount(); column++) { 85 b.add(cursor.getColumnName(column), cursorValue(cursor, column)); 134 private static Object cursorValue(Cursor cursor, int column) { 135 switch(cursor.getType(column)) { 137 return cursor.getBlob(column); 139 return cursor.getInt(column); 141 return cursor.getFloat(column); [all...] |
/external/bison/src/ |
location.c | 32 INT_MAX) to COLUMN; otherwise, add mbsnwidth (BUF, BUFSIZE, 0) to 33 COLUMN. If an overflow occurs, or might occur but is undetectable, 34 return INT_MAX. Assume COLUMN is nonnegative. */ 37 add_column_width (int column, char const *buf, size_t bufsize) 40 unsigned int remaining_columns = INT_MAX - column; 51 return width <= remaining_columns ? column + width : INT_MAX; 61 int column = cur->column; local 73 column = 1; 78 column = add_column_width (column, p0, p - p0) [all...] |
location.h | 38 /* If nonnegative, the (origin-1) column just after the boundary. 40 column count. If this is INT_MAX, the column number has 45 int column; member in struct:__anon5002 55 b->column = c; 67 res = a.column - b.column; 75 return (a.column == b.column 123 /* LOC_STR must be formatted as `file:line.column', it will be modified. * [all...] |
/external/chromium_org/chrome/browser/resources/options/ |
password_manager.css | 10 #password-search-column { 16 html[dir=rtl] #password-search-column {
|
search_engine_manager.css | 27 .search-engine-list .name-column { 35 .search-engine-list .name-column :last-child { 39 .search-engine-list .keyword-column { 45 .search-engine-list .url-column { 50 .search-engine-list .keyword-column, 51 .search-engine-list .url-column { 55 .search-engine-list .default .name-column, 56 .search-engine-list .default .keyword-column { 61 .search-engine-list .url-column { 66 .search-engine-list .url-column :first-child [all...] |
/external/chromium_org/ui/views/controls/table/ |
table_utils.cc | 21 const ui::TableColumn& column, 24 if (!column.title.empty()) 25 width = gfx::GetStringWidth(column.title, header_font_list) + 30 gfx::GetStringWidth(model->GetText(i, column.id), content_font_list); 49 const ui::TableColumn& column(columns[i]); 50 if (column.width <= 0) { 51 if (column.percent > 0) { 52 total_percent += column.percent; 54 content_widths[i] = gfx::GetStringWidth(column.title, header_font_list) 58 padding, header_padding, column, 73 const ui::TableColumn& column = columns[i]; local [all...] |
/sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/model/ |
ProfilesTableModel.java | 39 public Object getValueAt(int row, int column) { 42 if (column == 0) { 56 public String getColumnName(int column) { 57 return column == 0 ? "Operation" : "Duration (ms)";
|
/external/elfutils/0.153/libdw/ |
dwarf_getsrc_file.c | 1 /* Find line information for given file/line/column triple. 64 dwarf_getsrc_file (Dwarf *dbg, const char *fname, int lineno, int column, 102 file and line/column number. If any of the numbers is zero, 129 /* See whether line and possibly column match. */ 132 || (column != 0 && column > line->column))) 145 || (column != 0 146 && (match[inner]->column != line->column [all...] |
/external/chromium_org/third_party/WebKit/Source/core/css/ |
CSSGridTemplateAreasValue.cpp | 48 static String stringForPosition(const NamedGridAreaMap& gridAreaMap, size_t row, size_t column) 62 if (column >= coordinate.columns.resolvedInitialPosition.toInt() && column <= coordinate.columns.resolvedFinalPosition.toInt() && candidates.contains(it->key)) 74 for (size_t column = 0; column < m_columnCount; ++column) { 75 builder.append(stringForPosition(m_gridAreaMap, row, column)); 76 if (column != m_columnCount - 1)
|
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/ |
Message.java | 56 public int column = -1; field in class:Message 75 public void setColumn(int column) { 76 this.column = column; 104 if (column != -1) { 105 locationST.add("column", column+1);
|
/external/javasqlite/src/main/java/SQLite/ |
TableResult.java | 45 * Column names of the result set. 48 public String column[]; field in class:TableResult 96 column = new String[0]; 108 column = coldata; 109 ncolumns = column.length; 144 sb.append(column[i] == null ? "NULL" : column[i]);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/StdSuites/ |
Table_Suite.py | 32 class column(aetools.ComponentItem): class in inherits:aetools.ComponentItem 33 """column - A column """ 36 """name - the name of the column """ 40 columns = column 60 column._superclassnames = [] 61 column._privpropdict = { 64 column._privelemdict = { 88 'ccol' : column,
|
/frameworks/base/core/java/android/database/ |
MatrixCursor.java | 37 * determines column ordering elsewhere in this cursor 55 * determines column ordering elsewhere in this cursor 62 * Gets value at the given column for the current row. 64 private Object get(int column) { 65 if (column < 0 || column >= columnCount) { 66 throw new CursorIndexOutOfBoundsException("Requested column: " 67 + column + ", # of columns: " + columnCount); 75 return data[mPos * columnCount + column]; 82 * @return builder which can be used to set the column values for the ne [all...] |
/external/chromium_org/chrome/browser/history/ |
download_database.cc | 43 // Binds/reads the given file path to the given column of the given statement. 182 std::string add_col = "ALTER TABLE downloads ADD COLUMN " + name + " " + type; 204 // provides no way to rename or delete a column. 372 int column = 0; local 377 int64 signed_id = statement_main.ColumnInt64(column++); 379 info->current_path = ColumnFilePath(statement_main, column++); 380 info->target_path = ColumnFilePath(statement_main, column++); 381 info->mime_type = statement_main.ColumnString(column++); 382 info->original_mime_type = statement_main.ColumnString(column++); 384 statement_main.ColumnInt64(column++)) 434 int column = 0; local 509 int column = 0; local 571 int column = 0; local [all...] |
/frameworks/base/media/java/android/mtp/ |
MtpPropertyGroup.java | 40 // column index for our query 41 int column; field in class:MtpPropertyGroup.Property 43 Property(int code, int type, int column) { 46 this.column = column; 92 String column = null; local 97 column = Files.FileColumns.STORAGE_ID; 101 column = Files.FileColumns.FORMAT; 109 column = Files.FileColumns.SIZE; 113 column = Files.FileColumns.DATA 359 int column = property.column; local [all...] |
/cts/apps/CtsVerifier/lib/colorchecker/ |
imagetesthandler.cpp | 61 void ImageTestHandler::drawPoint(int row, int column, const Vec3i &color) { 62 if ((row >= 0) && (column >= 0) && 63 (column < mDebugWidth) && (row < mDebugHeight)) { 64 mDebugOutput[(row*mDebugWidth + column) * 4] = color.r(); 65 mDebugOutput[(row*mDebugWidth + column) * 4+1] = color.g(); 66 mDebugOutput[(row*mDebugWidth + column) * 4+2] = color.b(); 67 mDebugOutput[(row*mDebugWidth + column) * 4+3] = 255;
|
/cts/tests/tests/database/src/android/database/cts/ |
AbstractCursor_SelfContentObserverTest.java | 69 public double getDouble(int column) { 74 public float getFloat(int column) { 79 public int getInt(int column) { 84 public long getLong(int column) { 89 public short getShort(int column) { 94 public String getString(int column) { 99 public boolean isNull(int column) {
|
/dalvik/dexgen/src/com/android/dexgen/util/ |
IndentingWriter.java | 39 /** {@code >= 0;} current output column (zero-based) */ 40 private int column; field in class:IndentingWriter 105 if ((column == width) && (c != '\n')) { 107 column = 0; 114 if (column == 0) { 123 column = indent; 132 column++; 165 column = 0;
|
/dalvik/dx/src/com/android/dx/util/ |
IndentingWriter.java | 39 /** {@code >= 0;} current output column (zero-based) */ 40 private int column; field in class:IndentingWriter 105 if ((column == width) && (c != '\n')) { 107 column = 0; 114 if (column == 0) { 123 column = indent; 132 column++; 165 column = 0;
|
/external/dexmaker/src/dx/java/com/android/dx/util/ |
IndentingWriter.java | 39 /** {@code >= 0;} current output column (zero-based) */ 40 private int column; field in class:IndentingWriter 105 if ((column == width) && (c != '\n')) { 107 column = 0; 114 if (column == 0) { 123 column = indent; 132 column++; 165 column = 0;
|
/external/smali/util/src/main/java/org/jf/util/ |
WrappedIndentingWriter.java | 54 /** >= 0; current output column (zero-based) */ 55 private int column; field in class:WrappedIndentingWriter 120 if ((column == width) && (c != '\n')) { 122 column = 0; 129 if (column == 0) { 138 column = indent; 147 column++; 180 column = 0;
|