Home | History | Annotate | Download | only in obex

Lines Matching defs:mMatcher

29     private final Matcher mMatcher;
40 mMatcher = Pattern.compile("(([^:]*):(.*))?\r\n").matcher(str);
41 mPos = mMatcher.regionStart();
48 mMatcher.region(mPos, mMatcher.regionEnd());
50 if (!mMatcher.lookingAt()) {
58 mPos = mMatcher.end();
60 if (mMatcher.group(1) != null) {
65 return new Property(mMatcher.group(2), mMatcher.group(3));