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

  /external/chromium_org/third_party/libaddressinput/src/java/src/com/android/i18n/addressinput/
FieldVerifier.java 61 private Pattern mMatch;
81 mMatch = parent.mMatch;
155 mMatch = Pattern.compile(nodeData.get(AddressDataKey.ZIP),
243 if (trimmedValue != null && mMatch != null &&
244 !mMatch.matcher(trimmedValue).lookingAt()) {
  /frameworks/base/services/core/java/com/android/server/pm/
PreferredComponent.java 42 public final int mMatch;
63 mMatch = match&IntentFilter.MATCH_CATEGORY_MASK;
104 mMatch = matchStr != null ? Integer.parseInt(matchStr, 16) : 0;
182 if (mMatch != 0) {
183 serializer.attribute(null, ATTR_MATCH, Integer.toHexString(mMatch));
249 out.print(prefix); out.print(" mMatch=0x");
250 out.print(Integer.toHexString(mMatch));

Completed in 205 milliseconds