Searched defs:cts (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jdk/test/java/net/CookieHandler/
H A DCookieManagerTest.java101 public CookieTestCase(String h, String cts, String ctr, String sp) { argument
103 cookieToSend = cts;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DCellTypeState.java206 public void set(CellTypeState cts) { argument
207 _state = cts._state;
211 public CellTypeState merge (CellTypeState cts, int slot) { argument
215 Assert.that(!isBottom() && !cts.isBottom(),
219 result._state = _state | cts._state;
226 if (!equal(cts)) {
H A DGenerateOopMap.java356 boolean mergeStateVectors (CellTypeStateList cts, CellTypeStateList bbts) { argument
362 CellTypeState v = cts.get(i).merge(bbts.get(i), i);
375 CellTypeState v = cts.get(i).merge(bbts.get(i), i);
445 void setVar (int localNo, CellTypeState cts) { argument
447 Assert.that(cts.isReference() || cts.isValue() || cts.isAddress(),
453 vars().get(localNo).set(cts);
473 void push (CellTypeState cts) { argument
481 stack().get(_stack_top++).set(cts);
506 monitorPush(CellTypeState cts) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jndi/dns/
H A DDnsContext.java428 CT[] cts = attrIdsToClassesAndTypes(attrIds);
429 CT ct = getClassAndTypeToQuery(cts);
433 return rrsToAttrs(rrs, cts);
603 * match the classes and types in cts (see classAndTypeMatch()
606 private static Attributes rrsToAttrs(ResourceRecords rrs, CT[] cts) { argument
615 if (!classAndTypeMatch(rrclass, rrtype, cts)) {
631 * Returns true if rrclass and rrtype match some element of cts.
633 * or if the array value is ANY. If cts is null, then any class
637 CT[] cts) {
638 if (cts
636 classAndTypeMatch(int rrclass, int rrtype, CT[] cts) argument
742 getClassAndTypeToQuery(CT[] cts) argument
[all...]
/openjdk7/hotspot/src/share/vm/oops/
H A DgenerateOopMap.cpp677 CellTypeState CellTypeState::merge(CellTypeState cts, int slot) const { argument
680 assert(!is_bottom() && !cts.is_bottom(),
683 result._state = _state | cts._state;
690 if (!equal(cts)) {
704 // Merge the variable state for locals and stack from cts into bbts.
705 bool GenerateOopMap::merge_local_state_vectors(CellTypeState* cts, argument
712 CellTypeState v = cts[i].merge(bbts[i], i);
720 // Merge the monitor stack state from cts into bbts.
721 bool GenerateOopMap::merge_monitor_state_vectors(CellTypeState* cts, argument
732 CellTypeState v = cts[
814 set_var(int localNo, CellTypeState cts) argument
1860 CellTypeState cts = (bt == T_OBJECT) ? CellTypeState::make_line_ref(bci) : valCTS; local
[all...]

Completed in 2028 milliseconds