Searched refs:pattern (Results 851 - 875 of 1271) sorted by relevance

<<31323334353637383940>>

/external/chromium_org/third_party/skia/src/core/
H A DSkPictureRecord.cpp260 * Attempt to match the provided pattern of commands starting at 'offset'
262 * return true with all the pattern information filled out in the result
267 int* pattern, CommandInfo* result, int numCommands) {
283 if (kDRAW_BITMAP_FLAVOR == pattern[numMatched]) {
288 } else if (op != pattern[numMatched]) {
333 int pattern[] = { SAVE_LAYER, kDRAW_BITMAP_FLAVOR, /* RESTORE */ }; local
334 CommandInfo result[SK_ARRAY_COUNT(pattern)];
336 if (!match(writer, -offset, pattern, result, SK_ARRAY_COUNT(pattern))) {
446 int pattern[] local
266 match(SkWriter32* writer, uint32_t offset, int* pattern, CommandInfo* result, int numCommands) argument
[all...]
/external/libxml2/
H A Dpattern.c2 * pattern.c: Implemetation of selectors for nodes
18 * - making clear how pattern starting with / or . need to be handled,
36 #include <libxml/pattern.h>
109 struct _xmlStreamCtxt *next;/* link to next sub pattern if | */
167 struct _xmlPattern *next; /* next pattern if | is used */
168 const xmlChar *pattern; /* the pattern */ member in struct:_xmlPattern
241 if (comp->pattern != NULL)
242 xmlFree((xmlChar *)comp->pattern);
282 * @pattern
292 xmlNewPatParserContext(const xmlChar *pattern, xmlDictPtr dict, const xmlChar **namespaces) argument
2358 xmlPatterncompile(const xmlChar *pattern, xmlDict *dict, int flags, const xmlChar **namespaces) argument
[all...]
/external/skia/src/core/
H A DSkPictureRecord.cpp280 * Attempt to match the provided pattern of commands starting at 'offset'
282 * return true with all the pattern information filled out in the result
287 int* pattern, CommandInfo* result, int numCommands) {
303 if (kDRAW_BITMAP_FLAVOR == pattern[numMatched]) {
308 } else if (op != pattern[numMatched]) {
354 int pattern[] = { SAVE_LAYER, kDRAW_BITMAP_FLAVOR, /* RESTORE */ }; local
355 CommandInfo result[SK_ARRAY_COUNT(pattern)];
357 if (!match(writer, -offset, pattern, result, SK_ARRAY_COUNT(pattern))) {
468 int pattern[] local
286 match(SkWriter32* writer, uint32_t offset, int* pattern, CommandInfo* result, int numCommands) argument
[all...]
/external/chromium_org/chrome/browser/extensions/
H A Dconvert_user_script_unittest.cc25 static void AddPattern(URLPatternSet* extent, const std::string& pattern) { argument
27 extent->AddPattern(URLPattern(schemes, pattern));
/external/chromium_org/chrome/browser/renderer_context_menu/
H A Drender_view_context_menu_unittest.cc74 // Generates a URLPatternSet with a single pattern
75 static URLPatternSet CreatePatternSet(const std::string& pattern) { argument
77 target.Parse(pattern);
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/news/javascript/
H A Dfeed.js105 var pattern = /ar_/gi;
106 var result = titleImgUrl.match(pattern);
/external/chromium_org/extensions/common/
H A Dmanifest_test.cc192 const std::string& pattern) {
194 extent->AddPattern(URLPattern(schemes, pattern));
191 AddPattern(extensions::URLPatternSet* extent, const std::string& pattern) argument
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLInputElement.idl52 [Reflect] attribute DOMString pattern;
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dtsdcfmsy.cpp249 void IntlTestDecimalFormatSymbols::Verify(double value, const UnicodeString& pattern, argument
252 DecimalFormat df(pattern, sym, status);
H A Dusettest.cpp133 dataerrln((UnicodeString)"FAIL: bad pattern " + OTHER_TOPATTERN_TESTS[j] + " - " + UnicodeString(u_errorName(ec)));
156 // Test pattern behavior of multicharacter strings.
197 if (U_FAILURE(ec)) errln("FAIL: pattern parse error");
225 // What we want to make sure of is that a pattern generated
320 // UCharCategory values; replaced with pattern constructors
1364 // Test the pattern API
1386 const char pattern[] = local
1391 // pre-unescape the pattern. Since U+200E is Pattern_White_Space,
1395 UnicodeString pat(pattern, -1, US_INV);
1660 // Input pattern an
2029 expectPattern(UnicodeSet& set, const UnicodeString& pattern, const UnicodeString& expectedPairs) argument
3739 static const char *pattern="[x{xy}{xya}{axy}{ax}]"; local
[all...]
/external/chromium_org/third_party/skia/gm/rebaseline_server/
H A Dcompare_to_expectations.py160 def _write_dicts_to_root(meta_dict, root, pattern='*.json'):
174 pattern: which files to write within root (fnmatch-style pattern)
185 for matching_filename in fnmatch.filter(filenames, pattern):
/external/chromium_org/v8/tools/gcmole/
H A Dgccause.lua32 -- Usage: lua tools/gcmole/gccause.lua <function-name-pattern>
/external/icu/icu4c/source/i18n/unicode/
H A Dunum.h108 * Use a pattern to create either a DecimalFormat or a RuleBasedNumberFormat
109 * formatter. The pattern must conform to the syntax defined for those
140 * Decimal format defined by a pattern string.
185 * Rule-based format defined by a pattern string.
338 * number format is opened using the given pattern, which must conform
341 * @param pattern A pattern specifying the format to use.
344 * @param patternLength The number of characters in the pattern, or -1
361 const UChar* pattern,
767 * Set the pattern use
[all...]
/external/icu/icu4c/source/test/intltest/
H A Dtsdcfmsy.cpp249 void IntlTestDecimalFormatSymbols::Verify(double value, const UnicodeString& pattern, argument
252 DecimalFormat df(pattern, sym, status);
/external/llvm/utils/Misc/
H A Dzkill23 def re_full_match(pattern, str):
24 m = re.match(pattern, str)
/external/pcre/dist/
H A Dpcrecpp.h61 // supplied pattern exactly.
113 // NULL (the corresponding matched sub-pattern is not copied)
115 // CAVEAT: An optional sub-pattern that does not exist in the matched
131 // You can use the "PartialMatch" operation when you want the pattern
146 // By default, pattern and text are plain text, one byte per character.
147 // The UTF8 flag, passed to the constructor, causes both pattern
150 // is likelier to be UTF-8 than the pattern, but the match returned
194 // "?:" modifier within the pattern itself. e.g. (?:ab|cd) does not
230 // RE(pattern, RE_Options(PCRE_CASELESS|PCRE_MULTILINE)).PartialMatch(str);
233 // RE(pattern,
524 const string& pattern() const { return pattern_; } function in class:pcrecpp::RE
[all...]
/external/skia/gm/rebaseline_server/
H A Dcompare_to_expectations.py150 def _write_dicts_to_root(meta_dict, root, pattern='*.json'):
164 pattern: which files to write within root (fnmatch-style pattern)
175 for matching_filename in fnmatch.filter(filenames, pattern):
/external/chromium_org/components/json_schema/
H A Djson_schema_validator.cc327 "String must match the pattern: *.";
631 // Validate pattern properties and additional properties.
772 std::string pattern; local
773 if (schema->GetString(schema::kPattern, &pattern)) {
774 re2::RE2 compiled_regex(pattern);
776 LOG(WARNING) << "Regular expression /" << pattern
780 FormatErrorMessage(kInvalidRegex, pattern, compiled_regex.error())));
783 Error(path, FormatErrorMessage(kStringPattern, pattern)));
/external/chromium_org/components/policy/tools/
H A Dgenerate_policy_source.py339 ['minimum', 'maximum', 'enum', 'pattern'])
381 raise RuntimeError('Unknown pattern type in %s' % name)
382 pattern = schema['pattern']
383 # Try to compile the pattern to validate it, note that the syntax used
386 re.compile(pattern)
388 self.string_enums.append(pattern);
391 'string with pattern restriction: %s' % name);
429 elif 'pattern' in schema:
464 for pattern, subschem
[all...]
/external/chromium_org/third_party/icu/source/i18n/
H A Dlocdspnm.cpp390 UnicodeString pattern; local
391 langData.getNoFallback("localeDisplayPattern", "pattern", pattern);
392 if (pattern.isBogus()) {
393 pattern = UnicodeString("{0} ({1})", -1, US_INV);
395 format = new MessageFormat(pattern, status);
396 if (pattern.indexOf((UChar)0xFF08) >= 0) {
H A Dnumfmt.cpp69 // If no number pattern can be located for a locale, this is the last
134 // the pattern is the same as the pattern of UNUM_CURRENCY
1202 // because this method does not take a pattern string.
1272 UnicodeString pattern; local
1285 pattern.setTo(TRUE, gLastResortNumberPatterns[style], -1);
1304 // Didn't find a pattern specific to the numbering system, so fall back to "latn"
1315 pattern.setTo(TRUE, patResStr, patLen);
1323 pattern.setTo(currPattern, u_strlen(currPattern));
1365 // replace single currency sign in the pattern wit
[all...]
H A Dunum.cpp38 const UChar* pattern,
60 const UnicodeString pat(pattern, patternLength);
86 const UnicodeString pat(pattern, patternLength);
738 const UChar *pattern,
754 int32_t len = (patternLength == -1 ? u_strlen(pattern) : patternLength);
755 const UnicodeString pat((UChar*)pattern, len, len);
37 unum_open( UNumberFormatStyle style, const UChar* pattern, int32_t patternLength, const char* locale, UParseError* parseErr, UErrorCode* status) argument
736 unum_applyPattern( UNumberFormat *fmt, UBool localized, const UChar *pattern, int32_t patternLength, UParseError *parseError, UErrorCode* status) argument
/external/icu/icu4c/source/i18n/
H A Dlocdspnm.cpp393 UnicodeString pattern; local
394 langData.getNoFallback("localeDisplayPattern", "pattern", pattern);
395 if (pattern.isBogus()) {
396 pattern = UnicodeString("{0} ({1})", -1, US_INV);
398 format = new MessageFormat(pattern, status);
399 if (pattern.indexOf((UChar)0xFF08) >= 0) {
H A Dnumfmt.cpp72 // If no number pattern can be located for a locale, this is the last
141 // the pattern is the same as the pattern of UNUM_CURRENCY
1328 // because this method does not take a pattern string.
1399 UnicodeString pattern; local
1412 pattern.setTo(TRUE, gLastResortNumberPatterns[style], -1);
1431 // Didn't find a pattern specific to the numbering system, so fall back to "latn"
1442 pattern.setTo(TRUE, patResStr, patLen);
1450 pattern.setTo(currPattern, u_strlen(currPattern));
1492 // replace single currency sign in the pattern wit
[all...]
H A Dunum.cpp39 const UChar* pattern,
64 const UnicodeString pat(pattern, patternLength);
90 const UnicodeString pat(pattern, patternLength);
742 const UChar *pattern,
758 int32_t len = (patternLength == -1 ? u_strlen(pattern) : patternLength);
759 const UnicodeString pat((UChar*)pattern, len, len);
38 unum_open( UNumberFormatStyle style, const UChar* pattern, int32_t patternLength, const char* locale, UParseError* parseErr, UErrorCode* status) argument
740 unum_applyPattern( UNumberFormat *fmt, UBool localized, const UChar *pattern, int32_t patternLength, UParseError *parseError, UErrorCode* status) argument

Completed in 1521 milliseconds

<<31323334353637383940>>