Home
last modified time | relevance | path

Searched refs:column (Results 1 – 5 of 5) sorted by relevance

/libcore/ojluni/src/main/java/java/sql/
DResultSetMetaData.java62 boolean isAutoIncrement(int column) throws SQLException; in isAutoIncrement() argument
71 boolean isCaseSensitive(int column) throws SQLException; in isCaseSensitive() argument
80 boolean isSearchable(int column) throws SQLException; in isSearchable() argument
89 boolean isCurrency(int column) throws SQLException; in isCurrency() argument
99 int isNullable(int column) throws SQLException; in isNullable() argument
126 boolean isSigned(int column) throws SQLException; in isSigned() argument
136 int getColumnDisplaySize(int column) throws SQLException; in getColumnDisplaySize() argument
149 String getColumnLabel(int column) throws SQLException; in getColumnLabel() argument
158 String getColumnName(int column) throws SQLException; in getColumnName() argument
167 String getSchemaName(int column) throws SQLException; in getSchemaName() argument
[all …]
/libcore/luni/src/main/java/javax/xml/transform/
DTransformerException.java219 int column = locator.getColumnNumber(); in getMessageAndLocation() local
231 if (0 != column) { in getMessageAndLocation()
233 sbuffer.append(column); in getMessageAndLocation()
252 int column = locator.getColumnNumber(); in getLocationAsString() local
264 if (0 != column) { in getLocationAsString()
266 sbuffer.append(column); in getLocationAsString()
/libcore/xml/src/main/java/org/xmlpull/v1/
DXmlPullParserException.java14 protected int column = -1; field in XmlPullParserException
43 this.column = parser.getColumnNumber(); in XmlPullParserException()
51 public int getColumnNumber() { return column; } in getColumnNumber()
/libcore/luni/src/main/java/org/apache/harmony/xml/
DExpatParser.java591 private int column() { in column() method in ExpatParser
592 return column(this.pointer); in column()
595 private static native int column(long pointer); in column() method in ExpatParser
684 return column(); in getColumnNumber()
737 String message, int line, int column) { in makeMessage() argument
739 + column + ": " + message; in makeMessage()
/libcore/luni/src/main/native/
Dorg_apache_harmony_xml_ExpatParser.cpp1361 NATIVE_METHOD(ExpatParser, column, "(J)I"),