HomeSort by relevance Sort by last modified time
    Searched refs:pattern (Results 1326 - 1350 of 4320) sorted by null

<<51525354555657585960>>

  /libcore/ojluni/src/test/java/time/tck/java/time/format/
TCKDateTimeFormatterBuilder.java 381 public void test_appendOffset_format(String pattern, int h, int m, int s, String expected) throws Exception {
382 builder.appendOffset(pattern, "Z");
389 public void test_appendOffset_parse(String pattern, int h, int m, int s, String expected) throws Exception {
390 builder.appendOffset(pattern, "Z");
414 public void test_appendOffset_badPattern(String pattern) throws Exception {
415 builder.appendOffset(pattern, "Z");
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/go/internal/load/
flag_test.go 87 // ppfDirTest(pattern, n, dirs...) says the first n dirs should match and the others should not.
97 func ppfDirTest(pattern string, nmatch int, dirs ...string) ppfTest {
106 return ppfTest{args: []string{pattern + "=-S"}, pkgs: pkgs}
  /prebuilts/go/linux-x86/src/cmd/go/internal/load/
flag_test.go 87 // ppfDirTest(pattern, n, dirs...) says the first n dirs should match and the others should not.
97 func ppfDirTest(pattern string, nmatch int, dirs ...string) ppfTest {
106 return ppfTest{args: []string{pattern + "=-S"}, pkgs: pkgs}
  /system/extras/boottime_tools/bootanalyze/
bugreport_anayze.py 142 self.event_patterns = {key: re.compile(pattern)
143 for key, pattern in cfg['events'].iteritems()}
144 self.timing_patterns = {key: re.compile(pattern)
145 for key, pattern in cfg['timings'].iteritems()}
146 self.shutdown_event_patterns = {key: re.compile(pattern)
147 for key, pattern in cfg['shutdown_events'].iteritems()}
  /prebuilts/tools/common/m2/repository/org/xerial/sqlite-jdbc/3.16.1/
sqlite-jdbc-3.16.1.jar 
  /prebuilts/tools/common/m2/repository/org/xerial/sqlite-jdbc/3.20.1/
sqlite-jdbc-3.20.1.jar 
  /external/annotation-tools/asmx/src/org/objectweb/asm/xml/
ASMContentHandler.java 486 String pattern = path; local
488 pattern = path.substring(1);
489 lpatterns.add(pattern);
491 pattern = path.substring(0, path.length() - 1);
492 rpatterns.add(pattern);
494 rules.put(pattern, rule);
504 String pattern = (String) it.next(); local
505 if (path.substring(n).endsWith(pattern)) {
506 return rules.get(pattern);
511 String pattern = (String) it.next() local
    [all...]
  /external/clang/tools/scan-build-py/libscanbuild/
intercept.py 245 pattern = re.compile(r'System Integrity Protection status:\s+enabled')
248 pattern = re.compile(r'SELinux status:\s+enabled')
255 return any((pattern.match(line) for line in lines.splitlines()))
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
IntlTestDecimalFormatAPI.java 116 final String pattern = new String("#,##0.# FF"); local
119 pat = new DecimalFormat(pattern);
122 errln("ERROR: Could not create DecimalFormat (pattern)");
127 DecimalFormat cust1 = new DecimalFormat(pattern, symbols);
242 logln("Pattern is " + funkyPat);
246 logln("Localized pattern is " + locPat);
253 logln("Applying pattern " + p1);
257 logln("Extracted pattern is " + s2);
259 errln("ERROR: toPattern() result did not match pattern applied");
263 logln("Applying pattern " + p2)
    [all...]
  /external/icu/icu4c/source/common/
messagepattern.cpp 162 MessagePattern::MessagePattern(const UnicodeString &pattern, UParseError *parseError, UErrorCode &errorCode)
168 parse(pattern, parseError, errorCode);
268 MessagePattern::parse(const UnicodeString &pattern, UParseError *parseError, UErrorCode &errorCode) {
269 preParse(pattern, parseError, errorCode);
276 MessagePattern::parseChoiceStyle(const UnicodeString &pattern,
278 preParse(pattern, parseError, errorCode);
285 MessagePattern::parsePluralStyle(const UnicodeString &pattern,
287 preParse(pattern, parseError, errorCode);
294 MessagePattern::parseSelectStyle(const UnicodeString &pattern,
296 preParse(pattern, parseError, errorCode)
    [all...]
simpleformatter.cpp 64 const UnicodeString &pattern,
73 const UChar *patternBuffer = pattern.getBuffer();
74 int32_t patternLength = pattern.length();
111 // MessagePattern permits PatternProps.skipWhiteSpace(pattern, index)
217 // If the pattern starts with an argument whose value is the same object
  /external/icu/icu4c/source/i18n/
ulocdata.cpp 282 const UChar *pattern = NULL; local
303 pattern = ures_getStringByKey(patternBundle, "pattern", &len, &localStatus);
318 u_strncpy(result, pattern, resultCapacity);
370 /* For backwards compatibility, if we have a pattern, return the portion between {0} and {1} */
  /external/icu/icu4c/source/i18n/unicode/
udat.h 139 * <p>Date and time formats are specified by <em>date and time pattern</em> strings.
140 * Within date and time pattern strings, all unquoted ASCII letters [A-Za-z] are reserved
141 * as pattern letters representing calendar fields. <code>UDateFormat</code> supports
142 * the date and time formatting algorithm and pattern letters defined by
186 * Use the pattern given in the parameter to udat_open
557 * resolution and a fractional seconds sub-pattern of SSS. If the
558 * sub-pattern is S or SS, the fractional seconds value will be truncated
560 * fractional seconds sub-pattern is longer than SSS, the additional
783 * no corresponding UCAL_ field. No pattern character is currently
804 * Is a pattern character defined for UDAT_TIME_SEPARATOR_FIELD
    [all...]
  /external/icu/icu4c/source/test/intltest/
dadrfmt.cpp 81 // spec: either 'PATTERN=y mm h' etc, or 'DATE=SHORT,TIME=LONG'
97 UnicodeString kPATTERN("PATTERN="); // TODO: static
117 UnicodeString pattern; local
165 pattern = UnicodeString(spec,kPATTERN.length());
167 format = new SimpleDateFormat(pattern, loc, status);
169 errln("case %d: could not create SimpleDateFormat from pattern: %s", n, u_errorName(status));
  /external/icu/icu4c/source/tools/toolutil/
package.cpp 936 Package::findItems(const char *pattern) {
939 if(pattern==NULL || *pattern==0) {
944 findPrefix=pattern;
948 wild=strchr(pattern, '*');
951 findPrefixLength=(int32_t)strlen(pattern);
954 findPrefixLength=(int32_t)(wild-pattern);
959 fprintf(stderr, "icupkg: syntax error (more than one '*') in item pattern \"%s\"\n", pattern);
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
IntlTestDecimalFormatAPI.java 113 final String pattern = new String("#,##0.# FF"); local
116 pat = new DecimalFormat(pattern);
119 errln("ERROR: Could not create DecimalFormat (pattern)");
124 DecimalFormat cust1 = new DecimalFormat(pattern, symbols);
239 logln("Pattern is " + funkyPat);
243 logln("Localized pattern is " + locPat);
250 logln("Applying pattern " + p1);
254 logln("Extracted pattern is " + s2);
256 errln("ERROR: toPattern() result did not match pattern applied");
260 logln("Applying pattern " + p2)
    [all...]
  /external/python/cpython2/Lib/test/
test_glob.py 47 pattern = parts[0]
49 pattern = os.path.join(*parts)
50 p = os.path.join(self.tempdir, pattern)
121 # When there is a wildcard pattern which ends with os.sep, glob()
  /external/smali/util/src/main/java/org/jf/util/jcommander/
HelpFormatter.java 51 import java.util.regex.Pattern;
100 final Pattern pattern = Pattern.compile("^-*(.*)$"); local
105 Matcher matcher = pattern.matcher(o1.getParameter().names()[0]);
113 matcher = pattern.matcher(o2.getParameter().names()[0]);
  /external/stressapptest/src/
finelock_queue.cc 32 // In this implementation, a free page is those page entries where pattern is
33 // null (pe->pattern == 0)
258 data.l32.l = pe.lastpattern->pattern(offset << 1);
259 data.l32.h = pe.lastpattern->pattern((offset << 1) + 1);
430 pages_[index].pattern = 0;
  /external/v8/src/parsing/
parser.h 142 Parameter(const AstRawString* name, Expression* pattern,
146 pattern(pattern),
151 Expression* pattern; member in struct:v8::internal::ParserFormalParameters::Parameter
157 return pattern->IsVariableProxy() && initializer == nullptr && !is_rest;
162 return is_rest && pattern->IsVariableProxy();
413 void RecurseIntoSubpattern(AstNode* pattern, Expression* value) {
417 Visit(pattern);
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_glob.py 47 pattern = parts[0]
49 pattern = os.path.join(*parts)
50 p = os.path.join(self.tempdir, pattern)
121 # When there is a wildcard pattern which ends with os.sep, glob()
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_glob.py 47 pattern = parts[0]
49 pattern = os.path.join(*parts)
50 p = os.path.join(self.tempdir, pattern)
121 # When there is a wildcard pattern which ends with os.sep, glob()
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_glob.py 47 pattern = parts[0]
49 pattern = os.path.join(*parts)
50 p = os.path.join(self.tempdir, pattern)
121 # When there is a wildcard pattern which ends with os.sep, glob()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_glob.py 47 pattern = parts[0]
49 pattern = os.path.join(*parts)
50 p = os.path.join(self.tempdir, pattern)
121 # When there is a wildcard pattern which ends with os.sep, glob()
  /tools/loganalysis/tests/src/com/android/loganalysis/parser/
KernelLogParserTest.java 195 for (String pattern : kernelResetPatterns) {
196 assertEquals(String.format("Message \"%s\" was not matched.", pattern),
197 KernelLogParser.KERNEL_RESET, patternUtil.checkMessage(pattern));

Completed in 1458 milliseconds

<<51525354555657585960>>