/external/webkit/JavaScriptCore/tests/mozilla/ecma_2/String/ |
D | match-001.js | 78 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] );
|
D | split-001.js | 72 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] );
|
D | split-003.js | 80 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] );
|
D | match-004.js | 130 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] );
|
D | match-002.js | 131 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] );
|
D | match-003.js | 120 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/ |
D | WCMatcher.java | 71 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/ |
D | regress-001.js | 33 for ( var matches = 0; matches < matches_array.length; matches++ ) { 35 "( " + str_regexp + " )[" + matches +"]", 36 matches_array[matches], 37 regexp[matches] );
|
D | unicode-001.js | 47 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] );
|
D | hex-001.js | 57 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] );
|
D | multiline-001.js | 56 for ( var matches = 0; matches < matches_array.length; matches++ ) { 58 regexp + ".exec(" + pattern +")[" + matches +"]", 59 matches_array[matches], 60 regexp.exec(pattern)[matches] );
|
D | octal-003.js | 74 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/ |
D | Metaphone.java | 314 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/ |
D | SVGTextPositioningElement.cpp | 68 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()
|
D | SVGLangSpace.cpp | 69 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/ |
D | setup.py | 43 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/ |
D | CharacterClassConstructor.cpp | 38 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()
|
D | WRECGenerator.cpp | 349 …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/ |
D | Mixed.pm | 243 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/ |
D | InetAddressUtils.java | 57 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/ |
D | libipt_ecn.man | 4 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
|
D | libip6t_ipv6header.man | 1 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/ |
D | ip6tables.c | 324 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 …]
|
D | iptables.c | 411 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/ |
D | XPathPath.cpp | 120 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()
|