HomeSort by relevance Sort by last modified time
    Searched defs:mRegex (Results 1 - 3 of 3) sorted by null

  /hardware/libhardware/modules/sensors/dynamic_sensor/
ConnectionDetector.h 77 std::regex mRegex;
  /frameworks/base/core/java/android/service/autofill/
RegexValidator.java 42 private final Pattern mRegex;
54 mRegex = Preconditions.checkNotNull(regex);
67 final boolean valid = mRegex.matcher(value).matches();
79 return "RegexValidator: [id=" + mId + ", regex=" + mRegex + "]";
93 parcel.writeSerializable(mRegex);
TextValueSanitizer.java 48 private final Pattern mRegex;
60 mRegex = Preconditions.checkNotNull(regex);
81 final Matcher matcher = mRegex.matcher(text);
83 if (sDebug) Slog.d(TAG, "sanitize(): " + mRegex + " failed for " + value);
90 Slog.w(TAG, "Exception evaluating " + mRegex + "/" + mSubst + ": " + e);
102 return "TextValueSanitizer: [regex=" + mRegex + ", subst=" + mSubst + "]";
115 parcel.writeSerializable(mRegex);

Completed in 172 milliseconds