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

<<31323334353637383940>>

  /external/toybox/toys/other/
stat.c 49 char *file, *pattern;
57 sprintf(toybuf, "%.*sll%c", TT.patlen, TT.pattern, c);
64 sprintf(toybuf, "%.*ss", TT.patlen, TT.pattern);
204 f = next_printf(f, &TT.pattern);
205 TT.patlen = f-TT.pattern;
206 if (TT.patlen>99) error_exit("bad %s", TT.pattern);
  /prebuilts/go/darwin-x86/src/path/
match_test.go 10 pattern, s string
74 ok, err := Match(tt.pattern, tt.s)
76 t.Errorf("Match(%#q, %#q) = %v, %v want %v, nil", tt.pattern, tt.s, ok, err, tt.match)
  /prebuilts/go/darwin-x86/src/text/template/
examplefiles_test.go 57 // pattern is the glob pattern used to find all the template files.
58 pattern := filepath.Join(dir, "*.tmpl")
63 tmpl := template.Must(template.ParseGlob(pattern))
89 // pattern is the glob pattern used to find all the template files.
90 pattern := filepath.Join(dir, "*.tmpl")
94 templates := template.Must(template.ParseGlob(pattern))
135 // pattern is the glob pattern used to find all the template files
    [all...]
  /prebuilts/go/linux-x86/src/path/
match_test.go 10 pattern, s string
74 ok, err := Match(tt.pattern, tt.s)
76 t.Errorf("Match(%#q, %#q) = %v, %v want %v, nil", tt.pattern, tt.s, ok, err, tt.match)
  /prebuilts/go/linux-x86/src/text/template/
examplefiles_test.go 57 // pattern is the glob pattern used to find all the template files.
58 pattern := filepath.Join(dir, "*.tmpl")
63 tmpl := template.Must(template.ParseGlob(pattern))
89 // pattern is the glob pattern used to find all the template files.
90 pattern := filepath.Join(dir, "*.tmpl")
94 templates := template.Must(template.ParseGlob(pattern))
135 // pattern is the glob pattern used to find all the template files
    [all...]
  /tools/loganalysis/src/com/android/loganalysis/util/
RegexTrie.java 24 import java.util.regex.Pattern;
27 * The RegexTrie is a trie where each _stored_ segment of the key is a regex {@link Pattern}. Thus,
28 * the full _stored_ key is a List<Pattern> rather than a String as in a standard trie. Note that
30 * {@link Pattern}s, rather than checked for equality as in a standard trie. It will likely perform
33 * One can also use a {@code null} entry in the {@code Pattern} sequence to serve as a wildcard. If
35 * When the retrieval code encounters a {@code null} {@code Pattern}, it will first wait to see if a
64 * HashTable. This is a simple stub class that makes a Pattern with a working
68 protected final Pattern mPattern;
70 CompPattern(Pattern pattern) {
208 CompPattern pattern = child.getKey(); local
    [all...]
  /tools/tradefederation/core/src/com/android/tradefed/util/
RegexTrie.java 24 import java.util.regex.Pattern;
28 * {@link Pattern}. Thus, the full <emph>stored</emph> key is a {@code List&lt;Pattern&gt;} rather
30 * {@link #retrieve(String...)} method will be pointwise matched against the {@code Pattern}s,
34 * One can also use a {@code null} entry in the {@code Pattern} sequence to serve as a wildcard. If
36 * When the retrieval code encounters a {@code null} {@code Pattern}, it will first wait to see if a
64 * HashTable. This is a simple stub class that makes a Pattern with a working
68 protected final Pattern mPattern;
70 CompPattern(Pattern pattern) {
208 CompPattern pattern = child.getKey(); local
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
DateTimePatternGenerator.java 49 * a pattern which just includes the desired fields and lengths. The generator
50 * will return the "best fit" pattern corresponding to that skeleton.
175 // keep this pattern to populate other time field
177 // use hour style in SHORT time pattern as the default
254 // Add pattern with its associated skeleton. Override any duplicate derived from std patterns,
517 * Return the best pattern matching the input skeleton. It is guaranteed to
520 * @param skeleton The skeleton is a pattern containing only the variable fields.
522 * @return Best pattern matching the input skeleton.
529 * Return the best pattern matching the input skeleton. It is guaranteed to
532 * @param skeleton The skeleton is a pattern containing only the variable fields
833 String pattern = patternWithSkelFlag.pattern; local
837 result.put(item.toString(), pattern); local
964 String pattern = patternWithSkelFlag.pattern; local
1747 public String pattern; field in class:DateTimePatternGenerator.PatternWithMatcher
1756 public String pattern; field in class:DateTimePatternGenerator.PatternWithSkeletonFlag
    [all...]
DateIntervalFormat.java 57 * For any punctuations and string literals inside a date time pattern,
59 * Without such information, so, it is difficult to generate a sub-pattern
60 * (or super-pattern) by algorithm.
61 * So, formatting a DateInterval is pattern-driven. It is very
64 * patterns, similar to date time pattern in SimpleDateFormat.
75 * only keeps the field pattern letter and ignores all other parts
76 * in a pattern, such as space, punctuations, and string literals.
80 * might hide a field's pattern letter length.
82 * For those non-digit calendar fields, the pattern letter length is
84 * and the field's pattern letter length is honored
1155 String pattern =dtpng.getBestPattern(timeSkeleton); local
1199 String pattern =dtpng.getBestPattern(timeSkeleton); local
1286 String pattern = dtpng.getBestPattern(skeleton); local
1602 PatternInfo pattern = fInfo.getIntervalPattern( local
1826 String pattern = SimpleFormatterImpl.formatRawPattern( local
    [all...]
MessageFormat.java 56 * <p>A MessageFormat is constructed from a <em>pattern</em> string
64 * behavior is defined by the pattern that you provide and the
69 * if the pattern has named arguments (see {@link #usesNamedArguments()}).
87 * a typeless argument in the pattern string
93 * (when the pattern contains only numbered arguments)
97 * and formatted according to its pattern specification
99 * A numbered pattern argument is matched with a map key that contains that number
156 * be a valid pattern string for the Format subclass used.
342 * specified pattern.
343 * Sets the locale and calls applyPattern(pattern)
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DateTimePatternGenerator.java 48 * a pattern which just includes the desired fields and lengths. The generator
49 * will return the "best fit" pattern corresponding to that skeleton.
179 // keep this pattern to populate other time field
181 // use hour style in SHORT time pattern as the default
258 // Add pattern with its associated skeleton. Override any duplicate derived from std patterns,
518 * Return the best pattern matching the input skeleton. It is guaranteed to
521 * @param skeleton The skeleton is a pattern containing only the variable fields.
523 * @return Best pattern matching the input skeleton.
531 * Return the best pattern matching the input skeleton. It is guaranteed to
534 * @param skeleton The skeleton is a pattern containing only the variable fields
845 String pattern = patternWithSkelFlag.pattern; local
849 result.put(item.toString(), pattern); local
982 String pattern = patternWithSkelFlag.pattern; local
1773 public String pattern; field in class:DateTimePatternGenerator.PatternWithMatcher
1782 public String pattern; field in class:DateTimePatternGenerator.PatternWithSkeletonFlag
    [all...]
DateIntervalFormat.java 56 * For any punctuations and string literals inside a date time pattern,
58 * Without such information, so, it is difficult to generate a sub-pattern
59 * (or super-pattern) by algorithm.
60 * So, formatting a DateInterval is pattern-driven. It is very
63 * patterns, similar to date time pattern in SimpleDateFormat.
74 * only keeps the field pattern letter and ignores all other parts
75 * in a pattern, such as space, punctuations, and string literals.
79 * might hide a field's pattern letter length.
81 * For those non-digit calendar fields, the pattern letter length is
83 * and the field's pattern letter length is honored
1168 String pattern =dtpng.getBestPattern(timeSkeleton); local
1212 String pattern =dtpng.getBestPattern(timeSkeleton); local
1299 String pattern = dtpng.getBestPattern(skeleton); local
1615 PatternInfo pattern = fInfo.getIntervalPattern( local
1839 String pattern = SimpleFormatterImpl.formatRawPattern( local
    [all...]
MessageFormat.java 55 * <p>A MessageFormat is constructed from a <em>pattern</em> string
63 * behavior is defined by the pattern that you provide and the
68 * if the pattern has named arguments (see {@link #usesNamedArguments()}).
86 * a typeless argument in the pattern string
92 * (when the pattern contains only numbered arguments)
96 * and formatted according to its pattern specification
98 * A numbered pattern argument is matched with a map key that contains that number
155 * be a valid pattern string for the Format subclass used.
342 * specified pattern.
343 * Sets the locale and calls applyPattern(pattern)
    [all...]
  /external/ImageMagick/MagickCore/
mime.c 77 *pattern;
283 if ((p->pattern != (char *) NULL) && (filename != (char *) NULL))
285 if (GlobExpression(filename,p->pattern,MagickFalse) != MagickFalse)
412 % pattern.
416 % const MimeInfo **GetMimeInfoList(const char *pattern,
421 % o pattern: Specifies a pointer to a text string containing a pattern.
451 MagickExport const MimeInfo **GetMimeInfoList(const char *pattern,
466 assert(pattern != (char *) NULL);
467 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",pattern);
74 *pattern; member in struct:_MimeInfo
    [all...]
  /external/icu/icu4c/source/i18n/
dtitvfmt.cpp 97 sprintf(mesg, "skeleton: %s; pattern: %s\n", result, result_1);
366 * the smallest calendar field in pattern,
373 // If the first part in interval pattern is empty,
374 // the 2nd part of it saves the full-pattern used in fall-back.
375 // For a 'real' interval pattern, the first part will never be empty.
394 // break the interval pattern into 2 parts,
572 * For example, interval pattern from "Jan 10, 2007 10:10 am"
578 * For example, interval pattern from "Jan 10, 2007 10:10 am"
582 * 2. even a pattern does not request a certion calendar field,
583 * the interval pattern needs to include such field if such fields ar
690 UnicodeString pattern = DateFormat::getBestPattern( local
716 UnicodeString pattern = DateFormat::getBestPattern( local
1047 UnicodeString pattern = DateFormat::getBestPattern( local
1096 const UnicodeString* pattern = &intervalPattern; local
1164 UnicodeString pattern; local
    [all...]
  /external/icu/icu4c/source/common/unicode/
uniset.h 72 * string pattern.
74 * <p><b>Pattern syntax</b></p>
185 * <td nowrap valign="top" align="right"><code>pattern :=&nbsp; </code></td>
191 * <td valign="top"><code>char | (char '-' char) | pattern-expr<br>
195 * <td nowrap valign="top" align="right"><code>pattern-expr :=&nbsp; </code></td>
196 * <td valign="top"><code>pattern | pattern-expr pattern |
197 * pattern-expr op pattern<br
    [all...]
  /external/icu/icu4c/source/i18n/unicode/
decimfmt.h 107 * UnicodeString pattern;
126 * pattern = ((DecimalFormat*)form)->toPattern(pattern);
127 * cout << locales[i].getDisplayName(displayName) << ": " << pattern;
159 * <p>A DecimalFormat consists of a <em>pattern</em> and a set of
160 * <em>symbols</em>. The pattern may be set directly using
162 * manipulate aspects of the pattern, such as the minimum number of integer
165 * pattern and symbols are read from ICU's locale data.
167 * <p><strong>Special Pattern Characters</strong>
169 * <p>Many characters in a pattern are taken literally; they are matched durin
    [all...]
  /external/skia/src/pdf/
SkPDFUtils.cpp 255 // Select Pattern color space (CS, cs) and set pattern object as current
260 content->writeText("/Pattern CS/Pattern cs/");
343 void SkPDFUtils::PopulateTilingPatternDict(SkPDFDict* pattern,
351 pattern->insertName("Type", "Pattern");
352 pattern->insertInt("PatternType", kTiling_PatternType);
353 pattern->insertInt("PaintType", kColoredTilingPattern_PaintType);
354 pattern->insertInt("TilingType", kConstantSpacing_TilingType)
    [all...]
  /external/skqp/src/pdf/
SkPDFUtils.cpp 255 // Select Pattern color space (CS, cs) and set pattern object as current
260 content->writeText("/Pattern CS/Pattern cs/");
343 void SkPDFUtils::PopulateTilingPatternDict(SkPDFDict* pattern,
351 pattern->insertName("Type", "Pattern");
352 pattern->insertInt("PatternType", kTiling_PatternType);
353 pattern->insertInt("PaintType", kColoredTilingPattern_PaintType);
354 pattern->insertInt("TilingType", kConstantSpacing_TilingType)
    [all...]
  /system/core/toolbox/upstream-netbsd/usr.bin/grep/
grep.c 72 /* 5*/ "\t[-e pattern] [-f file] [--binary-files=value] [--color=when]\n",
74 /* 7*/ "\t[pattern] [file ...]\n",
85 char **pattern; variable
114 bool wflag; /* -w: pattern must start and end on word boundaries */
115 bool xflag; /* -x: pattern must match entire line */
222 * Adds a searching pattern to the internal array.
233 pattern = grep_realloc(pattern, ++pattern_sz *
234 sizeof(*pattern));
239 pattern[patterns] = grep_malloc(len + 1)
    [all...]
  /prebuilts/tools/common/m2/repository/commons-beanutils/commons-beanutils/1.8.0/
commons-beanutils-1.8.0.jar 
  /prebuilts/tools/common/m2/repository/commons-beanutils/commons-beanutils/1.9.2/
commons-beanutils-1.9.2.jar 
  /prebuilts/tools/common/m2/repository/commons-beanutils/commons-beanutils-core/1.8.3/
commons-beanutils-core-1.8.3.jar 
  /external/libxml2/
triostr.c 724 @param pattern Pattern, including wildcards, to search for.
735 TRIO_ARGS2((string, pattern),
737 TRIO_CONST char *pattern)
740 assert(pattern);
742 for (; ('*' != *pattern); ++pattern, ++string)
746 return (NIL == *pattern);
748 if ((trio_to_upper((int)*string) != trio_to_upper((int)*pattern))
749 && ('?' != *pattern))
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/
MessageFormatTest.java 97 String pattern = "getLocale test {0,number,#,####}"; local
100 MessageFormat mf = new MessageFormat(pattern, l[i]);
107 MessageFormat mf = new MessageFormat(pattern);
137 assertEquals("Test1B:wrong format for pattern index " + i + ":", correctFormats[i], formats[i]);
190 String pattern = "A {3, number, currency} B {2, time} C {0, number, percent} D {4} E {1,choice,0#off|1#on} F {0, date}"; local
191 MessageFormat mf = new MessageFormat(pattern);
262 String pattern = "Date: {0,date} Currency: {1, number, currency} Integer: {2, number, integer}"; local
263 String sFormat = MessageFormat.format(pattern, (Object[]) args);
268 pattern = "abc {4, number, integer} def {3,date} ghi {2,number} jkl {1,choice,0#low|1#high} mnop {0}";
271 sFormat = MessageFormat.format(pattern, args_)
600 String pattern = "On {4,date} at {3,time}, he ate {2,number, integer} hamburger{2,choice,1#|1<s}."; local
887 String pattern = "[{0}]"; local
900 String pattern = "A {3, number, currency} B {2, time} C {0, number, percent} D {4} E {1,choice,0#off|1#on} F {0, date}"; local
959 final String pattern = "ab{0,choice,0#1'2''3'''4''''.}yz"; local
    [all...]

Completed in 1081 milliseconds

<<31323334353637383940>>