HomeSort by relevance Sort by last modified time
    Searched refs:matcher (Results 151 - 175 of 315) sorted by null

1 2 3 4 5 67 8 91011>>

  /frameworks/ex/common/java/com/android/common/
Rfc822Validator.java 70 matcher(tokens[0].getAddress()).matches();
  /libcore/luni/src/main/java/java/util/regex/
Pattern.java 28 * The {@code Pattern} class and its companion, {@link Matcher}, also offer more functionality
39 * Matcher m = p.matcher(inputString);
171 * <p>See {@link Matcher#group} for details of how capturing groups are numbered and accessed.
216 * @see Matcher
284 * Returns a {@link Matcher} for this pattern applied to the given {@code input}.
285 * The {@code Matcher} can be used to match the {@code Pattern} against the
289 public Matcher matcher(CharSequence input) { method in class:Pattern
290 return new Matcher(this, input)
    [all...]
  /sdk/chimpchat/src/com/android/chimpchat/adb/
AdbBackend.java 89 if (pattern.matcher(serialNumber).matches()) {
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
FileListingService.java 24 import java.util.regex.Matcher;
337 Matcher m = sApkPattern.matcher(name);
394 return sEscapePattern.matcher(entryName).replaceAll("\\\\$1"); //$NON-NLS-1$
432 Matcher m = sLsPattern.matcher(line);
687 Matcher m = sPmPattern.matcher(line);
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/log/
EventLogParser.java 39 import java.util.regex.Matcher;
150 Matcher m = PATTERN_TAG_WITH_DESC.matcher(line);
182 m = PATTERN_SIMPLE_TAG.matcher(line);
200 Matcher m = PATTERN_DESCRIPTION.matcher(desc);
295 Matcher m = TEXT_LOG_LINE.matcher(textLogLine);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/
VersionCheck.java 31 import java.util.regex.Matcher;
72 Matcher m = sPluginVersionPattern.matcher(line);
  /sdk/ide_common/src/com/android/ide/common/resources/configuration/
VersionQualifier.java 19 import java.util.regex.Matcher;
42 Matcher m = sCountryCodePattern.matcher(segment);
  /dalvik/dx/src/com/android/dx/command/findusages/
FindUsages.java 56 if (declaredByPattern.matcher(string).matches()) {
59 if (memberNamePattern.matcher(string).matches()) {
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/
test_expectations.py 490 matcher = ModifierMatcher(self._test_config)
493 self._process_line(line, lineno, matcher, overrides_allowed)
495 def _process_line(self, line, lineno, matcher, overrides_allowed):
505 num_matches = self._check_options(matcher, options, lineno,
542 def _check_options(self, matcher, options, lineno, test_list_path):
543 match_result = self._check_syntax(matcher, options, lineno,
548 def _check_syntax(self, matcher, options, lineno, test_list_path):
549 match_result = matcher.match(options)
    [all...]
test_expectations_unittest.py 402 self.matcher = ModifierMatcher(self.config)
405 matcher = self.matcher
407 matcher = ModifierMatcher(self.FakeTestConfiguration(values))
408 match_result = matcher.match(modifiers)
  /frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/
FsUtils.java 165 line1 = trailingSpace.matcher(line1).replaceAll("");
170 line2 = trailingSpace.matcher(line2).replaceAll("");
  /sdk/lint/libs/lint_checks/src/com/android/tools/lint/checks/
TranslationDetector.java 167 && languagePattern.matcher(segment).matches()) {
173 && regionPattern.matcher(segment).matches()) {
  /external/bluetooth/glib/gio/win32/
gwinhttpfile.c 476 GFileAttributeMatcher *matcher; local
527 matcher = g_file_attribute_matcher_new (attributes);
529 g_file_info_set_attribute_mask (info, matcher);
553 if (matcher == NULL)
605 g_file_attribute_matcher_unref (matcher);
  /sdk/traceview/src/com/android/traceview/
DmTraceReader.java 34 import java.util.regex.Matcher;
487 Matcher matcher = mIdNamePattern.matcher(line); local
488 if (matcher.find()) {
489 idStr = matcher.group(1);
490 name = matcher.group(2);
  /external/chromium/testing/gmock/test/
gmock-matchers_test.cc 96 using testing::Matcher;
164 Matcher<int> GreaterThan(int n) {
176 // Returns the description of the given matcher.
178 string Describe(const Matcher<T>& m) {
184 // Returns the description of the negation of the given matcher.
186 string DescribeNegation(const Matcher<T>& m) {
248 // Tests implementing a monomorphic matcher using MatchAndExplain().
270 Matcher<int> m = MakeMatcher(new NewEvenMatcherImpl);
277 // Tests default-constructing a matcher.
279 Matcher<double> m
3236 Matcher<int> matcher = ResultOf(&IntToStringFunction, Eq(string("foo"))); local
3244 Matcher<int> matcher = ResultOf(&IntToStringFunction, StrEq("foo")); local
3256 Matcher<int> matcher = ResultOf(&IntFunction, Ge(85)); local
3268 Matcher<int> matcher = ResultOf(&IntFunction, Eq(80)); local
3285 Matcher<double&> matcher = ResultOf(&DoubleFunction, Ref(x)); local
3307 Matcher<const string&> matcher = ResultOf(&StringFunction, Ref(s)); local
3317 Matcher<int> matcher = ResultOf(IntFunction, Matcher<signed char>(Ge(85))); local
3334 Matcher<int> matcher = ResultOf(IntToStringFunction, StrEq("foo")); local
3348 Matcher<int> matcher = ResultOf(Functor(), Eq(string("foo"))); local
    [all...]
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/logcat/
LogPanel.java 68 import java.util.regex.Matcher;
1096 Matcher matcher = sLogPattern.matcher(line); local
    [all...]
  /cts/tools/device-setup/TestDeviceSetup/src/android/tests/getinfo/
RootProcessScanner.java 156 return !ROOT_PROCESS_WHITELIST_PATTERN.matcher(name).matches()
  /cts/tools/vm-tests-tf/src/util/build/
BuildDalvikSuite.java 47 import java.util.regex.Matcher;
503 Matcher m = p.matcher(methodSource);
593 Matcher m = p.matcher(all);
599 Matcher titleM = Pattern.compile("@title (.*)", Pattern.DOTALL)
600 .matcher(res);
611 Matcher constraintM = Pattern.compile("@constraint (.*)").matcher(
  /development/cmds/monkey/src/com/android/commands/monkey/
MonkeyGetFrameRateEvent.java 30 import java.util.regex.Matcher;
102 Matcher m = NO_OF_FRAMES_PATTERN.matcher(input);
  /development/tools/idegen/src/
Eclipse.java 185 return pattern.matcher(path).find();
  /external/doclava/src/com/google/doclava/
Proofread.java 23 import java.util.regex.Matcher;
68 Matcher m = WHITESPACE.matcher(s);
  /external/oauth/core/src/main/java/net/oauth/http/
HttpMessage.java 26 import java.util.regex.Matcher;
132 Matcher m = CHARSET.matcher(mimeType);
  /frameworks/base/telephony/java/com/android/internal/telephony/gsm/
GsmDataConnection.java 156 return Patterns.IP_ADDRESS.matcher(address).matches();
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
Constants.java 227 return p.matcher(mimeType).matches();
  /packages/apps/Browser/src/com/android/browser/homepages/
RequestHandler.java 34 import java.util.regex.Matcher;
113 Matcher m = pattern.matcher(mUri.getPath());

Completed in 983 milliseconds

1 2 3 4 5 67 8 91011>>