HomeSort by relevance Sort by last modified time
    Searched refs:column (Results 1 - 25 of 465) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /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...]
  /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
  /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...]
  /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...]
  /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...]
  /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...]
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...]
MergeCursor.java 96 public String getString(int column)
98 return mCursor.getString(column);
102 public short getShort(int column)
104 return mCursor.getShort(column);
108 public int getInt(int column)
110 return mCursor.getInt(column);
114 public long getLong(int column)
116 return mCursor.getLong(column);
120 public float getFloat(int column)
122 return mCursor.getFloat(column);
    [all...]
  /external/bison/src/
location.c 38 loc.start.line, loc.start.column);
43 loc.end.line, loc.end.column - 1);
45 fprintf (out, "-%d.%d", loc.end.line, loc.end.column - 1);
46 else if (loc.start.column < loc.end.column - 1)
47 fprintf (out, "-%d", loc.end.column - 1);
location.h 36 /* The (origin-1) column just after the boundary. This is neither a
37 byte count, nor a character count; it is a column count.
38 If this is INT_MAX, the column number has overflowed. */
39 int column; member in struct:__anon1499
47 return (a.column == b.column
  /frameworks/base/core/tests/coretests/src/android/widget/focus/
LinearLayoutGrid.java 39 public Button getButtonAt(int column, int row) {
43 if (column < 0 || column > 2) {
44 throw new IllegalArgumentException("column out of range");
46 return (Button) getColumn(column).getChildAt(row);
51 private LinearLayout getColumn(int column) {
52 switch (column) {
60 throw new IllegalArgumentException("column out of range");
  /external/elfutils/libdw/
dwarf_linecol.c 1 /* Return column in line.
28 *colp = line->column;
  /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...]
JSilverAutoEscapingException.java 26 public JSilverAutoEscapingException(String message, String templateName, int line, int column) {
27 super(createMessage(message, templateName, line, column));
37 private static String createMessage(String message, String resourceName, int line, int column) {
45 if (column != UNKNOWN_POSITION) {
46 result.append(" column=").append(column);
  /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 &lt; 0 || row >= size()) or the column is out of range
64 * (column &lt; 0 || column >= width()).
66 public int getValue(int row, int column) {
69 if (((row | column) < 0) || (row >= size()) || (column >= columns))
    [all...]
  /frameworks/base/core/java/android/util/
MonthDisplayHelper.java 122 for (int column = 0; column < 7; column++) {
123 result[column] = getDayAt(row, column);
131 * @param column The column, 0-6, starting from the left.
132 * @return The day at a particular row, column
134 public int getDayAt(int row, int column) {
136 if (row == 0 && column < mOffset)
    [all...]
  /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...]
  /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...]
  /external/webkit/Source/WebCore/inspector/front-end/
DOMSyntaxHighlighter.js 55 var column = 0;
57 var newColumn = this._tokenizer.nextToken(column);
60 if (column > plainTextStart) {
61 var plainText = line.substring(plainTextStart, column);
64 var token = line.substring(column, newColumn);
68 column = newColumn;
69 } while (column < line.length)
  /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/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]);
  /external/webkit/Source/WebCore/html/
HTMLDataGridColElement.cpp 74 m_dataGrid->columns()->add(column()); // FIXME: Deal with ordering issues (complicated, since columns can be made outside the DOM).
83 if (!grid && column()) {
84 dataGrid()->columns()->remove(column());
157 if (!column())
161 column()->setLabel(label());
163 column()->setType(type());
165 column()->setPrimary(primary());
167 column()->setSortable(sortable());
169 column()->setSortDirection(sortDirection());
171 column()->setId(getIdAttribute())
    [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;
91 String column = null; local
96 column = Files.FileColumns.STORAGE_ID;
100 column = Files.FileColumns.FORMAT;
108 column = Files.FileColumns.SIZE;
112 column = Files.FileColumns.DATA
347 int column = property.column; local
    [all...]

Completed in 1687 milliseconds

1 2 3 4 5 6 7 8 91011>>