/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/clang/tools/libclang/ |
CXSourceLocation.cpp | 124 unsigned column) { 132 SourceLocation SLoc = CXXUnit->getLocation(File, line, column); 136 File->getName(), line, column); 143 *Log << llvm::format("(\"%s\", %d, %d) = ", File->getName(), line, column) 174 unsigned *column, unsigned *offset) { 179 if (column) 180 *column = 0; 187 unsigned *column, unsigned *offset = 0) { 192 if (column) 193 *column = 0 [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:__anon2780 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 | 28 .search-engine-list .name-column { 36 .search-engine-list .name-column :last-child { 40 .search-engine-list .keyword-column { 46 .search-engine-list .url-column { 51 .search-engine-list .keyword-column, 52 .search-engine-list .url-column { 56 .search-engine-list .default .name-column, 57 .search-engine-list .default .keyword-column { 62 .search-engine-list .url-column { 67 .search-engine-list .url-column :first-child [all...] |
/external/chromium_org/ui/views/controls/table/ |
table_utils.cc | 20 const ui::TableColumn& column, 23 if (!column.title.empty()) 24 width = header_font.GetStringWidth(column.title) + header_padding; 28 content_font.GetStringWidth(model->GetText(i, column.id)); 47 const ui::TableColumn& column(columns[i]); 48 if (column.width <= 0) { 49 if (column.percent > 0) { 50 total_percent += column.percent; 52 content_widths[i] = header_font.GetStringWidth(column.title) + padding + 56 header_padding, column, model) 70 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/libdw/ |
dwarf_getsrc_file.c | 1 /* Find line information for given file/line/column triple. 63 dwarf_getsrc_file (Dwarf *dbg, const char *fname, int lineno, int column, 94 file and line/column number. If any of the numbers is zero, 121 /* See whether line and possibly column match. */ 124 || (column != 0 && column > line->column))) 137 || (column != 0 138 && (match[inner]->column != line->column [all...] |
/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...] |
/frameworks/base/media/java/android/mtp/ |
MtpPropertyGroup.java | 41 // column index for our query 42 int column; field in class:MtpPropertyGroup.Property 44 Property(int code, int type, int column) { 47 this.column = column; 93 String column = null; local 98 column = Files.FileColumns.STORAGE_ID; 102 column = Files.FileColumns.FORMAT; 110 column = Files.FileColumns.SIZE; 114 column = Files.FileColumns.DATA 349 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/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
DOMSyntaxHighlighter.js | 61 var column = 0; 63 var newColumn = this._tokenizer.nextToken(column); 66 if (column > plainTextStart) { 67 var plainText = line.substring(plainTextStart, column); 70 var token = line.substring(column, newColumn); 74 column = newColumn; 75 } while (column < line.length)
|
/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/dexlib/src/main/java/org/jf/dexlib/Util/ |
IndentingWriter.java | 47 /** >= 0; current output column (zero-based) */ 48 private int column; field in class:IndentingWriter 113 if ((column == width) && (c != '\n')) { 115 column = 0; 122 if (column == 0) { 131 column = indent; 140 column++; 173 column = 0;
|
/external/chromium_org/chrome/browser/history/ |
download_database.cc | 72 // Binds/reads the given file path to the given column of the given statement. 211 std::string add_col = "ALTER TABLE downloads ADD COLUMN " + name + " " + type; 226 // provides no way to rename or delete a column. 340 int column = 0; local 345 int64 signed_id = statement_main.ColumnInt64(column++); 347 info->current_path = ColumnFilePath(statement_main, column++); 348 info->target_path = ColumnFilePath(statement_main, column++); 350 statement_main.ColumnInt64(column++)); 351 info->received_bytes = statement_main.ColumnInt64(column++); 352 info->total_bytes = statement_main.ColumnInt64(column++) 400 int column = 0; local 473 int column = 0; local 531 int column = 0; local [all...] |
/external/clang/bindings/python/tests/cindex/ |
test_location.py | 10 def assert_location(loc, line, column, offset): 12 assert loc.column == column 23 assert_location(one.location,line=1,column=5,offset=4) 24 assert_location(two.location,line=2,column=5,offset=13) 34 assert_location(one.location,line=2,column=5,offset=5) 35 assert_location(two.location,line=3,column=5,offset=14) 37 # adding a space should affect column on first line only 42 assert_location(one.location,line=1,column=6,offset=5) 43 assert_location(two.location,line=2,column=5,offset=14 [all...] |