Searched refs:inWhere (Results 1 – 1 of 1) sorted by relevance
127 public void appendWhere(@NonNull CharSequence inWhere) { in appendWhere() argument129 mWhereClause = new StringBuilder(inWhere.length() + 16); in appendWhere()131 mWhereClause.append(inWhere); in appendWhere()144 public void appendWhereEscapeString(@NonNull String inWhere) { in appendWhereEscapeString() argument146 mWhereClause = new StringBuilder(inWhere.length() + 16); in appendWhereEscapeString()148 DatabaseUtils.appendEscapedSQLString(mWhereClause, inWhere); in appendWhereEscapeString()162 public void appendWhereStandalone(@NonNull CharSequence inWhere) { in appendWhereStandalone() argument164 mWhereClause = new StringBuilder(inWhere.length() + 16); in appendWhereStandalone()169 mWhereClause.append('(').append(inWhere).append(')'); in appendWhereStandalone()