HomeSort by relevance Sort by last modified time
    Searched refs:pattern (Results 551 - 575 of 1099) sorted by null

<<21222324252627282930>>

  /libcore/expectations/
icebox.txt 178 pattern: ".*java.io.IOException.*openCheck.*"
  /ndk/sources/host-tools/make-3.81/
variable.h 97 /* Structure used for pattern-specific variables. */
126 extern int pattern_matches PARAMS ((char *pattern, char *percent, char *str));
129 extern char *patsubst_expand PARAMS ((char *o, char *text, char *pattern, char *replace,
read.c 134 static void record_files PARAMS ((struct nameseq *filenames, char *pattern, char *pattern_percent,
472 char *pattern = 0, *pattern_percent;
482 record_files (filenames, pattern, pattern_percent, deps, \
489 if (pattern) { free(pattern); pattern = 0; } \
770 char *pattern;
776 pattern = savestring (p, len);
779 selective VPATH's with the same pattern. */
782 /* No pattern means remove all previous selective VPATH's. *
468 char *pattern = 0, *pattern_percent; local
766 char *pattern; local
    [all...]
function.c 139 and replacing strings matching PATTERN with REPLACE.
140 If PATTERN_PERCENT is not nil, PATTERN has already been
149 patsubst_expand (char *o, char *text, char *pattern, char *replace,
158 /* We call find_percent on REPLACE before checking PATTERN so that REPLACE
159 will be collapsed before we call subst_expand if PATTERN has no %. */
182 pattern_percent = find_percent (pattern);
187 /* With no % in the pattern, this is just a simple substitution. */
188 return subst_expand (o, text, pattern, replace,
189 strlen (pattern), strlen (replace), 1);
191 /* Record the length of PATTERN before and after the
    [all...]
  /external/icu4c/common/unicode/
uset.h 266 * Creates a set from the given pattern. See the UnicodeSet class
267 * description for the syntax of the pattern language.
268 * @param pattern a string specifying what characters are in the set
269 * @param patternLength the length of the pattern, or -1 if null
275 uset_openPattern(const UChar* pattern, int32_t patternLength,
279 * Creates a set from the given pattern. See the UnicodeSet class
280 * description for the syntax of the pattern language.
281 * @param pattern a string specifying what characters are in the set
282 * @param patternLength the length of the pattern, or -1 if null
284 * @param options bitmask for options to apply to the pattern
    [all...]
  /external/icu4c/i18n/unicode/
ulocdata.h 146 * @param options Bitmask for options to apply to the exemplar pattern.
234 * Returns locale display pattern associated with a locale.
238 * @param pattern locale display pattern for locale.
240 * pattern with.
244 * than patternCapacity, the returned pattern will be truncated.
250 UChar *pattern,
  /external/icu4c/test/intltest/
dcfmtest.cpp 215 "(\\S+)\\s+" // Capture group 1: pattern
249 // Separate out the three main fields - pattern, flags, target.
279 formatLineMat.group(1, status), // Pattern
311 UnicodeString pattern = UNICODE_STRING_SIMPLE("####"); local
312 DecimalFormat format(pattern, symbols, status);
367 const UnicodeString &pattern, // Pattern
377 // printf("Pattern = %s\n", UnicodeStringPiece(pattern).data());
378 DecimalFormat fmtr(pattern, symbols, status)
    [all...]
dadrfmt.cpp 78 // spec: either 'PATTERN=y mm h' etc, or 'DATE=SHORT,TIME=LONG'
93 UnicodeString kPATTERN("PATTERN="); // TODO: static
113 UnicodeString pattern; local
155 pattern = UnicodeString(spec,kPATTERN.length());
157 format = new SimpleDateFormat(pattern, loc, status);
159 errln("case %d: could not create SimpleDateFormat from pattern: %s", n, u_errorName(status));
  /external/llvm/utils/lit/lit/
TestFormats.py 145 pattern=".*", useTempInput=False):
154 self.pattern = re.compile(pattern)
173 not self.pattern.match(filename) or
  /external/stressapptest/src/
pattern.cc 15 // pattern.cc : library of stressful data patterns
21 #include "pattern.h"
48 {1, 1, 2, 1} // Weight for choosing 32/64/128/256 bit wide of this pattern
236 Pattern::Pattern() {
240 Pattern::~Pattern() {
246 // Calculate CRC for this pattern. This must match
248 int Pattern::CalculateCrc() {
262 a1 += pattern(i)
    [all...]
  /packages/apps/Browser/src/com/android/browser/homepages/
Template.java 26 import java.util.regex.Pattern;
186 final Pattern pattern = Pattern.compile("<%([=\\{])\\s*(\\w+)\\s*%>"); local
187 Matcher m = pattern.matcher(template);
199 Pattern p = Pattern.compile("<%\\}\\s*" + Pattern.quote(name) + "\\s*%>");
237 final Pattern pattern = Pattern.compile("<%@\\s*(\\w+/\\w+)\\s*%>"); local
    [all...]
  /system/core/sh/
nodes.h 89 union node *pattern; member in struct:nclist
  /external/emma/core/java12/com/vladium/util/exception/
ExceptionCommon.java 317 final String pattern = getMessage (namespace, code);
319 // assertion: pattern != null
323 return pattern;
329 return MessageFormat.format (pattern, arguments);
  /external/icu4c/i18n/
ulocdata.c 257 const UChar *pattern = NULL; local
278 pattern = ures_getStringByKey(patternBundle, "pattern", &len, &localStatus);
293 u_strncpy(result, pattern, resultCapacity);
  /external/icu4c/samples/strsrch/
strsrch.cpp 12 "usage: strsrch [options*] -source source_string -pattern pattern_string\n"
24 "-pattern string Pattern string to look for in source\n"
27 "Example strsrch -rules \\u0026b\\u003ca -source a\\u0020b\\u0020bc -pattern b\n"
63 UChar pattern[100]; variable
78 {"-pattern", OptSpec::STRING, &opt_pattern},
232 u_unescape(opt_pattern, pattern, 100);
234 search = usearch_openFromCollator(pattern, -1, source, -1, collator, NULL,
258 fprintf(stdout, "Pattern not found in source\n");
261 fprintf(stdout, "Pattern found at offset %d size %d\n", offset
    [all...]
  /external/icu4c/samples/ugrep/
ugrep.cpp 36 const char *pattern = NULL; // The regular expression variable
97 // Create a RegexPattern object from the user supplied pattern string.
102 UParseError parseErr; // In the event of a syntax error in the regex pattern,
106 RegexPattern *rePat = RegexPattern::compile(pattern, parseErr, status);
108 // of the (char *) pattern to a temporary
111 fprintf(stderr, "ugrep: error in pattern: \"%s\" at position %d\n",
117 // Create a RegexMatcher from the newly created pattern.
134 // Loop through the lines of a file, trying to match the regex pattern on each.
221 int remainingArgs = argc-optInd; // pattern file ...
223 fprintf(stderr, "ugrep: files or pattern are missing.\n")
    [all...]
  /external/webkit/PerformanceTests/SunSpider/
sunspider 57 --tests Only run tests matching provided pattern
182 my ($dir, $pattern) = @_;
188 if ($file =~ $pattern) {
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
InnerNodeImpl.java 257 * Returns true if {@code pattern} equals either "*" or {@code s}. Pattern
260 private static boolean matchesNameOrWildcard(String pattern, String s) {
261 return "*".equals(pattern) || Objects.equal(pattern, s);
  /external/libxslt/libxslt/
pattern.c 2 * pattern.c: Implemetation of the template match compilation and lookup
34 #include "pattern.h"
102 const xmlChar *pattern; /* the pattern */ member in struct:_xsltCompMatch
182 if (comp->pattern != NULL)
183 xmlFree((xmlChar *)comp->pattern);
457 if (comp->pattern[0] != '/') {
461 query = xmlStrcat(query, comp->pattern);
463 xmlFree((xmlChar *) comp->pattern);
464 comp->pattern = query
    [all...]
  /external/webkit/Tools/Scripts/webkitpy/style/checkers/
cpp.py 137 def match(pattern, s):
138 """Matches the string with the pattern, caching the compiled regexp."""
139 if not pattern in _regexp_compile_cache:
140 _regexp_compile_cache[pattern] = sre_compile.compile(pattern)
141 return _regexp_compile_cache[pattern].match(s)
144 def search(pattern, s):
145 """Searches the string for the pattern, caching the compiled regexp."""
146 if not pattern in _regexp_compile_cache:
147 _regexp_compile_cache[pattern] = sre_compile.compile(pattern
    [all...]
  /external/chromium/chrome/browser/content_settings/
content_settings_policy_provider.cc 349 ContentSettingsPattern pattern(original_pattern_str);
351 if (!pattern.IsValid()) {
352 VLOG(1) << "Ignoring invalid content settings pattern: " <<
353 pattern.AsString();
357 pattern,
358 pattern,
  /packages/apps/Settings/src/com/android/settings/
ChooseLockPattern.java 44 * If the user has a lock pattern set already, makes them confirm the existing one.
46 * Then, prompts the user to choose a lock pattern:
47 * - prompts for initial pattern
53 * Used by the choose lock pattern wizard to indicate the wizard is
94 // how long we wait to clear a wrong pattern
107 * The patten used during the help screen to show how to draw a pattern.
133 * The pattern listener that responds according to a user choosing a new
134 * lock pattern.
148 public void onPatternDetected(List<LockPatternView.Cell> pattern) {
151 "null chosen pattern in stage 'need to confirm")
    [all...]
  /sdk/lint/libs/lint_checks/src/com/android/tools/lint/checks/
SecurityDetector.java 314 Attr pattern = element.getAttributeNodeNS(ANDROID_URI, ATTR_PATH_PATTERN); local
323 if (pattern != null && (pattern.getValue().equals("/") //$NON-NLS-1$
324 /* || pattern.getValue().equals(".*")*/)) {
325 context.report(OPEN_PROVIDER, pattern, context.getLocation(pattern), msg, null);
  /external/icu4c/test/cintltst/
cnmdptst.c 80 log_err_status(status, "FAIL: Number format constructor failed for pattern %s -> %s\n", pat[i], u_errorName(status));
91 log_err("FAIL: Number format extracting the pattern failed for %s\n", pat[i]);
95 log_err("FAIL: Pattern %s should be transmute to %s; %s seen instead\n", pat[i], newpat[i], austrdup(unewp) );
110 log_err("FAIL: Pattern %s should format zero as %s; %s Seen instead\n", pat[i], num[i], austrdup(str) );
133 log_err_status(status, "Error in number format costruction using pattern \"a'fo''o'b#\" -> %s\n", u_errorName(status));
146 log_verbose("Pattern \"%s\" \n", u_austrcpy(tempBuf, pat) );
162 log_err("Error in number format costruction using pattern \"a''b#\"\n");
174 log_verbose("Pattern \"%s\" \n", u_austrcpy(tempBuf, pat) );
185 /* Test exponential pattern*/
193 UChar pattern[20] local
341 UChar *pattern=NULL; local
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/
locale_facets_nonio.h 820 * pattern for formatting a money amount. Each field may contain one entry
830 struct pattern { char field[4]; }; struct in class:money_base
832 static const pattern _S_default_pattern;
845 // Construct and return valid pattern consisting of some combination of:
847 static pattern
866 money_base::pattern _M_pos_format;
867 money_base::pattern _M_neg_format;
883 _M_pos_format(money_base::pattern()),
884 _M_neg_format(money_base::pattern()), _M_allocated(false)
    [all...]

Completed in 638 milliseconds

<<21222324252627282930>>