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

123456789

/openjdk7/jdk/src/share/classes/sun/security/provider/certpath/
H A DSunCertPathBuilder.java837 return sel.match(anchorCert);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xpath/regex/
H A DToken.java581 boolean match(int ch) { method in class:Token
582 throw new RuntimeException("NFAArrow#match(): Internal error: "+this.type);
1195 boolean match(int ch) { method in class:Token.CharToken
1199 throw new RuntimeException("NFAArrow#match(): Internal error: "+this.type);
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_Canonicalizer.cpp59 assert(_canonical->type()->tag() == x->type()->tag(), "types must match");
878 static bool match(UnsafeRawOp* x, function
903 // doesn't match any expected sequences
918 if (match(x, &base, &index, &log2_scale)) {
H A Dc1_GraphBuilder.cpp1335 Value key = append(new Constant(new IntConstant(pair.match())));
1351 keys->at_put(i, pair.match());
1800 // to match that class, otherwise klass will refer to the
2205 assert(cur_scope_data->scope() == cur_state->scope(), "scopes do not match");
2224 assert(entry->bci() == h->handler_bci(), "must match");
2229 assert(entry->state() == NULL || cur_state->total_locks_size() == entry->state()->total_locks_size(), "locks do not match");
2242 // stacks to not match because blocks can be parsed twice.
2304 assert(cur_scope_data->scope() == cur_state->scope(), "scopes do not match");
3648 if (!callee->has_balanced_monitors()) INLINE_BAILOUT("callee's monitors do not match");
/openjdk7/jdk/src/share/native/sun/awt/libpng/
H A DCHANGES157 Fixed order of error function pointers to match documentation
3273 definitions) to see if they match a name in the global namespace.
3486 Added png_set_chop_16() API, to match inaccurate results from previous
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DGenerateOopMap.java528 void replaceAllCTSMatches (CellTypeState match, argument
535 if (match.equal(_state.get(i))) {
544 if (match.equal(_state.get(i))) {
2247 Assert.that(_monitor_safe, "Attempt to match monitor in broken code.");
2251 // tty.print_cr("Report monitor match for bci : %d", bci);
/openjdk7/jdk/src/share/classes/javax/swing/
H A DGroupLayout.java3285 AutoPreferredGapMatch match = matches.get(i);
3287 calculatePadding(p, position, match.source,
3288 match.target));
/openjdk7/hotspot/src/share/vm/oops/
H A DgenerateOopMap.cpp766 // stack heights don't match then this is a verification error and
769 // depths match up then their states are merged. Otherwise the
777 // always merge local state even if monitors don't match.
782 // monitors still match so continue merging monitor states.
1735 // Replace all occurences of the state 'match' with the state 'replace'
1737 void GenerateOopMap::replace_all_CTS_matches(CellTypeState match,
1744 if (match.equal(_state[i])) {
1753 if (match.equal(_state[i])) {
1680 assert(poplen < 5, �); for(int i = 0; i < poplen; i++) actual[i] = pop(); char push_ch = *out++; while (push_ch != �) { int idx = push_ch - �; assert(idx >= 0 && idx < poplen, �); push(actual[idx]); push_ch = *out++; } } void GenerateOopMap::ppop1(CellTypeState out) { CellTypeState actual = pop(); check_type(out, actual); } void GenerateOopMap::ppop(CellTypeState *out) { while (!(*out).is_bottom()) { ppop1(*out++); } } void GenerateOopMap::ppush1(CellTypeState in) { assert(in.is_reference() | in.is_value(), �); push(in); } void GenerateOopMap::ppush(CellTypeState *in) { while (!(*in).is_bottom()) { ppush1(*in++); } } void GenerateOopMap::pp(CellTypeState *in, CellTypeState *out) { ppop(in); ppush(out); } void GenerateOopMap::pp_new_ref(CellTypeState *in, int bci) { ppop(in); ppush1(CellTypeState::make_line_ref(bci)); } void GenerateOopMap::ppop_any(int poplen) { if (_stack_top >= poplen) { _stack_top -= poplen; } else { verify_error(�); } } void GenerateOopMap::replace_all_CTS_matches(CellTypeState match, CellTypeState replace) { int i; int len = _max_locals + _stack_top; bool change = false; for (i = len - 1; i >= 0; i--) argument
/openjdk7/jdk/src/share/classes/java/security/cert/
H A DX509CertSelector.java43 * match all specified criteria. This class is particularly useful when
50 * getBasicConstraints} method). Therefore, the {@link #match match}
61 * for example) such that the <code>match</code> method
153 * so any <code>X509Certificate</code> will match.
162 * <code>X509Certificate</code> passed to the <code>match</code> method.
166 * match a single certificate. Although other criteria can be specified
170 * @param cert the <code>X509Certificate</code> to match (or
180 * must match the certificate serial number in the
184 * @param serial the certificate serial number to match
2003 public boolean match(Certificate cert) { method in class:X509CertSelector
[all...]
/openjdk7/hotspot/src/share/vm/ci/
H A DciMethod.cpp194 if (bp->match(me)) {
/openjdk7/jdk/test/java/util/regex/
H A DRegExTest.java84 // boolean match calls
575 Matcher match = pat.matcher(message);
576 if (!match.find())
578 if (match.find())
580 if (match.find())
1719 // Check the case for no match found
1964 // Should not match entire input if input is not empty
1977 // Should match entire input if input is empty
2172 // and fail to match if the target group does not exit
2424 * to match sequence
[all...]
/openjdk7/hotspot/src/share/vm/code/
H A Dnmethod.cpp228 address ExceptionCache::match(Handle exception, address pc) { function in class:ExceptionCache
411 if ((ret_val = ec->match(exception,pc)) != NULL) {
653 // values something that will never match a pc like the nmethod vtable entry
687 // To enable tools to match it up with the compilation activity,
734 // values something that will never match a pc like the nmethod vtable entry
766 // To enable tools to match it up with the compilation activity,
1930 assert(last_pc + 1 == scopes_pcs_end(), "must match exactly");
1978 // The successor must be the required match, if there is a match at all.
/openjdk7/hotspot/src/share/vm/opto/
H A Dmatcher.cpp182 //---------------------------match---------------------------------------------
183 void Matcher::match( ) { function in class:Matcher
347 // Recursively match trees from old space into new space.
355 C->record_method_not_compilable("instruction match failed");
999 if (!is_dontcare(n)) { // Matcher can match this guy
1000 // Calls match special. They match alone with no children.
1001 // Their children, the incoming arguments, match normally.
1008 m = n->in(0)->as_Multi()->match( n->as_Proj(), this );
1041 // Put precedence edges on stack first (match the
[all...]
H A Dmemnode.hpp120 // Look for an exact match for the address, with no intervening
188 // Do not match memory edge
478 // Do not match memory edge
883 // There are different flavors of Memory Barriers to match the Java Memory
910 virtual Node *match( const ProjNode *proj, const Matcher *m );
H A Dcompile.cpp129 return mid; // exact match
133 return lo; // inexact match
821 // To enable tools to match it up with the compilation activity,
2108 m.match();
2358 // Walk the chain of StoreCMs eliminating ones that match. As
2578 "Base pointers must match" );
2604 // Decode a narrow oop to match address
H A Dmemnode.cpp206 assert(consistent, "adr_check must match alias idx");
482 // (b) Observe that the next memory state makes an exact match
1044 // A load from an initialization barrier can match a captured store.
1495 // Steps (a), (b): Walk past independent stores to find an exact match.
1533 // No match.
2400 // Steps (a), (b): Walk past independent stores to find an exact match.
2612 // Do we Match on this edge index or not? Do not match memory
2619 // Do we Match on this edge index or not? Do not match memory
2781 // Do not match memory edge.
2905 //------------------------------match
2907 Node *MemBarNode::match( const ProjNode *proj, const Matcher *m ) { function in class:MemBarNode
[all...]
/openjdk7/jdk/src/share/demo/jvmti/java_crw_demo/
H A Djava_crw_demo.c1421 unsigned match = readU4(ci); local
1424 writeU4(ci, match);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/msg/
H A DXMLSchemaMessages_ja.properties295 s4s-elt-must-match.1 = s4s-elt-must-match.1: ''{0}''\u306E\u30B3\u30F3\u30C6\u30F3\u30C4\u306F{1}\u3068\u4E00\u81F4\u3059\u308B\u5FC5\u8981\u304C\u3042\u308A\u307E\u3059\u3002{2}\u4EE5\u964D\u306B\u554F\u984C\u304C\u898B\u3064\u304B\u308A\u307E\u3057\u305F\u3002
296 s4s-elt-must-match.2 = s4s-elt-must-match.2: ''{0}''\u306E\u30B3\u30F3\u30C6\u30F3\u30C4\u306F{1}\u3068\u4E00\u81F4\u3059\u308B\u5FC5\u8981\u304C\u3042\u308A\u307E\u3059\u3002\u5341\u5206\u306A\u8981\u7D20\u304C\u898B\u3064\u304B\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002
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/src/share/vm/runtime/
H A Darguments.cpp2030 // the option must match exactly.
2174 assert(*tail == ':', "bogus match by match_option()");
2922 // The string table is part of the shared archive so the size must match.
/openjdk7/hotspot/src/share/vm/classfile/
H A Dverifier.cpp412 ss->print("Current frame's local size doesn't match stackmap.");
415 ss->print("Current frame's stack size doesn't match stackmap.");
1791 verify_error(ctx, "Instruction type does not match stack map");
1837 verify_error(ctx, "Stack map does not match the one at "
2132 "buffer type must match VerificationType size");
2345 "buffer type must match VerificationType size");
2374 assert(nargs == size_it.size(), "Argument sizes do not match");
2642 bool match = return_type.is_assignable_from(type, this, CHECK_VERIFY(this));
2643 if (!match) {
/openjdk7/hotspot/src/share/vm/adlc/
H A Doutput_c.cpp1207 } else { // Else match register
1369 // Add unmatched edges from root of match tree
1430 PeepMatch *pmatch = peep->match();
1445 // If these match, Generate the new subtree
1448 PeepMatch *pmatch = peep->match();
1454 "root of PeepMatch does not match instruction");
1543 // match order so oper_input_base is wrong during expansion. This
1647 // to added in the same order that a match would add them.
1679 // or a match rule
1768 // Seach through match operand
[all...]
/openjdk7/jdk/make/jpda/jdwp/
H A Djdwp.spec46 "which match the given signature. "
1055 "For primitive values, the value's type must match the "
1102 "For primitive arguments, the argument value's type must match the "
1177 "For primitive arguments, the argument value's type must match the "
1473 "For primitive values, the value's type must match the "
1539 "For primitive arguments, the argument value's type must match the "
2000 "match the return type exactly. For object values, there must be a "
2125 "For primitive values, each value's type must match the "
2288 "does not match the given restricted regular expression. "
2477 "For primitive values, the value's type must match th
[all...]

Completed in 294 milliseconds

123456789