Searched refs:pattern (Results 751 - 775 of 1271) sorted by relevance

<<31323334353637383940>>

/external/mesa3d/src/glsl/
H A Ds_expression.h151 * Part of a pattern to match - essentially a record holding a pointer to the
178 s_match(s_expression *top, unsigned n, s_pattern *pattern, bool partial);
/external/srec/srec/include/
H A Dduk_args.h105 int is_flag_assigned(char *pattern, int avc, arg_info *avlist);
/external/antlr/antlr-3.4/runtime/Python/unittests/
H A Dtesttreewizard.py148 tree = parser.pattern()
158 tree = parser.pattern()
168 tree = parser.pattern()
181 tree = parser.pattern()
191 tree = parser.pattern()
199 tree = parser.pattern()
208 tree = parser.pattern()
216 tree = parser.pattern()
224 tree = parser.pattern()
564 # C pattern ha
[all...]
/external/chromium_org/content/browser/service_worker/
H A Dservice_worker_browsertest.cc297 void AssociateRendererProcessToPattern(const GURL& pattern) { argument
299 pattern, shell()->web_contents()->GetRenderProcessHost()->GetID());
331 const GURL pattern = embedded_test_server()->GetURL("/"); local
334 AssociateRendererProcessToPattern(pattern);
337 pattern, process_id);
340 pattern,
505 const GURL pattern = embedded_test_server()->GetURL("/"); local
507 pattern,
515 AssociateRendererProcessToPattern(pattern);
H A Dembedded_worker_test_helper.cc41 const GURL& pattern,
45 pattern, process_id);
40 SimulateAddProcessToPattern( const GURL& pattern, int process_id) argument
/external/chromium_org/third_party/libvpx/source/libvpx/tools/
H A Dcpplint.py504 def Match(pattern, s):
505 """Matches the string with the pattern, caching the compiled regexp."""
509 if pattern not in _regexp_compile_cache:
510 _regexp_compile_cache[pattern] = sre_compile.compile(pattern)
511 return _regexp_compile_cache[pattern].match(s)
514 def ReplaceAll(pattern, rep, s):
515 """Replaces instances of pattern in a string with a replacement.
520 pattern: regex pattern
[all...]
/external/libvpx/libvpx/tools/
H A Dcpplint.py504 def Match(pattern, s):
505 """Matches the string with the pattern, caching the compiled regexp."""
509 if pattern not in _regexp_compile_cache:
510 _regexp_compile_cache[pattern] = sre_compile.compile(pattern)
511 return _regexp_compile_cache[pattern].match(s)
514 def ReplaceAll(pattern, rep, s):
515 """Replaces instances of pattern in a string with a replacement.
520 pattern: regex pattern
[all...]
/external/icu/icu4c/source/i18n/
H A Dsmpdtfmt.cpp147 // This is a pattern-of-last-resort used when we can't load a usable pattern out
265 SimpleDateFormat::SimpleDateFormat(const UnicodeString& pattern, argument
267 : fPattern(pattern),
285 SimpleDateFormat::SimpleDateFormat(const UnicodeString& pattern, argument
288 : fPattern(pattern),
309 SimpleDateFormat::SimpleDateFormat(const UnicodeString& pattern, argument
312 : fPattern(pattern),
331 SimpleDateFormat::SimpleDateFormat(const UnicodeString& pattern, argument
335 : fPattern(pattern),
357 SimpleDateFormat(const UnicodeString& pattern, DateFormatSymbols* symbolsToAdopt, UErrorCode& status) argument
380 SimpleDateFormat(const UnicodeString& pattern, const DateFormatSymbols& symbols, UErrorCode& status) argument
1686 isAtNumericField(const UnicodeString &pattern, int32_t patternOffset) argument
1703 isAfterNonNumericField(const UnicodeString &pattern, int32_t patternOffset) argument
2153 matchLiterals(const UnicodeString &pattern, int32_t &patternOffset, const UnicodeString &text, int32_t &textOffset, UBool whitespaceLenient, UBool partialMatchLenient) argument
3270 applyPattern(const UnicodeString& pattern) argument
3278 applyLocalizedPattern(const UnicodeString& pattern, UErrorCode &status) argument
3382 isFieldUnitIgnored(const UnicodeString& pattern, UCalendarDateFields field) argument
[all...]
H A Dmsgfmt.cpp15 * 06/11/97 helena Fixed addPattern to take the pattern correctly.
16 * 06/17/97 helena Fixed the getPattern to return the correct pattern.
227 // Creates a MessageFormat instance based on the pattern.
229 MessageFormat::MessageFormat(const UnicodeString& pattern, argument
247 applyPattern(pattern, success);
250 MessageFormat::MessageFormat(const UnicodeString& pattern, argument
269 applyPattern(pattern, success);
272 MessageFormat::MessageFormat(const UnicodeString& pattern, argument
292 applyPattern(pattern, parseError, success);
478 // Applies the new pattern an
481 applyPattern(const UnicodeString& pattern, UParseError& parseError, UErrorCode& ec) argument
507 applyPattern(const UnicodeString& pattern, UMessagePatternApostropheMode aposMode, UParseError* parseError, UErrorCode& status) argument
887 format( const UnicodeString& pattern, const Formattable* arguments, int32_t cnt, UnicodeString& appendTo, UErrorCode& success) argument
1546 autoQuoteApostrophe(const UnicodeString& pattern, UErrorCode& status) argument
[all...]
/external/chromium_org/third_party/icu/source/i18n/
H A Dmsgfmt.cpp15 * 06/11/97 helena Fixed addPattern to take the pattern correctly.
16 * 06/17/97 helena Fixed the getPattern to return the correct pattern.
227 // Creates a MessageFormat instance based on the pattern.
229 MessageFormat::MessageFormat(const UnicodeString& pattern, argument
247 applyPattern(pattern, success);
250 MessageFormat::MessageFormat(const UnicodeString& pattern, argument
269 applyPattern(pattern, success);
272 MessageFormat::MessageFormat(const UnicodeString& pattern, argument
292 applyPattern(pattern, parseError, success);
478 // Applies the new pattern an
481 applyPattern(const UnicodeString& pattern, UParseError& parseError, UErrorCode& ec) argument
507 applyPattern(const UnicodeString& pattern, UMessagePatternApostropheMode aposMode, UParseError* parseError, UErrorCode& status) argument
887 format( const UnicodeString& pattern, const Formattable* arguments, int32_t cnt, UnicodeString& appendTo, UErrorCode& success) argument
1546 autoQuoteApostrophe(const UnicodeString& pattern, UErrorCode& status) argument
[all...]
/external/chromium_org/third_party/icu/source/tools/dumpce/
H A Ddumpce.cpp986 UChar* pattern = new UChar[length + destLength + 10]; local
989 pattern = u_strcpy(pattern, left);
990 pattern = u_strcat(pattern, exemplarChars);
991 pattern = u_strcat(pattern, upperChars);
992 pattern = u_strcat(pattern, right);
994 UnicodeSet * uniset = new UnicodeSet(UnicodeString(pattern), erro
[all...]
/external/antlr/antlr-3.4/antlr-ant/main/antlr3-task/
H A Dantlr3.jar ... io.IOException e java.util.regex.Pattern p java.util.regex.Matcher m int ...
/external/chromium_org/chrome/browser/extensions/api/image_writer_private/
H A Dtest_utils.cc247 const int pattern,
250 memset(buffer.get(), pattern, length);
246 FillFile(const base::FilePath& file, const int pattern, const int length) argument
/external/chromium_org/chrome/browser/extensions/api/permissions/
H A Dpermissions_api_helpers_unittest.cc22 static void AddPattern(URLPatternSet* extent, const std::string& pattern) { argument
24 extent->AddPattern(URLPattern(schemes, pattern));
/external/chromium_org/chrome/browser/extensions/
H A Dpolicy_handlers.cc226 URLPattern pattern(URLPattern::SCHEME_ALL);
227 if (pattern.Parse(url_pattern_string) != URLPattern::PARSE_SUCCESS) {
H A Duser_script_loader_unittest.cc29 static void AddPattern(URLPatternSet* extent, const std::string& pattern) { argument
31 extent->AddPattern(URLPattern(schemes, pattern));
/external/chromium_org/chrome/browser/plugins/
H A Dplugin_info_message_filter_unittest.cc220 ContentSettingsPattern pattern = local
222 map->SetContentSetting(pattern,
/external/chromium_org/chrome/browser/ui/webui/chromeos/
H A Dnetwork_config_message_handler.cc83 NetworkTypePattern pattern = onc::NetworkTypePatternFromOncType(type); local
93 pattern, configured_only, visible_only, limit,
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/news/javascript/
H A Doptions.js307 var pattern = /,/g;
310 if (val.match(pattern) == null) {
/external/chromium_org/chrome/utility/image_writer/
H A Dimage_writer_unittest.cc39 void FillFile(const base::FilePath& path, int pattern) { argument
41 memset(buffer.get(), pattern, kTestFileSize);
/external/chromium_org/components/domain_reliability/
H A Dconfig_unittest.cc64 const std::string& pattern) {
70 resource->url_patterns.push_back(new std::string(pattern));
62 MakeConfigWithResource( const std::string& name, const std::string& pattern) argument
/external/chromium_org/content/test/
H A Dimage_decoder_test.cc123 std::string pattern = "*." + format_; local
135 if (MatchPattern(base_name_ascii, pattern))
/external/chromium_org/extensions/common/permissions/
H A Dsocket_permission_entry.cc129 const std::string& pattern,
132 base::SplitStringDontTrim(pattern, kColon, &tokens);
127 ParseHostPattern( SocketPermissionRequest::OperationType type, const std::string& pattern, SocketPermissionEntry* entry) argument
/external/chromium_org/extensions/common/
H A Duser_script.h183 void add_url_pattern(const URLPattern& pattern);
187 void add_exclude_url_pattern(const URLPattern& pattern);
/external/chromium_org/native_client_sdk/src/tools/
H A Dgetos.py173 pattern = r'(file format) ([a-zA-Z0-9_\-]+)'
174 match = re.search(pattern, output)

Completed in 4125 milliseconds

<<31323334353637383940>>