Searched refs:pattern (Results 226 - 250 of 1271) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/browser/content_settings/
H A Dcontent_settings_pref_provider_unittest.cc110 ContentSettingsPattern pattern = local
114 OnContentSettingChanged(pattern,
122 pattern,
166 ContentSettingsPattern pattern = local
169 pattern,
170 pattern,
357 ContentSettingsPattern pattern = local
368 pattern,
369 pattern,
454 ContentSettingsPattern pattern local
[all...]
/external/chromium_org/chrome/browser/extensions/api/messaging/
H A Dnative_messaging_host_manifest.cc116 URLPattern pattern(URLPattern::SCHEME_EXTENSION);
117 URLPattern::ParseResult result = pattern.Parse(pattern_string);
119 *error_message = "Failed to parse pattern \"" + pattern_string +
126 if (pattern.match_all_urls() || pattern.match_subdomains()) {
131 allowed_origins_.AddPattern(pattern);
/external/chromium_org/extensions/common/manifest_handlers/
H A Dsandboxed_page_info.cc80 URLPattern pattern(URLPattern::SCHEME_EXTENSION);
81 if (pattern.Parse(extension->url().spec()) != URLPattern::PARSE_SUCCESS) {
88 pattern.SetPath(pattern.path() + relative_path);
89 sandboxed_info->pages.AddPattern(pattern);
/external/chromium_org/third_party/icu/source/i18n/
H A Dformat.cpp167 * @param pattern The pattern to copy into the parseError
168 * @param pos The position in pattern where the error occured
172 void Format::syntaxError(const UnicodeString& pattern, argument
182 pattern.extract(start,stop-start,parseError.preContext,0);
188 stop = ((pos+U_PARSE_CONTEXT_LEN)<=pattern.length()) ? (pos+(U_PARSE_CONTEXT_LEN-1)) :
189 pattern.length();
190 pattern.extract(start,stop-start,parseError.postContext,0);
H A Dumsg.cpp18 * Removed pattern parser.
60 const UChar *pattern,
73 actLen = u_vformatMessage(locale,pattern,patternLength,result,resultLength,ap,status);
82 const UChar *pattern,
91 UMessageFormat *fmt = umsg_open(pattern,patternLength,locale,NULL,status);
99 const UChar *pattern,
113 actLen = u_vformatMessageWithError(locale,pattern,patternLength,result,resultLength,parseError,ap,status);
122 const UChar *pattern,
132 UMessageFormat *fmt = umsg_open(pattern,patternLength,locale,parseError,status);
145 const UChar *pattern,
59 u_formatMessage(const char *locale, const UChar *pattern, int32_t patternLength, UChar *result, int32_t resultLength, UErrorCode *status, ...) argument
81 u_vformatMessage( const char *locale, const UChar *pattern, int32_t patternLength, UChar *result, int32_t resultLength, va_list ap, UErrorCode *status) argument
98 u_formatMessageWithError(const char *locale, const UChar *pattern, int32_t patternLength, UChar *result, int32_t resultLength, UParseError *parseError, UErrorCode *status, ...) argument
121 u_vformatMessageWithError( const char *locale, const UChar *pattern, int32_t patternLength, UChar *result, int32_t resultLength, UParseError *parseError, va_list ap, UErrorCode *status) argument
144 u_parseMessage( const char *locale, const UChar *pattern, int32_t patternLength, const UChar *source, int32_t sourceLength, UErrorCode *status, ...) argument
164 u_vparseMessage(const char *locale, const UChar *pattern, int32_t patternLength, const UChar *source, int32_t sourceLength, va_list ap, UErrorCode *status) argument
180 u_parseMessageWithError(const char *locale, const UChar *pattern, int32_t patternLength, const UChar *source, int32_t sourceLength, UParseError *error, UErrorCode *status, ...) argument
201 u_vparseMessageWithError(const char *locale, const UChar *pattern, int32_t patternLength, const UChar *source, int32_t sourceLength, va_list ap, UParseError *error, UErrorCode* status) argument
224 umsg_open( const UChar *pattern, int32_t patternLength, const char *locale, UParseError *parseError, UErrorCode *status) argument
311 umsg_applyPattern(UMessageFormat *fmt, const UChar* pattern, int32_t patternLength, UParseError* parseError, UErrorCode* status) argument
620 umsg_autoQuoteApostrophe(const UChar* pattern, int32_t patternLength, UChar* dest, int32_t destCapacity, UErrorCode* ec) argument
[all...]
H A Dudatpg.cpp86 const UChar *pattern, int32_t length,
92 if(pattern==NULL && length!=0) {
96 UnicodeString patternString((UBool)(length<0), pattern, length);
103 const UChar *pattern, int32_t length,
109 if(pattern==NULL && length!=0) {
113 UnicodeString patternString((UBool)(length<0), pattern, length);
120 const UChar *pattern, int32_t patternLength,
127 if(pattern==NULL && patternLength!=0) {
131 UnicodeString patternString((UBool)(patternLength<0), pattern, patternLength);
216 const UChar *pattern, int32_
85 udatpg_getSkeleton(UDateTimePatternGenerator *dtpg, const UChar *pattern, int32_t length, UChar *skeleton, int32_t capacity, UErrorCode *pErrorCode) argument
102 udatpg_getBaseSkeleton(UDateTimePatternGenerator *dtpg, const UChar *pattern, int32_t length, UChar *skeleton, int32_t capacity, UErrorCode *pErrorCode) argument
119 udatpg_addPattern(UDateTimePatternGenerator *dtpg, const UChar *pattern, int32_t patternLength, UBool override, UChar *conflictingPattern, int32_t capacity, int32_t *pLength, UErrorCode *pErrorCode) argument
215 udatpg_replaceFieldTypes(UDateTimePatternGenerator *dtpg, const UChar *pattern, int32_t patternLength, const UChar *skeleton, int32_t skeletonLength, UChar *dest, int32_t destCapacity, UErrorCode *pErrorCode) argument
226 udatpg_replaceFieldTypesWithOptions(UDateTimePatternGenerator *dtpg, const UChar *pattern, int32_t patternLength, const UChar *skeleton, int32_t skeletonLength, UDateTimePatternMatchOptions options, UChar *dest, int32_t destCapacity, UErrorCode *pErrorCode) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
H A Dapi_paint.c143 void vegaPaintPattern(VGPaint paint, VGImage pattern) argument
153 if (pattern == VG_INVALID_HANDLE) {
158 if (!vg_context_is_object_valid(ctx, VG_OBJECT_IMAGE, pattern)) {
165 !vg_object_is_valid(pattern, VG_OBJECT_IMAGE)) {
170 handle_to_image(pattern));
/external/guava/guava/src/com/google/common/base/
H A DPredicates.java244 * regular expression pattern. The test used is equivalent to
245 * {@code Pattern.compile(pattern).matcher(arg).find()}
247 * @throws java.util.regex.PatternSyntaxException if the pattern is invalid
251 public static Predicate<CharSequence> containsPattern(String pattern) { argument
252 return new ContainsPatternPredicate(pattern);
258 * regular expression pattern. The test used is equivalent to
259 * {@code pattern.matcher(arg).find()}
264 public static Predicate<CharSequence> contains(Pattern pattern) { argument
265 return new ContainsPatternPredicate(pattern);
559 final Pattern pattern; field in class:Predicates.ContainsPatternPredicate
561 ContainsPatternPredicate(Pattern pattern) argument
[all...]
/external/icu/icu4c/source/i18n/
H A Dformat.cpp167 * @param pattern The pattern to copy into the parseError
168 * @param pos The position in pattern where the error occured
172 void Format::syntaxError(const UnicodeString& pattern, argument
182 pattern.extract(start,stop-start,parseError.preContext,0);
188 stop = ((pos+U_PARSE_CONTEXT_LEN)<=pattern.length()) ? (pos+(U_PARSE_CONTEXT_LEN-1)) :
189 pattern.length();
190 pattern.extract(start,stop-start,parseError.postContext,0);
H A Dumsg.cpp18 * Removed pattern parser.
60 const UChar *pattern,
73 actLen = u_vformatMessage(locale,pattern,patternLength,result,resultLength,ap,status);
82 const UChar *pattern,
91 UMessageFormat *fmt = umsg_open(pattern,patternLength,locale,NULL,status);
99 const UChar *pattern,
113 actLen = u_vformatMessageWithError(locale,pattern,patternLength,result,resultLength,parseError,ap,status);
122 const UChar *pattern,
132 UMessageFormat *fmt = umsg_open(pattern,patternLength,locale,parseError,status);
145 const UChar *pattern,
59 u_formatMessage(const char *locale, const UChar *pattern, int32_t patternLength, UChar *result, int32_t resultLength, UErrorCode *status, ...) argument
81 u_vformatMessage( const char *locale, const UChar *pattern, int32_t patternLength, UChar *result, int32_t resultLength, va_list ap, UErrorCode *status) argument
98 u_formatMessageWithError(const char *locale, const UChar *pattern, int32_t patternLength, UChar *result, int32_t resultLength, UParseError *parseError, UErrorCode *status, ...) argument
121 u_vformatMessageWithError( const char *locale, const UChar *pattern, int32_t patternLength, UChar *result, int32_t resultLength, UParseError *parseError, va_list ap, UErrorCode *status) argument
144 u_parseMessage( const char *locale, const UChar *pattern, int32_t patternLength, const UChar *source, int32_t sourceLength, UErrorCode *status, ...) argument
164 u_vparseMessage(const char *locale, const UChar *pattern, int32_t patternLength, const UChar *source, int32_t sourceLength, va_list ap, UErrorCode *status) argument
180 u_parseMessageWithError(const char *locale, const UChar *pattern, int32_t patternLength, const UChar *source, int32_t sourceLength, UParseError *error, UErrorCode *status, ...) argument
201 u_vparseMessageWithError(const char *locale, const UChar *pattern, int32_t patternLength, const UChar *source, int32_t sourceLength, va_list ap, UParseError *error, UErrorCode* status) argument
224 umsg_open( const UChar *pattern, int32_t patternLength, const char *locale, UParseError *parseError, UErrorCode *status) argument
311 umsg_applyPattern(UMessageFormat *fmt, const UChar* pattern, int32_t patternLength, UParseError* parseError, UErrorCode* status) argument
620 umsg_autoQuoteApostrophe(const UChar* pattern, int32_t patternLength, UChar* dest, int32_t destCapacity, UErrorCode* ec) argument
[all...]
H A Dstsearch.cpp24 StringSearch::StringSearch(const UnicodeString &pattern, argument
30 m_pattern_(pattern)
50 StringSearch::StringSearch(const UnicodeString &pattern, argument
56 m_pattern_(pattern)
82 StringSearch::StringSearch(const UnicodeString &pattern, argument
88 m_pattern_(pattern)
107 StringSearch::StringSearch(const UnicodeString &pattern, argument
113 m_pattern_(pattern)
261 void StringSearch::setPattern(const UnicodeString &pattern, argument
265 m_pattern_ = pattern;
[all...]
H A Dudatpg.cpp86 const UChar *pattern, int32_t length,
92 if(pattern==NULL && length!=0) {
96 UnicodeString patternString((UBool)(length<0), pattern, length);
103 const UChar *pattern, int32_t length,
109 if(pattern==NULL && length!=0) {
113 UnicodeString patternString((UBool)(length<0), pattern, length);
120 const UChar *pattern, int32_t patternLength,
127 if(pattern==NULL && patternLength!=0) {
131 UnicodeString patternString((UBool)(patternLength<0), pattern, patternLength);
216 const UChar *pattern, int32_
85 udatpg_getSkeleton(UDateTimePatternGenerator *dtpg, const UChar *pattern, int32_t length, UChar *skeleton, int32_t capacity, UErrorCode *pErrorCode) argument
102 udatpg_getBaseSkeleton(UDateTimePatternGenerator *dtpg, const UChar *pattern, int32_t length, UChar *skeleton, int32_t capacity, UErrorCode *pErrorCode) argument
119 udatpg_addPattern(UDateTimePatternGenerator *dtpg, const UChar *pattern, int32_t patternLength, UBool override, UChar *conflictingPattern, int32_t capacity, int32_t *pLength, UErrorCode *pErrorCode) argument
215 udatpg_replaceFieldTypes(UDateTimePatternGenerator *dtpg, const UChar *pattern, int32_t patternLength, const UChar *skeleton, int32_t skeletonLength, UChar *dest, int32_t destCapacity, UErrorCode *pErrorCode) argument
226 udatpg_replaceFieldTypesWithOptions(UDateTimePatternGenerator *dtpg, const UChar *pattern, int32_t patternLength, const UChar *skeleton, int32_t skeletonLength, UDateTimePatternMatchOptions options, UChar *dest, int32_t destCapacity, UErrorCode *pErrorCode) argument
[all...]
/external/libcxx/test/localization/locale.categories/category.monetary/locale.moneypunct.byname/
H A Dneg_format.pass.cpp16 // pattern neg_format() const;
60 std::money_base::pattern p = f.neg_format();
68 std::money_base::pattern p = f.neg_format();
76 std::money_base::pattern p = f.neg_format();
84 std::money_base::pattern p = f.neg_format();
93 std::money_base::pattern p = f.neg_format();
101 std::money_base::pattern p = f.neg_format();
109 std::money_base::pattern p = f.neg_format();
117 std::money_base::pattern p = f.neg_format();
126 std::money_base::pattern
[all...]
H A Dpos_format.pass.cpp16 // pattern pos_format() const;
60 std::money_base::pattern p = f.pos_format();
68 std::money_base::pattern p = f.pos_format();
76 std::money_base::pattern p = f.pos_format();
84 std::money_base::pattern p = f.pos_format();
93 std::money_base::pattern p = f.pos_format();
101 std::money_base::pattern p = f.pos_format();
109 std::money_base::pattern p = f.pos_format();
117 std::money_base::pattern p = f.pos_format();
126 std::money_base::pattern
[all...]
/external/mesa3d/src/gallium/state_trackers/vega/
H A Dapi_paint.c143 void vegaPaintPattern(VGPaint paint, VGImage pattern) argument
153 if (pattern == VG_INVALID_HANDLE) {
158 if (!vg_context_is_object_valid(ctx, VG_OBJECT_IMAGE, pattern)) {
165 !vg_object_is_valid(pattern, VG_OBJECT_IMAGE)) {
170 handle_to_image(pattern));
/external/chromium_org/content/browser/service_worker/
H A Dservice_worker_provider_host.cc42 DecreaseProcessReference(associated_registration_->pattern());
107 DecreaseProcessReference(associated_registration_->pattern());
108 IncreaseProcessReference(registration->pattern());
135 DecreaseProcessReference(associated_registration_->pattern());
196 const GURL& pattern) {
197 associated_patterns_.push_back(pattern);
198 IncreaseProcessReference(pattern);
218 const GURL& pattern) {
221 pattern, process_id_);
226 const GURL& pattern) {
195 AddScopedProcessReferenceToPattern( const GURL& pattern) argument
217 IncreaseProcessReference( const GURL& pattern) argument
225 DecreaseProcessReference( const GURL& pattern) argument
[all...]
/external/apache-http/src/org/apache/http/impl/cookie/
H A DDateUtils.java60 * Date format pattern used to parse HTTP date headers in RFC 1123 format.
65 * Date format pattern used to parse HTTP date headers in RFC 1036 format.
70 * Date format pattern used to parse HTTP date headers in ANSI C
177 * Formats the given date according to the RFC 1123 pattern.
189 * Formats the given date according to the specified pattern. The pattern
194 * @param pattern The pattern to use for formatting the date.
197 * @throws IllegalArgumentException If the given date pattern is invalid.
201 public static String formatDate(Date date, String pattern) { argument
245 formatFor(String pattern) argument
[all...]
/external/chromium_org/net/base/
H A Dip_pattern_unittest.cc14 IPPattern pattern; local
15 return pattern.ParsePattern(pattern_text);
18 bool CheckForMatch(const IPPattern& pattern, std::string address_text) { argument
21 return pattern.Match(address);
25 IPPattern pattern; local
31 EXPECT_FALSE(pattern.Match(ipv4_address1));
32 EXPECT_FALSE(pattern.Match(ipv6_address1));
/external/chromium_org/third_party/icu/source/i18n/unicode/
H A Ddtptngen.h38 * is done, a query can be made using a "skeleton", which is a pattern which just
40 * pattern corresponding to that skeleton.
45 * fields in a pattern, in order, since we have that internally.
108 * Utility to return a unique skeleton from a given pattern. For example,
111 * @param pattern Input pattern, such as "dd/MMM"
117 UnicodeString getSkeleton(const UnicodeString& pattern, UErrorCode& status);
120 * Utility to return a unique base skeleton from a given pattern. This is
126 * @param pattern Input pattern, suc
[all...]
H A Dplurfmt.h79 * specify the message pattern, you can either pass it to the
87 * The pattern text defines the message output for each plural case of the
112 * (The offset defaults to 0 if it is omitted from the pattern string.)
209 * Creates a new cardinal-number <code>PluralFormat</code> for a given pattern string.
212 * @param pattern the pattern for this <code>PluralFormat</code>.
213 * errors are returned to status if the pattern is invalid.
218 PluralFormat(const UnicodeString& pattern, UErrorCode& status);
221 * Creates a new cardinal-number <code>PluralFormat</code> for a given pattern string and
228 * @param pattern th
[all...]
/external/chromium_org/tools/gn/
H A Dsubstitution_writer.h57 // Writes the pattern to the given stream with no special handling, and with
60 const SubstitutionPattern& pattern,
80 // Applies the substitution pattern to a source file, returning the result
87 const SubstitutionPattern& pattern,
91 const SubstitutionPattern& pattern,
95 const SubstitutionPattern& pattern,
167 const SubstitutionPattern& pattern);
194 const SubstitutionPattern& pattern);
214 const SubstitutionPattern& pattern);
/external/elfutils/0.153/libasm/
H A Dasm_align.c59 if (asmscn->pattern->len == 1)
60 fprintf (asmscn->ctx->out.file, "%02hhx\n", asmscn->pattern->bytes[0]);
65 for (size_t cnt = 0; cnt < asmscn->pattern->len; ++cnt)
67 asmscn->pattern->bytes[cnt]);
89 /* Fill in the bytes. We align the pattern according to the
91 size_t byteptr = asmscn->offset % asmscn->pattern->len;
99 = asmscn->pattern->bytes[byteptr++];
101 if (byteptr == asmscn->pattern->len)
/external/icu/icu4c/source/i18n/unicode/
H A Ddtptngen.h38 * is done, a query can be made using a "skeleton", which is a pattern which just
40 * pattern corresponding to that skeleton.
45 * fields in a pattern, in order, since we have that internally.
108 * Utility to return a unique skeleton from a given pattern. For example,
111 * @param pattern Input pattern, such as "dd/MMM"
117 UnicodeString getSkeleton(const UnicodeString& pattern, UErrorCode& status);
120 * Utility to return a unique base skeleton from a given pattern. This is
126 * @param pattern Input pattern, suc
[all...]
H A Dplurfmt.h79 * specify the message pattern, you can either pass it to the
87 * The pattern text defines the message output for each plural case of the
112 * (The offset defaults to 0 if it is omitted from the pattern string.)
209 * Creates a new cardinal-number <code>PluralFormat</code> for a given pattern string.
212 * @param pattern the pattern for this <code>PluralFormat</code>.
213 * errors are returned to status if the pattern is invalid.
218 PluralFormat(const UnicodeString& pattern, UErrorCode& status);
221 * Creates a new cardinal-number <code>PluralFormat</code> for a given pattern string and
228 * @param pattern th
[all...]
/external/chromium_org/chromeos/network/
H A Dclient_cert_util.cc51 const base::DictionaryValue* pattern = NULL; local
53 &pattern);
54 if (pattern) {
55 bool success = cert_config->pattern.ReadFromONCDictionary(*pattern);
63 // Returns true only if any fields set in this pattern match exactly with
67 bool CertPrincipalMatches(const IssuerSubjectPattern& pattern, argument
69 if (!pattern.common_name().empty() &&
70 pattern.common_name() != principal.common_name) {
74 if (!pattern
[all...]

Completed in 4623 milliseconds

1234567891011>>