Searched refs:pattern (Results 201 - 225 of 541) sorted by relevance

1234567891011>>

/external/emma/core/java12/com/vladium/emma/filter/
H A DIInclExclFilter.java192 final String pattern = (String) i.next ();
194 m_inclusions [ii] = WCMatcher.compile (pattern);
207 final String pattern = (String) i.next ();
209 m_exclusions [ii] = WCMatcher.compile (pattern);
/external/emma/core/java12/com/vladium/util/args/
H A DIOptsParser.java52 IOpt [] getOpts (String pattern); argument
/external/icu4c/i18n/unicode/
H A Dbmsearch.h36 * the pattern, the "bad character" and "good suffix" tables, the Collator-based data needed to compute them,
40 * Then you construct a <code>BoyerMooreSearch</code> object from the <code>CollData</code> object, the pattern
44 * void boyerMooreExample(UCollator *collator, UnicodeString *pattern, UnicodeString *target)
97 * 3) In some cases, searching for a pattern that needs to be normalized and ends
99 * the Tibetan script. For example searching for the pattern
135 * Test the pattern to see if it generates any CEs.
137 * @return <code>TRUE</code> if the pattern string did not generate any CEs
144 * Search for the pattern string in the target string.
177 * Return the CEs generated by the pattern string.
179 * @return a <code>CEList</code> object holding the CEs generated by the pattern strin
219 UnicodeString pattern; member in class:BoyerMooreSearch
[all...]
H A Dchoicfmt.h53 * are equivalent. The first is by using a string pattern. This is the
61 * <code>ChoiceFormat</code> is with a pattern. Here is an example of a
62 * <code>ChoiceFormat</code> pattern:</p>
70 * <p>The pattern consists of a number or <em>range specifiers</em>
159 * example, in the pattern \htmlonly&quot;<code>1.0#a|2.0#b</code>&quot;\endhtmlonly, the
219 * constructed from a pattern together with a
263 * based on the pattern.
265 * @param pattern Pattern used to construct object.
267 * pattern cannot be parsed, set to failure code.
270 ChoiceFormat(const UnicodeString& pattern,
[all...]
/external/icu4c/test/intltest/
H A Ddcfmtest.h45 const UnicodeString &pattern,
H A Dtmsgfmt.h79 UnicodeString pattern ,Locale locale , UErrorCode& err, char* errMsg);
H A Ducdtest.cpp300 UnicodeString pattern=UNICODE_STRING_SIMPLE("[:Alphabetic=:]"); local
301 pattern.insert(pattern.length()-2, UnicodeString(falseValues[i], -1, US_INV));
303 UnicodeSet set(pattern, errorCode);
314 UnicodeString pattern=UNICODE_STRING_SIMPLE("[:Alphabetic=:]"); local
315 pattern.insert(pattern.length()-2, UnicodeString(trueValues[i], -1, US_INV));
317 UnicodeSet set(pattern, errorCode);
H A Dnptrans.cpp79 const UChar* pattern = ures_getStringByKey(bundle,"UnassignedSet",&patternLen, &status); local
80 unassigned.applyPattern(UnicodeString(pattern, patternLen), status);
84 pattern = ures_getStringByKey(bundle,"ProhibitedSet",&patternLen, &status);
85 UnicodeString test(pattern,patternLen);
108 pattern = ures_getStringByKey(bundle,"LabelSeparatorSet",&patternLen, &status);
109 labelSeparatorSet.applyPattern(UnicodeString(pattern,patternLen),status);
/external/kernel-headers/original/linux/mtd/
H A Dbbm.h27 * @offs: offset of the pattern in the oob area of the page
30 * @len: length of the pattern, if 0 no pattern check is performed
34 * @reserved_block_code: if non-0, this pattern denotes a reserved
36 * @pattern: pattern to identify bad block table or factory marked
40 * pattern which identifies good and bad blocks. The assumption is made
41 * that the pattern and the version count are always located in the oob area
53 uint8_t *pattern; member in struct:nand_bbt_descr
76 /* Search good / bad pattern throug
[all...]
/external/protobuf/gtest/test/
H A Dgtest_output_test.py140 def RemoveMatchingTests(test_output, pattern):
148 pattern: A regex string that matches names of test cases or
152 Contents of test_output with tests whose names match pattern removed.
157 pattern, pattern),
160 return re.sub(r'.*%s.*\n' % pattern, '', test_output)
/external/webkit/Source/WebCore/html/canvas/
H A DCanvasPattern.h49 Pattern* pattern() const { return m_pattern.get(); } function in class:WebCore::CanvasPattern
/external/webkit/Tools/iExploder/iexploder-1.7.2/src/
H A Diexploder.rb388 # Generate a CSS selector pattern.
390 pattern = ''
392 when 0..84 then pattern = @htmlTags[rand(@htmlTags.length)].dup
393 when 85..89 then pattern = "*"
394 when 90..94 then pattern = @cssAtRules[rand(@cssAtRules.length)].dup
395 when 95..100 then pattern = ''
399 pattern << " " + @htmlTags[rand(@htmlTags.length)]
403 pattern << " > " + @htmlTags[rand(@htmlTags.length)]
407 pattern << " + " + @htmlTags[rand(@htmlTags.length)]
411 pattern << "*"
[all...]
/external/webp/src/enc/
H A Dcost.c55 // For each given level, the following table given the pattern of contexts
340 int pattern = VP8LevelCodes[level - 1][0]; local
344 for (i = 2; pattern; ++i) {
345 if (pattern & 1) {
349 pattern >>= 1;
/external/apache-xml/src/main/java/org/apache/xalan/templates/
H A DTemplateSubPatternAssociation.java33 * A class to contain a match pattern and it's corresponding template.
34 * This class also defines a node in a match pattern linked list.
40 /** Step pattern */
43 /** Template pattern */
49 /** Next pattern */
52 /** Flag indicating whether this is wild card pattern */
55 /** Target string for this match pattern */
59 * Construct a match pattern from a pattern and template.
60 * @param template The node that contains the template for this pattern
64 TemplateSubPatternAssociation(ElemTemplate template, StepPattern pattern, String pat) argument
[all...]
/external/bluetooth/bluez/src/
H A Dmanager.c90 const char *pattern; local
94 if (!dbus_message_get_args(msg, NULL, DBUS_TYPE_STRING, &pattern,
100 if (!strcmp(pattern, "any") || !strcmp(pattern, "00:00:00:00:00:00")) {
105 } else if (!strncmp(pattern, "hci", 3) && strlen(pattern) >= 4) {
106 dev_id = atoi(pattern + 3);
110 str2ba(pattern, &bdaddr);
/external/chromium/chrome/browser/content_settings/
H A Dcontent_settings_pattern.cc15 bool IsValidHostlessPattern(const std::string& pattern) { argument
19 return StartsWithASCII(pattern, file_scheme_plus_separator, false);
24 // The version of the pattern format implemented. Version 1 includes the
/external/markdown/markdown/extensions/
H A Dwikilinks.py115 def __init__(self, pattern, config):
116 markdown.inlinepatterns.Pattern.__init__(self, pattern)
/external/markdown/markdown/
H A Dinlinepatterns.py6 objects, one per pattern. Pattern objects must be instances of classes
7 that extend markdown.Pattern. Each pattern object uses a single regular
10 pattern.getCompiledRegExp() # returns a regular expression
12 pattern.handleMatch(m) # takes a match object and returns
112 The pattern classes
119 def __init__ (self, pattern, markdown_instance=None):
121 Create an instant of an inline pattern.
125 * pattern: A regular expression that matches a pattern
128 self.pattern
[all...]
/external/srec/srec/include/
H A Dc42mul.h53 pattern_info *pattern,
60 void partial_traceback(multi_srec *rec, pattern_info *pattern,
/external/chromium/chrome/common/extensions/
H A Duser_script_unittest.cc73 URLPattern pattern(kAllSchemes);
75 pattern.Parse("http://*/foo*", URLPattern::PARSE_STRICT));
78 script.add_url_pattern(pattern);
89 URLPattern pattern(kAllSchemes);
91 pattern.Parse("http://www.google.com/*",
93 script.add_url_pattern(pattern);
/external/webkit/Source/WebCore/platform/graphics/cairo/
H A DFontCairo.cpp127 cairo_pattern_t* pattern = context->fillPattern()->createPlatformPattern(affine); local
128 cairo_set_source(cr, pattern);
134 cairo_pattern_destroy(pattern);
157 cairo_pattern_t* pattern = context->strokePattern()->createPlatformPattern(affine); local
158 cairo_set_source(cr, pattern);
164 cairo_pattern_destroy(pattern);
/external/webkit/Tools/Scripts/webkitpy/thirdparty/simplejson/
H A Ddecoder.py6 from scanner import Scanner, pattern namespace
48 pattern('(-?Infinity|NaN|true|false|null)')(JSONConstant)
58 pattern(r'(-?(?:0|[1-9]\d*))(\.\d+)?([eE][-+]?\d+)?')(JSONNumber)
114 pattern(r'"')(JSONString)
158 pattern(r'{')(JSONObject)
184 pattern(r'\[')(JSONArray)
/external/libxml2/
H A Dtriostr.c718 @param pattern Pattern, including wildcards, to search for.
729 TRIO_ARGS2((string, pattern),
731 TRIO_CONST char *pattern)
734 assert(pattern);
736 for (; ('*' != *pattern); ++pattern, ++string)
740 return (NIL == *pattern);
742 if ((trio_to_upper((int)*string) != trio_to_upper((int)*pattern))
743 && ('?' != *pattern))
749 while ('*' == pattern[
728 trio_match(string, pattern), TRIO_CONST char *string, TRIO_CONST char *pattern argument
781 trio_match_case(string, pattern), TRIO_CONST char *string, TRIO_CONST char *pattern argument
[all...]
/external/webkit/Source/WebCore/page/mac/
H A DFrameMac.mm90 String pattern("(");
104 pattern.append("|");
109 pattern.append("\\b");
110 pattern.append(label);
112 pattern.append("\\b");
114 pattern.append(")");
115 result = new RegularExpression(pattern, TextCaseInsensitive);
/external/icu4c/i18n/
H A Ddecimfmt.cpp72 * every currency format pattern,
73 * including the pattern of default currecny style
77 // negative prefix pattern
79 // negative suffix pattern
81 // positive prefix pattern
83 // positive suffix pattern
100 /* affix for currency formatting when the currency sign in the pattern
101 * equals to 3, such as the pattern contains 3 currency sign or
214 * CURRENCY_SIGN is seen in a pattern, then the decimal separator is
251 // pattern i
253 DecimalFormat(const UnicodeString& pattern, UErrorCode& status) argument
265 DecimalFormat(const UnicodeString& pattern, DecimalFormatSymbols* symbolsToAdopt, UErrorCode& status) argument
275 DecimalFormat( const UnicodeString& pattern, DecimalFormatSymbols* symbolsToAdopt, UParseError& parseErr, UErrorCode& status) argument
290 DecimalFormat(const UnicodeString& pattern, const DecimalFormatSymbols& symbols, UErrorCode& status) argument
303 DecimalFormat(const UnicodeString& pattern, DecimalFormatSymbols* symbolsToAdopt, NumberFormat::EStyles style, UErrorCode& status) argument
354 construct(UErrorCode& status, UParseError& parseErr, const UnicodeString* pattern, DecimalFormatSymbols* symbolsToAdopt) argument
538 setupCurrencyAffixes(const UnicodeString& pattern, UBool setupForCurrentPattern, UBool setupForPluralPattern, UErrorCode& status) argument
3032 expandAffix(const UnicodeString& pattern, UnicodeString& affix, double number, FieldPositionHandler& handler, UBool doFormat, const UnicodeString* pluralCount) const argument
3634 applyPattern(const UnicodeString& pattern, UErrorCode& status) argument
3643 applyPattern(const UnicodeString& pattern, UParseError& parseError, UErrorCode& status) argument
3652 applyLocalizedPattern(const UnicodeString& pattern, UErrorCode& status) argument
3661 applyLocalizedPattern(const UnicodeString& pattern, UParseError& parseError, UErrorCode& status) argument
3671 applyPatternWithoutExpandAffix(const UnicodeString& pattern, UBool localized, UParseError& parseError, UErrorCode& status) argument
4288 applyPattern(const UnicodeString& pattern, UBool localized, UParseError& parseError, UErrorCode& status) argument
4314 applyPatternInternally(const UnicodeString& pluralCount, const UnicodeString& pattern, UBool localized, UParseError& parseError, UErrorCode& status) argument
[all...]

Completed in 611 milliseconds

1234567891011>>