Home
last modified time | relevance | path

Searched refs:matches (Results 1 – 25 of 208) sorted by relevance

123456789

/external/webkit/JavaScriptCore/tests/mozilla/ecma_2/String/
Dmatch-001.js78 for ( var matches = 0; matches < matches_array.length; matches++ ) {
80 "( " + string + " ).match(" + str_regexp +")[" + matches +"]",
81 matches_array[matches],
82 string.match(regexp)[matches] );
94 for ( var matches = 0; matches < matches_array.length; matches++ ) {
96 "( " + string + " ).match(" + str_regexp +")[" + matches +"]",
97 matches_array[matches],
98 string.match(regexp)[matches] );
Dsplit-001.js72 for ( var matches = 0; matches < split_array.length; matches++ ) {
74 "( " + string + " ).split(" + str_sep +")[" + matches +"]",
75 split_array[matches],
76 string.split( separator )[matches] );
100 for ( var matches = 0; matches < split_array.length; matches++ ) {
102 "( " + string + " ).split(" + str_sep +", " + str_limit + " )[" + matches +"]",
103 split_array[matches],
104 string.split( separator )[matches] );
Dsplit-003.js80 for ( var matches = 0; matches < split_array.length; matches++ ) {
82 "( " + string + " ).split(" + str_sep +")[" + matches +"]",
83 split_array[matches],
84 string.split( separator )[matches] );
111 for ( var matches = 0; matches < slimit; matches++ ) {
113 "( " + string + " ).split(" + str_sep +", " + limit + " )[" + matches +"]",
114 split_array[matches],
115 string.split( separator, limit )[matches] );
Dmatch-004.js130 for ( var matches = 0; matches < limit; matches++ ) {
132 "( " + string + " ).match(" + str_regexp +")[" + matches +"]",
133 matches_array[matches],
134 string.match(regexp)[matches] );
161 for ( var matches = 0; matches < limit; matches++ ) {
163 "( " + string + " ).match(" + str_regexp +")[" + matches +"]",
164 matches_array[matches],
165 string.match(regexp)[matches] );
Dmatch-002.js131 for ( var matches = 0; matches < limit; matches++ ) {
133 "( " + string + " ).match(" + str_regexp +")[" + matches +"]",
134 matches_array[matches],
135 string.match(regexp)[matches] );
162 for ( var matches = 0; matches < limit; matches++ ) {
164 "( " + string + " ).match(" + str_regexp +")[" + matches +"]",
165 matches_array[matches],
166 string.match(regexp)[matches] );
Dmatch-003.js120 for ( var matches = 0; matches < limit; matches++ ) {
122 "( " + string + " ).match(" + str_regexp +")[" + matches +"]",
123 matches_array[matches],
124 string.match(regexp)[matches] );
/external/emma/core/java12/com/vladium/util/
DWCMatcher.java71 public abstract boolean matches (String s); in matches() method in WCMatcher
72 public abstract boolean matches (char [] chars); in matches() method in WCMatcher
118 public final boolean matches (final String s) in matches() method in WCMatcher.AllMatcher
125 public final boolean matches (final char [] chars) in matches() method in WCMatcher.AllMatcher
137 public final boolean matches (final String s) in matches() method in WCMatcher.EmptyMatcher
144 public final boolean matches (final char [] chars) in matches() method in WCMatcher.EmptyMatcher
156 public final boolean matches (final String s) in matches() method in WCMatcher.StartsWithMatcher
163 public final boolean matches (final char [] chars) in matches() method in WCMatcher.StartsWithMatcher
194 public final boolean matches (final String s) in matches() method in WCMatcher.EndsWithMatcher
201 public final boolean matches (final char [] chars) in matches() method in WCMatcher.EndsWithMatcher
[all …]
/external/webkit/JavaScriptCore/tests/mozilla/ecma_2/RegExp/
Dregress-001.js33 for ( var matches = 0; matches < matches_array.length; matches++ ) {
35 "( " + str_regexp + " )[" + matches +"]",
36 matches_array[matches],
37 regexp[matches] );
Dunicode-001.js47 for ( var matches = 0; matches < matches_array.length; matches++ ) {
49 str_regexp + " .exec(" + str_pattern +")[" + matches +"]",
50 matches_array[matches],
51 regexp.exec(pattern)[matches] );
Dhex-001.js57 for ( var matches = 0; matches < matches_array.length; matches++ ) {
59 str_regexp + ".exec(" + str_pattern +")[" + matches +"]",
60 matches_array[matches],
61 regexp.exec(pattern)[matches] );
Dmultiline-001.js56 for ( var matches = 0; matches < matches_array.length; matches++ ) {
58 regexp + ".exec(" + pattern +")[" + matches +"]",
59 matches_array[matches],
60 regexp.exec(pattern)[matches] );
Doctal-003.js74 for ( var matches = 0; matches < limit; matches++ ) {
76 str_regexp + ".exec(" + str_pattern +")[" + matches +"]",
77 matches_array[matches],
78 escape(regexp.exec(pattern)[matches]) );
/external/apache-http/src/org/apache/commons/codec/language/
DMetaphone.java314 boolean matches = false; in isPreviousChar()
317 matches = string.charAt(index - 1) == c; in isPreviousChar()
319 return matches; in isPreviousChar()
323 boolean matches = false; in isNextChar()
326 matches = string.charAt(index + 1) == c; in isNextChar()
328 return matches; in isNextChar()
332 boolean matches = false; in regionMatch()
336 matches = substring.equals( test ); in regionMatch()
338 return matches; in regionMatch()
/external/webkit/WebCore/svg/
DSVGTextPositioningElement.cpp68 return (attrName.matches(SVGNames::xAttr) || in isKnownAttribute()
69 attrName.matches(SVGNames::yAttr) || in isKnownAttribute()
70 attrName.matches(SVGNames::dxAttr) || in isKnownAttribute()
71 attrName.matches(SVGNames::dyAttr) || in isKnownAttribute()
72 attrName.matches(SVGNames::rotateAttr) || in isKnownAttribute()
DSVGLangSpace.cpp69 if (attr->name().matches(XMLNames::langAttr)) { in parseMappedAttribute()
72 } else if (attr->name().matches(XMLNames::spaceAttr)) { in parseMappedAttribute()
82 return (attrName.matches(XMLNames::langAttr) || in isKnownAttribute()
83 attrName.matches(XMLNames::spaceAttr)); in isKnownAttribute()
/external/clearsilver/python/
Dsetup.py43 matches = re.findall("-I(\S+)", val) variable
45 for inc_path in matches:
52 matches = re.findall("-l(\S+)", val) variable
54 for lib in matches:
61 matches = re.findall("-L(\S+)", val) variable
63 for lib_path in matches:
/external/webkit/JavaScriptCore/wrec/
DCharacterClassConstructor.cpp38 void CharacterClassConstructor::addSorted(Vector<UChar>& matches, UChar ch) in addSorted() argument
41 unsigned range = matches.size(); in addSorted()
47 int val = matches[pos+index] - ch; in addSorted()
58 if (pos == matches.size()) in addSorted()
59 matches.append(ch); in addSorted()
61 matches.insert(pos, ch); in addSorted()
239 addSorted(m_matches, other.matches[i]); in append()
DWRECGenerator.cpp349 …aracterRange* ranges, unsigned count, unsigned* matchIndex, const UChar* matches, unsigned matchCo… in generateCharacterClassInvertedRange() argument
359 if ((*matchIndex < matchCount) && (matches[*matchIndex] < lo)) { in generateCharacterClassInvertedRange()
364 …teCharacterClassInvertedRange(failures, matchDest, ranges, which, matchIndex, matches, matchCount); in generateCharacterClassInvertedRange()
366 while ((*matchIndex < matchCount) && (matches[*matchIndex] < lo)) { in generateCharacterClassInvertedRange()
367 matchDest.append(je32(character, Imm32((unsigned short)matches[*matchIndex]))); in generateCharacterClassInvertedRange()
376 …teCharacterClassInvertedRange(failures, matchDest, ranges, which, matchIndex, matches, matchCount); in generateCharacterClassInvertedRange()
383 while ((*matchIndex < matchCount) && (matches[*matchIndex] <= hi)) in generateCharacterClassInvertedRange()
427 …matchDest, charClass.ranges, charClass.numRanges, &matchIndex, charClass.matches, charClass.numMat… in generateCharacterClassInverted()
429 … matchDest.append(je32(character, Imm32((unsigned short)charClass.matches[matchIndex++]))); in generateCharacterClassInverted()
437 char ch = charClass.matches[i]; in generateCharacterClassInverted()
/external/webkit/JavaScriptCore/tests/mozilla/Getopt/
DMixed.pm243 my @matches = grep(/^$opt$/, keys %options);
245 return undef if $#matches < 0;
246 return $matches[0] if $#matches == 0;
248 $opt = $matches[0];
251 foreach (@matches) {
/external/apache-http/src/org/apache/http/conn/util/
DInetAddressUtils.java57 return IPV4_PATTERN.matcher(input).matches(); in isIPv4Address()
61 return IPV6_STD_PATTERN.matcher(input).matches(); in isIPv6StdAddress()
65 return IPV6_HEX_COMPRESSED_PATTERN.matcher(input).matches(); in isIPv6HexCompressedAddress()
/external/iptables/extensions/
Dlibipt_ecn.man4 This matches if the TCP ECN CWR (Congestion Window Received) bit is set.
7 This matches if the TCP ECN ECE (ECN Echo) bit is set.
10 This matches a particular IPv4 ECT (ECN-Capable Transport). You have to specify
Dlibip6t_ipv6header.man1 This module matches IPv6 extension headers and/or upper layer header.
21 (No Next header) which matches 59 in the 'Next Header field' of IPv6 header or any IPv6 extension h…
23 which matches any upper layer protocol header. A protocol name from /etc/protocols and numeric valu…
/external/iptables/
Dip6tables.c324 exit_printhelp(struct ip6tables_rule_match *matches) in exit_printhelp() argument
398 for (matchp = matches; matchp; matchp = matchp->next) { in exit_printhelp()
740 find_match(const char *match_name, enum ip6t_tryload tryload, struct ip6tables_rule_match **matches) in find_match() argument
807 if (ptr && matches) { in find_match()
813 for (i = matches; *i; i = &(*i)->next) { in find_match()
828 …(const char *pname, enum ip6t_tryload tryload, int nolookup, struct ip6tables_rule_match **matches) in find_proto() argument
836 return find_match(protoname, tryload, matches); in find_proto()
838 return find_match(pname, tryload, matches); in find_proto()
1534 make_delete_mask(struct ip6t_entry *fw, struct ip6tables_rule_match *matches) in make_delete_mask() argument
1542 for (matchp = matches; matchp; matchp = matchp->next) in make_delete_mask()
[all …]
Diptables.c411 exit_printhelp(struct iptables_rule_match *matches) in exit_printhelp() argument
489 for (matchp = matches; matchp; matchp = matchp->next) { in exit_printhelp()
734 find_match(const char *name, enum ipt_tryload tryload, struct iptables_rule_match **matches) in find_match() argument
790 if (ptr && matches) { in find_match()
796 for (i = matches; *i; i = &(*i)->next) { in find_match()
811 …to(const char *pname, enum ipt_tryload tryload, int nolookup, struct iptables_rule_match **matches) in find_proto() argument
819 return find_match(protoname, tryload, matches); in find_proto()
821 return find_match(pname, tryload, matches); in find_proto()
1603 make_delete_mask(struct ipt_entry *fw, struct iptables_rule_match *matches) in make_delete_mask() argument
1611 for (matchp = matches; matchp; matchp = matchp->next) in make_delete_mask()
[all …]
/external/webkit/WebCore/xml/
DXPathPath.cpp120 NodeSet matches; in evaluate() local
121 step->evaluate(nodes[j], matches); in evaluate()
123 for (size_t nodeIndex = 0; nodeIndex < matches.size(); ++nodeIndex) { in evaluate()
124 Node* node = matches[nodeIndex]; in evaluate()

123456789