Searched refs:columnName (Results 1 - 25 of 35) sorted by last modified time

12

/external/sqlite/dist/orig/
H A Dsqlite3.c77364 static const void *columnName( function
[all...]
/external/sqlite/dist/
H A Dsqlite3.c77364 static const void *columnName( function
[all...]
/external/robolectric/v3/runtime/
H A Dandroid-all-5.1.1_r9-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dshadows-core-3.1-SNAPSHOT-16.jarMETA-INF/ META-INF/MANIFEST.MF linux-x86_64/ linux-x86_64/META-INF/ android/ ...
H A Dshadows-core-3.1-SNAPSHOT-17.jarMETA-INF/ META-INF/MANIFEST.MF linux-x86_64/ linux-x86_64/META-INF/ android/ ...
H A Dshadows-core-3.1-SNAPSHOT-18.jarMETA-INF/ META-INF/MANIFEST.MF linux-x86_64/ linux-x86_64/META-INF/ android/ ...
H A Dshadows-core-3.1-SNAPSHOT-19.jarMETA-INF/ META-INF/MANIFEST.MF linux-x86_64/ linux-x86_64/META-INF/ android/ ...
H A Dshadows-core-3.1-SNAPSHOT-21.jarMETA-INF/ META-INF/MANIFEST.MF linux-x86_64/ linux-x86_64/META-INF/ android/ ...
H A Dshadows-core-3.1-SNAPSHOT-22.jarMETA-INF/ META-INF/MANIFEST.MF linux-x86_64/ linux-x86_64/META-INF/ android/ ...
H A Dandroid-all-5.0.0_r2-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-4.1.2_r1-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.2.2_r1.2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.3_r2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.4_r1-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
/external/robolectric/v1/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
H A Dh2-1.2.147.jarMETA-INF/MANIFEST.MF META-INF/services/java.sql.Driver org/h2/api/AggregateFunction ...
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowAbstractCursor.java115 public int getColumnIndex(String columnName) { argument
117 if (columnName.equals(columnNameArray[i])) return i;
123 public int getColumnIndexOrThrow(String columnName) { argument
124 int idx = getColumnIndex(columnName);
H A DShadowSQLiteCursor.java46 private Integer getColIndex(String columnName) { argument
47 if (columnName == null) {
51 Integer i = this.columnNames.get(columnName.toLowerCase());
57 public int getColumnIndex(String columnName) { argument
58 return getColIndex(columnName);
62 public int getColumnIndexOrThrow(String columnName) { argument
63 Integer columnIndex = getColIndex(columnName);
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/tester/android/database/
H A DSimpleTestCursor.java29 public int getColumnIndex(String columnName) { argument
30 return columnNames.indexOf(columnName);
H A DTestCursor.java73 public int getColumnIndex(String columnName) { argument
78 public int getColumnIndexOrThrow(String columnName) throws IllegalArgumentException { argument
/external/owasp/sanitizer/tools/emma/lib/
H A Demma.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/vladium/ com/vladium/app/ com/vladium/app/IAppVersion ...
/external/owasp/sanitizer/tools/findbugs/lib/
H A Ddom4j-1.6.1.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/dom4j/ org/dom4j/bean/ org/dom4j/datatype/ org/ ...
/external/javasqlite/src/main/java/SQLite/JDBC2z/
H A DJDBCResultSet.java151 public int findColumn(String columnName) throws SQLException {
153 return m.findColByName(columnName);
228 public String getString(String columnName) throws SQLException {
229 int col = findColumn(columnName);
255 public int getInt(String columnName) throws SQLException {
256 int col = findColumn(columnName);
265 public boolean getBoolean(String columnName) throws SQLException {
266 int col = findColumn(columnName);
299 public short getShort(String columnName) throws SQLException {
300 int col = findColumn(columnName);
[all...]
H A DJDBCResultSetMetaData.java192 int findColByName(String columnName) throws java.sql.SQLException { argument
198 if (c.compareToIgnoreCase(columnName) == 0) {
204 if (c.compareToIgnoreCase(columnName) == 0) {
212 throw new SQLException("column " + columnName + " not found");
/external/ims/rcs/presencepolling/src/com/android/service/ims/presence/
H A DDatabaseContentProvider.java100 * Safely wraps an ALTER TABLE table ADD COLUMN columnName columnType
107 protected static boolean addColumn(SQLiteDatabase db, String table, String columnName, argument
110 sb.append("ALTER TABLE ").append(table).append(" ADD COLUMN ").append(columnName).append(

Completed in 862 milliseconds

12