Searched refs:inWhere (Results 1 – 1 of 1) sorted by relevance
170 public void appendWhere(@NonNull CharSequence inWhere) { in appendWhere() argument172 mWhereClause = new StringBuilder(inWhere.length() + 16); in appendWhere()174 mWhereClause.append(inWhere); in appendWhere()187 public void appendWhereEscapeString(@NonNull String inWhere) { in appendWhereEscapeString() argument189 mWhereClause = new StringBuilder(inWhere.length() + 16); in appendWhereEscapeString()191 DatabaseUtils.appendEscapedSQLString(mWhereClause, inWhere); in appendWhereEscapeString()205 public void appendWhereStandalone(@NonNull CharSequence inWhere) { in appendWhereStandalone() argument207 mWhereClause = new StringBuilder(inWhere.length() + 16); in appendWhereStandalone()212 mWhereClause.append('(').append(inWhere).append(')'); in appendWhereStandalone()