Home
last modified time | relevance | path

Searched refs:tokenUnquoted (Results 1 – 3 of 3) sorted by relevance

/packages/providers/TelephonyProvider/src/com/android/providers/telephony/
DSQLiteTokenizer.java134 final String tokenUnquoted = sql.substring(quoteStart + 1, quoteEnd); in tokenize() local
139 if (tokenUnquoted.indexOf(ch) >= 0) { in tokenize()
140 token = tokenUnquoted.replaceAll( in tokenize()
143 token = tokenUnquoted; in tokenize()
/packages/providers/MediaProvider/src/com/android/providers/media/util/
DSQLiteTokenizer.java134 final String tokenUnquoted = sql.substring(quoteStart + 1, quoteEnd); in tokenize() local
139 if (tokenUnquoted.indexOf(ch) >= 0) { in tokenize()
140 token = tokenUnquoted.replaceAll( in tokenize()
143 token = tokenUnquoted; in tokenize()
/packages/providers/ContactsProvider/src/com/android/providers/contacts/sqlite/
DSqlChecker.java185 final String tokenUnquoted = sql.substring(quoteStart + 1, quoteEnd); in findTokens() local
190 if (tokenUnquoted.indexOf(ch) >= 0) { in findTokens()
191 token = tokenUnquoted.replaceAll( in findTokens()
194 token = tokenUnquoted; in findTokens()