Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/service/autofill/
DCharSequenceTransformation.java194 final Pattern[] regexs = new Pattern[size]; in writeToParcel() local
201 regexs[i] = pair.first; in writeToParcel()
207 parcel.writeSerializable(regexs); in writeToParcel()
216 final Pattern[] regexs = (Pattern[]) parcel.readSerializable();
223 new CharSequenceTransformation.Builder(ids[0], regexs[0], substs[0]);
227 builder.addField(ids[i], regexs[i], substs[i]);
DImageTransformation.java251 final Pattern[] regexs = (Pattern[]) parcel.readSerializable();
259 ? new ImageTransformation.Builder(id, regexs[0], resIds[0], contentDescription)
260 : new ImageTransformation.Builder(id, regexs[0], resIds[0]);
262 final int size = regexs.length;
265 builder.addOption(regexs[i], resIds[i], contentDescriptions[i]);
267 builder.addOption(regexs[i], resIds[i]);
/frameworks/base/packages/Tethering/src/com/android/networkstack/tethering/
DTetheringConfiguration.java340 private static boolean matchesDownstreamRegexs(String iface, String[] regexs) { in matchesDownstreamRegexs() argument
341 for (String regex : regexs) { in matchesDownstreamRegexs()