/libcore/luni/src/main/java/java/sql/ |
ResultSetMetaData.java | 26 * Indicates that a column cannot contain {@code NULL} values. 31 * Indicates that a column can contain {@code NULL} values. 36 * Indicates that it is unknown whether a column can contain {@code NULL}s or not. 41 * Returns the title of an indexed column's catalog. 43 * @param column 44 * the column index, starting at 1. 49 public String getCatalogName(int column) throws SQLException; 53 * invoking {@code ResultSet.getObject} to recover this column's value. 55 * @param column 56 * the column index, starting at 1 [all...] |
ResultSet.java | 57 * column addressing. The column names are case insensitive. If several columns 58 * have the same name, then the getter methods use the first matching column. 59 * This means that if column names are used, it is not possible to guarantee 60 * that the name will retrieve data from the intended column - for certainty it 61 * is better to use column indexes. Ideally the columns should be read 215 * Gets the index number for a column in the {@code ResultSet} from the 216 * provided column name. 219 * the column name. 220 * @return the column's index in the {@code ResultSet} identified by colum [all...] |
/packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/ |
MockSuggestionProviderCursor.java | 41 public Object get(int column) { 42 return mRows.get(getPosition()).get(column); 56 public double getDouble(int column) { 57 return mRows.get(getPosition()).getDouble(column); 61 public float getFloat(int column) { 62 return mRows.get(getPosition()).getFloat(column); 66 public int getInt(int column) { 67 return mRows.get(getPosition()).getInt(column); 71 public long getLong(int column) { 72 return mRows.get(getPosition()).getLong(column); [all...] |
SuggestionCursorWithExtrasTest.java | 53 String column = "extra_string"; local 54 Cursor c = createCursorWithExtras(column, value); 55 assertEquals("Extra column value", value, c.getString(c.getColumnIndex(column))); 67 String column = "extra_int"; local 68 Cursor c = createCursorWithExtras(column, value); 69 assertEquals("Extra column value", value, c.getInt(c.getColumnIndex(column))); 81 String column = "extra_double"; local 82 Cursor c = createCursorWithExtras(column, value) 95 String column = "extra_float"; local 109 String column = "extra_long"; local 123 String column = "extra_short"; local [all...] |
/external/javasqlite/src/main/java/SQLite/JDBC2z/ |
JDBCResultSetMetaData.java | 13 public String getCatalogName(int column) throws java.sql.SQLException { 17 public String getColumnClassName(int column) throws java.sql.SQLException { 18 column--; 20 if (column < 0 || column >= r.tr.ncolumns) { 24 switch (((TableResultX) r.tr).sql_type[column]) { 51 public int getColumnDisplaySize(int column) throws java.sql.SQLException { 55 public String getColumnLabel(int column) throws java.sql.SQLException { 56 column--; 59 if (column < 0 || column >= r.tr.ncolumns) [all...] |
/external/mesa3d/src/glsl/tests/ |
matrix-08.glsl | 13 /* Multiplying a 2 column, 3 row matrix with a 3 column, 2 row matrix 14 * results in a 3 column, 3 row matrix.
|
/packages/apps/Contacts/src/com/android/contacts/calllog/ |
ExtendedCursor.java | 27 * Wraps a cursor to add an additional column with the same value for all rows. 35 /** The name of the additional column. */ 37 /** The value to be assigned to the additional column. */ 41 * Creates a new cursor which extends the given cursor by adding a column with a constant value. 44 * @param columnName the name of the additional column 45 * @param value the value to be assigned to the additional column 69 public String getString(int column) { 70 if (column == mCursor.getColumnCount()) { 73 return mCursor.getString(column); 77 public short getShort(int column) { [all...] |
/external/wpa_supplicant_6/wpa_supplicant/wpa_gui-qt4/ |
scanresults.ui | 30 <column> 34 </column> 35 <column> 39 </column> 40 <column> 44 </column> 45 <column> 49 </column> 50 <column> 54 </column> [all...] |
wpagui.ui | 21 <item row="0" column="0" > 28 <item row="0" column="1" > 31 <item row="1" column="0" > 38 <item row="1" column="1" > 41 <item row="2" column="0" colspan="2" > 51 <item row="0" column="0" colspan="5" > 60 <item row="0" column="0" > 67 <item row="1" column="0" > 74 <item row="2" column="0" > 81 <item row="3" column="0" [all...] |
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/ |
scanresults.ui | 30 <column> 34 </column> 35 <column> 39 </column> 40 <column> 44 </column> 45 <column> 49 </column> 50 <column> 54 </column> [all...] |
wpagui.ui | 21 <item row="0" column="0" > 28 <item row="0" column="1" > 31 <item row="1" column="0" > 38 <item row="1" column="1" > 41 <item row="2" column="0" colspan="2" > 51 <item row="0" column="0" colspan="5" > 60 <item row="0" column="0" > 67 <item row="1" column="0" > 74 <item row="2" column="0" > 81 <item row="3" column="0" [all...] |
/external/chromium/chrome/browser/resources/options/ |
search_engine_manager.css | 10 .search-engine-list .name-column { 18 .search-engine-list .name-column :last-child { 22 .search-engine-list .keyword-column { 28 .search-engine-list .url-column { 33 .search-engine-list .keyword-column, 34 .search-engine-list .url-column { 38 .search-engine-list .default .name-column, 39 .search-engine-list .default .keyword-column { 44 .search-engine-list .url-column { 49 .search-engine-list .url-column :first-child [all...] |
cookies_view.html | 6 <div id="cookies-column-headers"> 7 <div id="cookies-site-column"><h3 i18n-content="cookie_domain"></h3></div> 8 <div id="cookies-data-column"><h3 i18n-content="cookie_local_data"></h3></div> 9 <div id="remove-all-cookies-search-column">
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
ReorderingCursorWrapper.java | 67 public double getDouble(int column) { 68 return mCursor.getDouble(column); 72 public float getFloat(int column) { 73 return mCursor.getFloat(column); 77 public int getInt(int column) { 78 return mCursor.getInt(column); 82 public long getLong(int column) { 83 return mCursor.getLong(column); 87 public short getShort(int column) { 88 return mCursor.getShort(column); [all...] |
/libcore/luni/src/main/java/javax/sql/ |
RowSetMetaData.java | 38 * Sets automatic numbering for a specified column in the {@code RowSet}. If 39 * automatic numbering is on, the column is read-only. The default value for 43 * the index number for the column; the first column's index is 55 * Sets the case sensitive property for a specified column in the {@code 56 * RowSet}. The default is that the column is not case sensitive. 59 * the index number for the column; the first column's index is 62 * {@code true} to make the column case sensitive, {@code false} 71 * Sets the catalog name for a specified column in the {@code RowSet} [all...] |
/external/chromium/chrome/browser/resources/shared/js/cr/ui/table/ |
table_column.js | 6 * @fileoverview This is a table column representation 14 * A table column that wraps column ids and settings. 15 * @param {!Array} columnIds Array of column ids. 37 * Clones column. 38 * @return {cr.ui.table.TableColumn} Clone of the given column. 49 * @param {string} columnId The column id. 61 * The column id. 67 * The column name 73 * The column width [all...] |
/frameworks/base/core/java/android/text/ |
PackedIntVector.java | 25 * offsetting the values in segments of a given column. 55 * Returns the value at the specified row and column. 58 * @param column the index of the column to return. 63 * (row < 0 || row >= size()) or the column is out of range 64 * (column < 0 || column >= width()). 66 public int getValue(int row, int column) { 69 if (((row | column) < 0) || (row >= size()) || (column >= columns)) [all...] |
/external/llvm/test/MC/ARM/ |
full_line_comment.s | 2 # this is a full line comment starting at column 1 3 # this starting at column 2
|
/external/clang/bindings/python/tests/cindex/ |
test_location.py | 5 def assert_location(loc, line, column, offset): 7 assert loc.column == column 16 assert_location(n.location,line=1,column=5,offset=4) 18 assert_location(n.location,line=2,column=5,offset=13) 25 assert_location(n.location,line=2,column=5,offset=5) 27 assert_location(n.location,line=3,column=5,offset=14) 29 # adding a space should affect column on first line only 34 assert_location(n.location,line=1,column=6,offset=5) 36 assert_location(n.location,line=2,column=5,offset=14 [all...] |
/external/jsilver/src/com/google/clearsilver/jsilver/exceptions/ |
JSilverBadSyntaxException.java | 28 private final int column; field in class:JSilverBadSyntaxException 31 * Signifies line or column is not known. 43 * @param column number of a column in {@code resourceName} where error occurred (ignored if set 49 int line, int column, Throwable cause) { 50 super(makeMessage(message, lineContent, resourceName, line, column), cause); 53 this.column = column; 57 int line, int column) { 68 if (column != UNKNOWN_POSITION) [all...] |
/external/wpa_supplicant/wpa_gui-qt4/ |
scanresults.ui | 27 <column> 37 </column> 38 <column> 48 </column> 49 <column> 59 </column> 60 <column> 70 </column> 71 <column> 81 </column> [all...] |
/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...] |
Cursor.java | 35 /** Value returned by {@link #getType(int)} if the specified column is null */ 38 /** Value returned by {@link #getType(int)} if the specified column type is integer */ 41 /** Value returned by {@link #getType(int)} if the specified column type is float */ 44 /** Value returned by {@link #getType(int)} if the specified column type is string */ 47 /** Value returned by {@link #getType(int)} if the specified column type is blob */ 166 * Returns the zero-based index for the given column name, or -1 if the column doesn't exist. 167 * If you expect the column to exist use {@link #getColumnIndexOrThrow(String)} instead, which 170 * @param columnName the name of the target column. 171 * @return the zero-based column index for the given column name, or -1 i [all...] |
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...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/grid/ |
GridModel.java | 73 /** Width assigned to a newly added column with the Add Column action */ 94 * Array of positions (indexed by column) of the left edge of table cells; this 95 * corresponds to the column positions in the grid 106 * Array of positions (indexed by column) of the maximum right hand side bounds of a 107 * node in the given column; this represents the visual edge of a column even when the 108 * actual column is wider 187 * should be positioned at the given row and column. This will skip over any nodes 192 * @param column the target column of the new nod 376 int column = declaredColumnCount; local 411 int column = 0; local 455 int column = 0; local 466 assert nextColumn > column; local 488 assert nextColumn > column; local 579 int column = view.column; local 651 int column = view.column; local 1094 int column = Arrays.binarySearch(mLeft, x); local 1136 int column = Arrays.binarySearch(mLeft, x); local 1466 int column = view.column; local 1602 public int column; field in class:GridModel.ViewData [all...] |