| /glassfish-3.1.2/tests/embedded/maven-plugin/jsftest/src/test/java/org/glassfish/tests/embedded/jsftest/ |
| H A D | JSFTest.java | 73 private static void goGet(String url, String... match) throws Exception { argument 86 boolean[] found = new boolean[match.length]; 91 for (String m : match) { 93 if (index != -1 && count < match.length) {
|
| /glassfish-3.1.2/web/web-core/src/main/java/org/apache/tomcat/util/digester/ |
| H A D | AbstractRulesImpl.java | 119 * @param namespaceURI Namespace URI that must match on all 168 * Return a List of all registered Rule instances that match the specified 175 * or <code>null</code> to match regardless of namespace URI 178 abstract public List<Rule> match(String namespaceURI, String pattern); method in class:AbstractRulesImpl
|
| H A D | Rules.java | 68 * the rules that match a particular pattern of nested elements discovered 104 * @param namespaceURI Namespace URI that must match on all 130 * Return a List of all registered Rule instances that match the specified 137 * or <code>null</code> to match regardless of namespace URI 140 public List<Rule> match(String namespaceURI, String pattern); method in interface:Rules
|
| H A D | RulesBase.java | 167 * @param namespaceURI Namespace URI that must match on all 224 * Return a List of all registered Rule instances that match the specified 231 * or <code>null</code> to match regardless of namespace URI 234 public List<Rule> match(String namespaceURI, String pattern) { method in class:RulesBase 283 * match the specified namespace URI (if any). If there are no such 286 * @param namespaceURI Namespace URI to match, or <code>null</code> to 301 // Select only Rules that match on the specified namespace URI
|
| H A D | WithDefaultsRulesWrapper.java | 71 * instances will be returned for any match for which the wrapped 83 * when a pattern does not match any other rule, then rule alpha will be called. 155 public List<Rule> match(String namespaceURI, String pattern) { method in class:WithDefaultsRulesWrapper 156 List<Rule> matches = wrappedRules.match(namespaceURI, pattern);
|
| H A D | Digester.java | 245 * The current match pattern for nested element processing. 247 protected String match = ""; field in class:Digester 457 String elementName = match; 633 * Return the current rule match path 637 return match; 699 * @param ruleNamespaceURI Namespace URI that must match on all 1111 log.fine(" match='" + match + "'"); 1146 log.fine(" No rules found matching '" + match + "'."); 1149 log.warning(" No rules found matching '" + match [all...] |
| /glassfish-3.1.2/admin/jmx-remote/server/src/main/java/com/sun/enterprise/admin/jmx/remote/server/ |
| H A D | ServerVersionMatcher.java | 85 public boolean match(Version client, Version server) { method in class:ServerVersionMatcher
|
| /glassfish-3.1.2/tests/quicklook/utils/src/com/sun/appserv/test/ |
| H A D | AdminBaseDevTest.java | 244 final boolean doesGetMatch(String what, String match) { argument 247 if (!ok(match) && !ok(ret)) 250 if (!ok(match) || !ok(ret)) 253 return (match.equals(ret));
|
| /glassfish-3.1.2/common/amx-core/src/main/java/org/glassfish/admin/amx/util/jmx/ |
| H A D | ObjectNameQueryImpl.java | 59 Return true if one (or more) of the properties match the regular expressions 60 for both name and value. Return false if no property/value combinations match. 64 boolean match(Hashtable properties, Pattern propertyPattern, Pattern valuePattern) method in class:ObjectNameQueryImpl 99 property within the ObjectName whose property name and value match their respective 102 A null regex indicates "match anything". 114 if (!match(properties, propertyPatterns[i], valuePatterns[i])) 130 A null regex indicates "match anything". 142 if (match(properties, propertyPatterns[i], valuePatterns[i])) 169 // consider null to match anything 186 boolean match(ObjectNam method in interface:ObjectNameQueryImpl.Matcher 196 public boolean match(ObjectName name, Pattern[] names, Pattern[] values) method in class:ObjectNameQueryImpl.MatchAnyMatcher 209 public boolean match(ObjectName name, Pattern[] names, Pattern[] values) method in class:ObjectNameQueryImpl.MatchAllMatcher [all...] |
| /glassfish-3.1.2/installer/src/cpp/share/launcher/zlib-1.1.4/ |
| H A D | deflate.c | 18 * string matches are performed only when the previous match ends. So it 22 * is used to find longer strings when a small match has been found. 91 local void check_match OF((deflate_state *s, IPos start, IPos match, 118 ush good_length; /* reduce lazy search above this match length */ 119 ush max_lazy; /* do not perform lazy search above this match length */ 120 ush nice_length; /* quit search above this match length */ 684 * Initialize the "longest match" routines for a new zlib stream 712 * Set match_start to the longest match starting at the given string and 718 * OUT assertion: the match length is not greater than s->lookahead. 721 /* For 80x86 and 680x0, an optimized version will be provided in match 731 register Bytef *match; /* matched string */ local 872 register Bytef *match; /* matched string */ local [all...] |
| /glassfish-3.1.2/jbi/serviceengine/sun-javaee-engine/src/main/java/com/sun/enterprise/jbi/serviceengine/util/soap/ |
| H A D | EndpointMetaData.java | 423 private boolean match(QName qName, String localName, String nsUri) { method in class:EndpointMetaData 448 if(match(p.getElementName(), 452 if(match(p.getTypeName(),
|
| /glassfish-3.1.2/security/core/src/main/java/com/sun/enterprise/security/provider/ |
| H A D | PolicyParser.java | 229 match(";"); 359 match("keystore"); 360 keyStoreUrlString = match("quoted string"); 366 match(","); 369 keyStoreType = match("quoted string"); 379 match(","); 382 keyStoreProvider = match("quoted string"); 390 match("keyStorePasswordURL"); 391 storePassURL = match("quoted string"); 427 match("gran 734 private String match(String expect) method in class:PolicyParser [all...] |
| /glassfish-3.1.2/tests/community/web/jruby/helloapp/public/javascripts/ |
| H A D | prototype.js | 154 var result = '', source = this, match; 158 if (match = source.match(pattern)) { 159 result += source.slice(0, match.index); 160 result += String.interpret(replacement(match)); 161 source = source.slice(match.index + match[0].length); 173 return this.gsub(pattern, function(match) { 174 if (--count < 0) return match[0]; 175 return replacement(match); [all...] |