Searched refs:pattern (Results 726 - 750 of 1271) sorted by relevance

<<21222324252627282930>>

/external/icu/icu4c/source/i18n/
H A Dwindtfmt.cpp172 UnicodeString *pattern = fDateTimeMsg; local
182 pattern = getTimeDateFormat(&cal, &fLocale, status);
185 MessageFormat::format(*pattern, timeDateArray, 2, appendTo, status);
/external/icu/icu4c/source/test/intltest/
H A Ddadrfmt.cpp115 UnicodeString pattern; local
163 pattern = UnicodeString(spec,kPATTERN.length());
165 format = new SimpleDateFormat(pattern, loc, status);
167 errln("case %d: could not create SimpleDateFormat from pattern: %s", n, u_errorName(status));
H A Ddcfmtest.cpp219 "(\\S+)\\s+" // Capture group 1: pattern
253 // Separate out the three main fields - pattern, flags, target.
324 UnicodeString pattern = UNICODE_STRING_SIMPLE("####"); local
325 DecimalFormat format(pattern, symbols, status);
380 const UnicodeString &pattern, // Pattern
391 // printf("Pattern = %s\n", UnicodeStringPiece(pattern).data());
392 DecimalFormat fmtr(pattern, symbols, status);
379 execFormatTest(int32_t lineNum, const UnicodeString &pattern, const UnicodeString &round, const UnicodeString &input, const UnicodeString &expected, EFormatInputType inType, UErrorCode &status) argument
H A Ddtfmttst.h99 * Test the day of year pattern.
105 virtual void tryPattern(SimpleDateFormat& sdf, UDate d, const char* pattern, UDate expected);
/external/icu/icu4c/source/tools/toolutil/
H A Dpackage.cpp939 Package::findItems(const char *pattern) { argument
942 if(pattern==NULL || *pattern==0) {
947 findPrefix=pattern;
951 wild=strchr(pattern, '*');
954 findPrefixLength=(int32_t)strlen(pattern);
957 findPrefixLength=(int32_t)(wild-pattern);
962 fprintf(stderr, "icupkg: syntax error (more than one '*') in item pattern \"%s\"\n", pattern);
1110 Package::removeItems(const char *pattern) { argument
1193 extractItems(const char *filesPath, const char *pattern, char outType) argument
[all...]
/external/stressapptest/src/
H A Dfinelock_queue.cc32 // In this implementation, a free page is those page entries where pattern is
33 // null (pe->pattern == 0)
258 data.l32.l = pe.lastpattern->pattern(offset << 1);
259 data.l32.h = pe.lastpattern->pattern((offset << 1) + 1);
430 pages_[index].pattern = 0;
/external/chromium_org/chrome/browser/chromeos/attestation/
H A Dplatform_verification_flow.cc440 // Build a pattern to represent scheme and host.
453 ContentSettingsPattern pattern = builder->Build(); local
454 if (pattern.IsValid()) {
458 pattern,
459 pattern,
464 LOG(WARNING) << "Not recording action: invalid URL pattern";
/external/chromium_org/chrome/browser/content_settings/
H A Dcontent_settings_policy_provider.cc278 VLOG(1) << "Ignoring invalid content settings pattern: " <<
286 // If only one pattern was defined auto expand it to a pattern pair.
319 // Parse the list of pattern filter strings. A pattern filter string has
323 // "pattern": <content settings pattern string>,
329 // "pattern": "[*.]example.com",
355 "pattern", &pattern_str);
361 " Missing pattern o
365 ContentSettingsPattern pattern = local
[all...]
/external/chromium_org/chrome/browser/extensions/api/image_writer_private/
H A Dtest_utils.h130 // Fills |file| with |length| bytes of |pattern|, overwriting any existing
133 const int pattern,
/external/chromium_org/chrome/browser/resources/options/
H A Dcontent_settings.js249 * pattern.
252 * @param {string} pattern The pattern.
253 * @param {boolean} valid Whether said pattern is valid in the context of
257 function(type, mode, pattern, valid) {
258 this.getExceptionsList(type, mode).patternValidityCheckComplete(pattern,
/external/chromium_org/content/browser/service_worker/
H A Dservice_worker_handle.cc112 info.scope = registration_->pattern();
H A Dservice_worker_register_job.h48 const GURL& pattern,
H A Dservice_worker_registration_handle.cc44 info.scope = registration_->pattern();
/external/chromium_org/extensions/common/
H A Durl_pattern_set_unittest.cc17 void AddPattern(URLPatternSet* set, const std::string& pattern) { argument
19 set->AddPattern(URLPattern(schemes, pattern));
22 URLPatternSet Patterns(const std::string& pattern) { argument
24 AddPattern(&set, pattern);
/external/chromium_org/third_party/icu/source/i18n/unicode/
H A Ddcfmtsym.h76 * If you supply a pattern with multiple grouping characters, the interval
95 /** The pattern separator */
101 /** Character representing a digit in the pattern */
286 * Get pattern string for 'CurrencySpacing' that can be applied to
288 * This API gets the CurrencySpacing data from ResourceBundle. The pattern can
292 * @param beforeCurrency : true if the pattern is for before currency symbol.
293 * false if the pattern is for after currency symbol.
296 * @return pattern string for currencyMatch, surroundingMatch or spaceInsert.
305 * Set pattern string for 'CurrencySpacing' that can be applied to
309 * @param beforeCurrency : true if the pattern i
[all...]
/external/chromium_org/third_party/icu/source/test/intltest/
H A Ddcfmtest.cpp215 "(\\S+)\\s+" // Capture group 1: pattern
249 // Separate out the three main fields - pattern, flags, target.
320 UnicodeString pattern = UNICODE_STRING_SIMPLE("####"); local
321 DecimalFormat format(pattern, symbols, status);
376 const UnicodeString &pattern, // Pattern
387 // printf("Pattern = %s\n", UnicodeStringPiece(pattern).data());
388 DecimalFormat fmtr(pattern, symbols, status);
375 execFormatTest(int32_t lineNum, const UnicodeString &pattern, const UnicodeString &round, const UnicodeString &input, const UnicodeString &expected, EFormatInputType inType, UErrorCode &status) argument
H A Ddtfmttst.h99 * Test the day of year pattern.
105 virtual void tryPattern(SimpleDateFormat& sdf, UDate d, const char* pattern, UDate expected);
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_pstipple.c33 * Basically, modify fragment shader to sample the 32x32 stipple pattern
64 const uint32_t pattern[32])
84 if (pattern[i] & (bit31 >> j)) {
102 * Create a 32x32 alpha8 texture that encodes the given stipple pattern.
106 const uint32_t pattern[32])
124 util_pstipple_update_stipple_texture(pipe, tex, pattern);
62 util_pstipple_update_stipple_texture(struct pipe_context *pipe, struct pipe_resource *tex, const uint32_t pattern[32]) argument
105 util_pstipple_create_stipple_texture(struct pipe_context *pipe, const uint32_t pattern[32]) argument
/external/chromium_org/third_party/mesa/src/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/chromium_org/third_party/skia/include/ports/
H A DSkFontMgr.h26 virtual SkTypeface* matchStyle(const SkFontStyle& pattern) = 0;
/external/chromium_org/tools/code_coverage/
H A Dcroc_scan_test.py20 self.assertEqual(s.re_token.pattern, '#')
/external/elfutils/0.153/libasm/
H A DlibasmP.h116 /* Fill pattern. */
121 } *pattern; member in struct:AsmScn
254 /* The default fill pattern: one zero byte. */
/external/icu/icu4c/source/i18n/unicode/
H A Ddcfmtsym.h76 * If you supply a pattern with multiple grouping characters, the interval
95 /** The pattern separator */
101 /** Character representing a digit in the pattern */
291 * Get pattern string for 'CurrencySpacing' that can be applied to
293 * This API gets the CurrencySpacing data from ResourceBundle. The pattern can
297 * @param beforeCurrency : true if the pattern is for before currency symbol.
298 * false if the pattern is for after currency symbol.
301 * @return pattern string for currencyMatch, surroundingMatch or spaceInsert.
310 * Set pattern string for 'CurrencySpacing' that can be applied to
314 * @param beforeCurrency : true if the pattern i
[all...]
/external/jsoncpp/include/json/
H A Dreader.h130 bool match( Location pattern,
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_pstipple.c33 * Basically, modify fragment shader to sample the 32x32 stipple pattern
64 const uint32_t pattern[32])
84 if (pattern[i] & (bit31 >> j)) {
102 * Create a 32x32 alpha8 texture that encodes the given stipple pattern.
106 const uint32_t pattern[32])
124 util_pstipple_update_stipple_texture(pipe, tex, pattern);
62 util_pstipple_update_stipple_texture(struct pipe_context *pipe, struct pipe_resource *tex, const uint32_t pattern[32]) argument
105 util_pstipple_create_stipple_texture(struct pipe_context *pipe, const uint32_t pattern[32]) argument

Completed in 738 milliseconds

<<21222324252627282930>>