Searched defs:PATTERN (Results 1 - 25 of 52) sorted by relevance

123

/external/python/cpython2/Lib/lib2to3/fixes/
H A Dfix_basestring.py11 PATTERN = "'basestring'" variable in class:FixBasestring
H A Dfix_long.py14 PATTERN = "'long'" variable in class:FixLong
H A Dfix_types.py56 PATTERN = '|'.join(_pats) variable in class:FixTypes
H A Dfix_unicode.py18 PATTERN = "STRING | 'unicode' | 'unichr'" variable in class:FixUnicode
H A Dfix_renames.py44 PATTERN = "|".join(build_pattern()) variable in class:FixRenames
/external/python/cpython3/Lib/lib2to3/fixes/
H A Dfix_basestring.py11 PATTERN = "'basestring'" variable in class:FixBasestring
H A Dfix_long.py14 PATTERN = "'long'" variable in class:FixLong
H A Dfix_types.py55 PATTERN = '|'.join(_pats) variable in class:FixTypes
H A Dfix_unicode.py18 PATTERN = "STRING | 'unicode' | 'unichr'" variable in class:FixUnicode
H A Dfix_renames.py44 PATTERN = "|".join(build_pattern()) variable in class:FixRenames
/external/skia/tools/skpbench/
H A D_benchresult.py14 PATTERN = re.compile('^(?P<accum_pad> *)' variable in class:BenchResult
39 match = cls.PATTERN.search(text)
/external/skqp/tools/skpbench/
H A D_benchresult.py14 PATTERN = re.compile('^(?P<accum_pad> *)' variable in class:BenchResult
39 match = cls.PATTERN.search(text)
/external/objenesis/tck/src/main/java/org/objenesis/tck/search/
H A DSystemOutListener.java26 private static final String PATTERN = "%-65s: %s%n"; field in class:SystemOutListener
29 System.out.printf(PATTERN, c.getSimpleName() + " (" + getTypology(c) + ")", "Working!");
33 System.out.printf(PATTERN, c.getSimpleName() + "(" + getTypology(c) + ")", "KO - " + t);
/external/doclava/src/com/google/doclava/
H A DThrowsTagInfo.java31 static final Pattern PATTERN = Pattern.compile("(\\S+)\\s+(.*)", Pattern.DOTALL); field in class:ThrowsTagInfo
39 Matcher m = PATTERN.matcher(text);
H A DParamTagInfo.java31 static final Pattern PATTERN = Pattern.compile("([^ \t\r\n]+)[ \t\r\n]+(.*)", Pattern.DOTALL); field in class:ParamTagInfo
47 Matcher m = PATTERN.matcher(text);
/external/icu/icu4c/source/tools/gencolusb/
H A Dextract_unsafe_backwards.cpp22 #define PATTERN 0 //< Generate a UnicodeSet pattern (depends on #11891 AND probably slower. No support in collationdatareader.cpp) macro
61 #if PATTERN
118 #if PATTERN
/external/python/cpython2/Tools/scripts/
H A Dfixdiv.py177 PATTERN = ("^(.+?):(\d+): DeprecationWarning: " variable
181 prog = re.compile(PATTERN)
/external/python/cpython3/Tools/scripts/
H A Dfixdiv.py177 PATTERN = (r"^(.+?):(\d+): DeprecationWarning: " variable
181 prog = re.compile(PATTERN)
/external/python/cpython2/Lib/lib2to3/
H A Dfixer_base.py25 PATTERN = None # Most subclasses should override with a string literal variable in class:BaseFix
62 """Compiles self.PATTERN into self.pattern.
65 self.{pattern,PATTERN} in .match().
67 if self.PATTERN is not None:
69 self.pattern, self.pattern_tree = PC.compile_pattern(self.PATTERN,
/external/python/cpython3/Lib/lib2to3/
H A Dfixer_base.py24 PATTERN = None # Most subclasses should override with a string literal variable in class:BaseFix
60 """Compiles self.PATTERN into self.pattern.
63 self.{pattern,PATTERN} in .match().
65 if self.PATTERN is not None:
67 self.pattern, self.pattern_tree = PC.compile_pattern(self.PATTERN,
/external/caliper/caliper/src/main/java/com/google/caliper/util/
H A DShortDuration.java68 Matcher matcher = PATTERN.matcher(s);
84 private static final Pattern PATTERN = Pattern.compile("^([0-9.eE+-]+) ?(\\S+)$"); field in class:ShortDuration
/external/icu/android_icu4j/src/main/java/android/icu/util/
H A DLocaleData.java29 private static final String PATTERN = "pattern"; field in class:LocaleData
410 String localeDisplayPattern = locDispBundle.getStringWithFallback(PATTERN);
/external/icu/icu4c/source/test/cintltst/
H A Dusrchdat.c243 static const SearchData PATTERN[] = { variable
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
H A DLocaleData.java29 private static final String PATTERN = "pattern"; field in class:LocaleData
425 String localeDisplayPattern = locDispBundle.getStringWithFallback(PATTERN);
/external/libphonenumber/libphonenumber/src/com/google/i18n/phonenumbers/
H A DPhoneNumberMatcher.java59 private static final Pattern PATTERN; field in class:PhoneNumberMatcher
126 /* Builds the MATCHING_BRACKETS and PATTERN regular expressions. The building blocks below exist
169 PATTERN = Pattern.compile(
249 Matcher matcher = PATTERN.matcher(text);

Completed in 1008 milliseconds

123