Searched refs:match (Results 1 - 25 of 222) sorted by relevance

123456789

/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DSWITCH.java63 * TABLESWITCH instruction, depending on whether the match values (int[]) can be
69 private int[] match; field in class:SWITCH
75 * Template for switch() constructs. If the match array can be
84 * @param match array of match values (case 2: ... case 7: ..., etc.)
89 public SWITCH(int[] match, InstructionHandle[] targets, argument
91 this.match = (int[])match.clone();
94 if((match_length = match.length) < 2) // (almost) empty switch, or just default
95 instruction = new TABLESWITCH(match, target
109 SWITCH(int[] match, InstructionHandle[] targets, InstructionHandle target) argument
[all...]
H A DLOOKUPSWITCH.java76 public LOOKUPSWITCH(int[] match, InstructionHandle[] targets, argument
78 super(com.sun.org.apache.bcel.internal.Constants.LOOKUPSWITCH, match, targets, target);
94 out.writeInt(match[i]); // match-offset pairs
110 match = new int[match_length];
115 match[i] = bytes.readInt();
H A DTABLESWITCH.java77 * @param match sorted array of match values, match[0] must be low value,
78 * match[match_length - 1] high value
82 public TABLESWITCH(int[] match, InstructionHandle[] targets, argument
84 super(com.sun.org.apache.bcel.internal.Constants.TABLESWITCH, match, targets, target);
98 int low = (match_length > 0)? match[0] : 0;
101 int high = (match_length > 0)? match[match_length - 1] : 0;
122 match = new int[match_length];
127 match[
[all...]
H A DSelect.java74 protected int[] match; // matches, i.e., case 1: ... field in class:Select
91 * @param match array of matching values
95 Select(short opcode, int[] match, InstructionHandle[] targets, argument
104 this.match = match;
106 if((match_length = match.length) != targets.length)
184 buf.append("(").append(match[i]).append(", ")
254 * @return array of match indices
256 public int[] getMatchs() { return match; }
259 * @return array of match targe
[all...]
/openjdk7/jdk/src/share/classes/java/security/cert/
H A DCRLSelector.java57 boolean match(CRL crl); method in interface:CRLSelector
H A DCertSelector.java58 boolean match(Certificate cert); method in interface:CertSelector
/openjdk7/jdk/test/sun/security/krb5/etype/
H A DETypeOrder.java42 int match = 0;
44 for (; match < correct.length; match++) {
45 if (etypes[i] == correct[match]) {
46 System.out.println("Find " + etypes[i] + " at #" + match);
50 throw new Exception("No match or bad order for " + etypes[i]);
/openjdk7/jdk/test/sun/security/provider/KeyStore/
H A DCaseSensitiveAliases.java110 match(p2, ks.getKey("alias", pw));
111 match(p2, ks.getKey("Alias", pw));
112 match(p2, ks.getKey("ALIAS", pw));
113 match(a2, ks.getCertificateChain("alias"));
114 match(a2, ks.getCertificateChain("Alias"));
115 match(a2, ks.getCertificateChain("ALIAS"));
120 match(null, ks.getKey("alias", pw));
121 match(p1, ks.getKey("Alias", pw));
122 match(p2, ks.getKey("ALIAS", pw));
123 match(nul
131 private static void match(Key p1, Key p2) throws Exception { method in class:CaseSensitiveAliases
138 private static void match(Certificate[] a1, Certificate[] a2) throws Exception { method in class:CaseSensitiveAliases
[all...]
/openjdk7/langtools/test/tools/javac/code/
H A DArrayClone.java51 String match = "[ \t]+[0-9]+:[ \t]+invokevirtual[ \t]+#[0-9]+[ \t]+// Method \"\\[Ljava/lang/String;\".clone:\\(\\)Ljava/lang/Object;";
52 if (line.matches(match))
/openjdk7/jdk/src/share/classes/sun/tools/jstat/
H A DParser.java140 * match one of the token values in the given set of key words
155 * match a token with TT_TYPE=type, and the token value is a given sequence
158 private void match(int ttype, String token) method in class:Parser
169 * match a token with TT_TYPE=type
171 private void match(int ttype) throws ParserException, IOException { method in class:Parser
180 * match a token with TT_TYPE=char, where the token value is the given char.
182 private void match(char ttype) throws ParserException, IOException { method in class:Parser
193 * match a token with TT_TYPE='"', where the token value is a sequence
197 match(DOUBLEQUOTE);
201 * match
217 private void match(String token) throws ParserException, IOException { method in class:Parser
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/msg/
H A DXMLSchemaMessages_fr.properties295 s4s-elt-must-match.1 = s4s-elt-must-match.1 : Le contenu de ''{0}'' doit concorder avec {1}. Probl\u00E8me d\u00E9tect\u00E9 \u00E0 partir de : {2}.
296 s4s-elt-must-match.2 = s4s-elt-must-match.2 : Le contenu de ''{0}'' doit concorder avec {1}. Nombre insuffisant d''\u00E9l\u00E9ments trouv\u00E9s.
297 # the "invalid-content" messages provide less information than the "must-match" counterparts above. They're used for complex types when providing a "match" would be an information dump
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/interpreter/
H A DLookupswitchPair.java34 public int match() { method in class:LookupswitchPair
/openjdk7/jdk/src/share/classes/sun/jvmstat/perfdata/monitor/
H A DAliasFileParser.java85 * method to match the current Token to a specified token type and
86 * value Throws a SyntaxException if token doesn't match.
88 private void match(int ttype, String token) method in class:AliasFileParser
103 * method to match the current Token to a specified token type.
104 * Throws a SyntaxException if token doesn't match.
106 private void match(int ttype) throws IOException, SyntaxException { method in class:AliasFileParser
115 private void match(String token) throws IOException, SyntaxException { method in class:AliasFileParser
116 match(StreamTokenizer.TT_WORD, token);
147 match(ALIAS);
149 match(StreamTokenize
[all...]
/openjdk7/jdk/src/share/classes/sun/nio/fs/
H A DAbstractBasicFileAttributeView.java118 boolean match(String name) { method in class:AbstractBasicFileAttributeView.AttributesBuilder
142 if (builder.match(SIZE_NAME))
144 if (builder.match(CREATION_TIME_NAME))
146 if (builder.match(LAST_ACCESS_TIME_NAME))
148 if (builder.match(LAST_MODIFIED_TIME_NAME))
150 if (builder.match(FILE_KEY_NAME))
152 if (builder.match(IS_DIRECTORY_NAME))
154 if (builder.match(IS_REGULAR_FILE_NAME))
156 if (builder.match(IS_SYMBOLIC_LINK_NAME))
158 if (builder.match(IS_OTHER_NAM
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xpath/regex/
H A DRegularExpression.java48 * Match match = new Match();
49 * if (re.matches(text, match)) {
89 * The <code>match()</code> method does not do subsring matching
121 * <dd>This expression matches one code point in Unicode. It can match a pair of surrogates.
689 * @param match A Match instance for storing matching result.
690 * @return Offset of the start position in <VAR>target</VAR>; or -1 if not match.
692 public boolean matches(char[] target, Match match) { argument
693 return this.matches(target, 0, target .length , match);
703 * @param match A Match instance for storing matching result.
704 * @return Offset of the start position in <VAR>target</VAR>; or -1 if not match
706 matches(char[] target, int start, int end, Match match) argument
878 matches(String target, Match match) argument
891 matches(String target, int start, int end, Match match) argument
1045 private int match(Context con, Op op, int offset, int dx, int opts) { method in class:RegularExpression
1566 matches(CharacterIterator target, Match match) argument
2017 Match match; field in class:RegularExpression.Context
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jndi/toolkit/dir/
H A DContainmentFilter.java43 public ContainmentFilter(Attributes match) { argument
44 matchingAttrs = match;
69 // check whether attribute values match
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/
H A DPreprocessor.java194 match (Token.Include);
220 match (Token.StringLiteral);
229 // match will throw an exception
230 match (Token.LessThan);
239 match (Token.GreaterThan);
274 match (Token.Define);
279 match (Token.Identifier);
285 match (Token.MacroIdentifier);
296 match (Token.Undef);
301 match (Toke
1301 private void match (int type) throws IOException, ParseException method in class:Preprocessor
[all...]
H A DParser.java136 // Match handles preprocessor directives, so use match to
138 // such a directive. But match depends on the token
144 match (0);
306 match( Token.Local ) ;
317 match (Token.Abstract);
336 match (Token.Semicolon);
349 match (Token.Module);
356 match (Token.Identifier);
358 match (Token.LeftBrace);
363 match (Toke
2960 private void match (int type) throws IOException, ParseException method in class:Parser
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DBreakpointInfo.java70 public boolean match(Method m, int bci) { method in class:BreakpointInfo
71 return (bci == getBCI() && match(m));
74 public boolean match(Method m) { method in class:BreakpointInfo
/openjdk7/jaxp/src/com/sun/org/apache/regexp/internal/
H A DRETest.java139 String match = br.readLine();
141 if ( match != null )
143 // Try a match against the keyboard input
144 if (r.match(match))
286 // Show match time
309 if (!r.match("aaab"))
311 fail("Did not match 'aaab' with deserialized RE.");
327 if (!r.match("aaab"))
329 fail("Did not match 'aaa
[all...]
/openjdk7/jdk/test/sun/security/pkcs11/Cipher/
H A DTestRSACipher.java69 match(b, d);
72 match(b, d);
87 match(b, d);
90 match(b, d);
115 private static void match(byte[] b1, byte[] b2) throws Exception { method in class:TestRSACipher
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/soap/
H A DMimeHeaders.java187 private boolean match; field in class:MimeHeaders.MatchingIterator
192 MatchingIterator(String[] names, boolean match) { argument
193 this.match = match;
204 return match ? null : hdr;
208 if (match)
212 if (!match)
259 * match a name in the given array of names.
264 * objects whose name does not match one of the names in the given list
/openjdk7/jdk/test/com/sun/crypto/provider/TLS/
H A DTestKeyMaterial.java133 match(lineNumber, clientCipherBytes,
135 match(lineNumber, serverCipherBytes,
137 match(lineNumber, clientIv, result.getClientIv());
138 match(lineNumber, serverIv, result.getServerIv());
139 match(lineNumber, clientMacBytes, result.getClientMacKey());
140 match(lineNumber, serverMacBytes, result.getServerMacKey());
154 private static void match(int lineNumber, byte[] out, Object res) method in class:TestKeyMaterial
/openjdk7/hotspot/src/share/vm/compiler/
H A DcompilerOracle.cpp56 static bool match(Symbol* candidate, Symbol* match, Mode match_mode);
73 if (match(class_name, current->class_name(), current->_class_mode) &&
74 match(method_name, current->method_name(), current->_method_mode) &&
82 bool match(methodHandle method) { function in class:MethodMatcher
139 bool MethodMatcher::match(Symbol* candidate, Symbol* match, Mode match_mode) { argument
145 return candidate == match;
150 const char * match_string = match->as_C_string();
181 bool match(methodHandl function in class:MethodOptionMatcher
404 int match = MethodMatcher::Exact; local
496 MethodMatcher* match = NULL; local
[all...]
/openjdk7/jdk/src/share/classes/sun/security/provider/
H A DPolicyParser.java217 match(";");
346 match("keystore");
347 keyStoreUrlString = match("quoted string");
353 match(",");
356 keyStoreType = match("quoted string");
366 match(",");
369 keyStoreProvider = match("quoted string");
377 match("keyStorePasswordURL");
378 storePassURL = match("quoted string");
414 match("gran
719 private String match(String expect) method in class:PolicyParser
[all...]

Completed in 150 milliseconds

123456789