Home
last modified time | relevance | path

Searched refs:colName (Results 1 – 4 of 4) sorted by relevance

/external/javasqlite/src/main/java/SQLite/JDBC2z/
DJDBCResultSet.java1142 public void updateNull(String colName) throws SQLException {
1143 int col = findColumn(colName);
1147 public void updateBoolean(String colName, boolean b) throws SQLException {
1148 int col = findColumn(colName);
1152 public void updateByte(String colName, byte b) throws SQLException {
1153 int col = findColumn(colName);
1157 public void updateShort(String colName, short b) throws SQLException {
1158 int col = findColumn(colName);
1162 public void updateInt(String colName, int b) throws SQLException {
1163 int col = findColumn(colName);
[all …]
/external/perfetto/ui/src/common/
Dprotos.ts75 const colName = col.name || ''; constant
76 if (uniqColNames.has(colName)) {
77 colNamesToDedupe.add(colName);
79 uniqColNames.add(colName);
82 const colName = result.columnDescriptors[i].name || ''; constant
83 if (colNamesToDedupe.has(colName)) {
84 res.push(`${colName}.${i + 1}`);
86 res.push(colName);
/external/syzkaller/dashboard/app/static/
Dcommon.js4 function sortTable(item, colName, conv) { argument
7 col = findColumnByName(rows[0].getElementsByTagName("th"), colName);
28 function findColumnByName(headers, colName) { argument
30 if (headers[i].textContent == colName)
/external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/javax/sql/
DImpl_RowSet.java285 public Array getArray(String colName) throws SQLException { in getArray() argument
367 public Clob getClob(String colName) throws SQLException { in getClob() argument
461 public Ref getRef(String colName) throws SQLException { in getRef() argument