HomeSort by relevance Sort by last modified time
    Searched refs:column (Results 1 - 25 of 712) 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...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowMatrixCursor.java 31 public String getString(int column) {
32 Object columnValue = get(column);
37 public long getLong(int column) {
38 Number numberValue = (Number) get(column);
43 public short getShort(int column) {
44 Number numberValue = (Number) get(column);
49 public int getInt(int column) {
50 Number numberValue = (Number) get(column);
55 public float getFloat(int column) {
56 Number numberValue = (Number) get(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/Dialer/src/com/android/dialer/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...]
  /packages/apps/ContactsCommon/src/com/android/contacts/common/database/
EmptyCursor.java 47 public String getString(int column) {
52 public short getShort(int column) {
57 public int getInt(int column) {
62 public long getLong(int column) {
67 public float getFloat(int column) {
72 public double getDouble(int column) {
77 public boolean isNull(int column) {
  /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...]
  /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.
64 *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...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/tool/templates/messages/formats/
antlr.stg 36 location(file, line, column) ::= "<file>:<line>:<column>:"
gnu.stg 36 location(file, line, column) ::= "<file>:<line>:"
vs2005.stg 36 location(file, line, column) ::= "<file>(<line>,<column>)"
  /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...]
  /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)
  /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...]

Completed in 618 milliseconds

1 2 3 4 5 6 7 8 91011>>