Home
last modified time | relevance | path

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

/aosp14/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteQueryBuilder.java1109 final String column = computeSingleProjection(userColumn); in computeSingleProjectionOrThrow()
1120 return userColumn; in computeSingleProjection()
1124 String column = mProjectionMap.get(userColumn); in computeSingleProjection()
1128 final Matcher matcher = sAggregationPattern.matcher(userColumn); in computeSingleProjection()
1131 userColumn = matcher.group(2); in computeSingleProjection()
1132 column = mProjectionMap.get(userColumn); in computeSingleProjection()
1141 (userColumn.contains(" AS ") || userColumn.contains(" as "))) { in computeSingleProjection()
1143 return maybeWithOperator(operator, userColumn); in computeSingleProjection()
1151 if (p.matcher(userColumn).matches()) { in computeSingleProjection()
1158 Log.w(TAG, "Allowing abusive custom column: " + userColumn); in computeSingleProjection()
[all …]