Searched defs:inWhere (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteQueryBuilder.java92 * @param inWhere the chunk of text to append to the WHERE clause.
94 public void appendWhere(CharSequence inWhere) { argument
96 mWhereClause = new StringBuilder(inWhere.length() + 16);
101 mWhereClause.append(inWhere);
111 * @param inWhere the chunk of text to append to the WHERE clause. it will be escaped
114 public void appendWhereEscapeString(String inWhere) { argument
116 mWhereClause = new StringBuilder(inWhere.length() + 16);
121 DatabaseUtils.appendEscapedSQLString(mWhereClause, inWhere);

Completed in 96 milliseconds