Searched refs:userColumn (Results 1 – 2 of 2) sorted by relevance
1109 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 …]
1048 final String column = computeSingleProjection(userColumn);1055 return userColumn;1062 return userColumn;1066 String column = mProjectionMap.get(userColumn.toLowerCase(Locale.ROOT));1070 final Matcher matcher = sAggregationPattern.matcher(userColumn);1073 userColumn = matcher.group(2);1083 (userColumn.contains(" AS ") || userColumn.contains(" as "))) {1085 return maybeWithOperator(operator, userColumn);1093 if (p.matcher(userColumn).matches()) {1100 Log.w(TAG, "Allowing abusive custom column: " + userColumn);[all …]