Searched refs:vs (Results 1 - 25 of 34) sorted by relevance

12

/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/validation/
H A DValidationManager.java50 public final void addValidationState(ValidationState vs) { argument
51 fVSs.addElement(vs);
/openjdk7/langtools/test/tools/javac/processing/errors/TestParseErrors/
H A DParseErrors.java33 public String m2(Vector<String> vs, String s) { argument
/openjdk7/jdk/src/share/bin/
H A Dversion_comp.c241 char *vs; local
244 m1 = vs = JLI_StringDup(version_string);
246 if ((end = JLI_StrChr(vs, ' ')) != NULL)
248 if (acceptable_element(release, vs)) {
253 vs = end + 1;
339 char *vs; local
344 m1 = vs = JLI_StringDup(version_string);
346 if ((end = JLI_StrChr(vs, ' ')) != NULL)
348 if (!valid_element(vs)) {
353 vs
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DasPSOldGen.hpp44 ASPSOldGen(PSVirtualSpace* vs,
H A DasPSYoungGen.hpp48 ASPSYoungGen(PSVirtualSpace* vs,
H A DasPSOldGen.cpp60 ASPSOldGen::ASPSOldGen(PSVirtualSpace* vs, argument
70 _virtual_space = vs;
H A DasPSYoungGen.cpp44 ASPSYoungGen::ASPSYoungGen(PSVirtualSpace* vs, argument
49 PSYoungGen(vs->committed_size(), minimum_byte_size, byte_size_limit),
52 assert(vs->committed_size() == init_byte_size, "Cannot replace with");
54 _virtual_space = vs;
/openjdk7/jdk/test/sun/rmi/log/ReliableLog/
H A DLogAlignmentTest.java124 File vs = new File (dir, "Version_Number");
125 vs.delete();
129 File vs = new File (dir, "New_Version_Number");
130 vs.delete();
/openjdk7/jdk/src/share/classes/sun/tools/tree/
H A DSwitchStatement.java67 // Note that vs is reset to vset.copy() on every case label.
69 Vset vs = DEAD_END;
76 vs = s.check(env, newctx, vs.join(vset.copy()), exp);
132 vs = s.checkBlockStatement(env, newctx, vs, exp);
135 if (!vs.isDeadEnd()) {
136 newctx.vsBreak = newctx.vsBreak.join(vs);
H A DTryStatement.java69 Vset vs = body.check(env, newctx, vset.copy(), newexp);
77 Vset cvs = Vset.firstDAandSecondDU(vset, vs.copy().join(newctx.vsTryExit));
82 vs = vs.join(args[i].check(env, newctx, cvs.copy(), exp));
175 // are represented by 'vs'. If the try statement is labelled, we
181 return ctx.removeAdditionalVars(vs.join(newctx.vsBreak));
H A DVset.java101 Vset vs = new Vset(vset, uset, x);
103 vs.growX(x.length); // recopy the extension vector
105 return vs;
/openjdk7/jdk/src/share/classes/java/awt/
H A DScrollPane.java498 Dimension vs = getViewportSize();
510 vs = getViewportSize();
511 hAdjustable.setSpan(0, cs.width, vs.width);
512 vAdjustable.setSpan(0, cs.height, vs.height);
527 Dimension vs = getViewportSize();
532 cg.clipRect(i.left, i.top, vs.width, vs.height);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/memory/
H A DCMSBitMap.java82 VirtualSpace vs = virtualSpace();
83 bitMap.set_map(vs.low());
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/
H A DVariableStack.java64 VariableStack vs = (VariableStack) super.clone();
67 vs._stackFrames = (XObject[]) _stackFrames.clone();
68 vs._links = (int[]) _links.clone();
70 return vs;
/openjdk7/langtools/test/tools/javac/generics/odersky/
H A DBadTest.java48 List<Cell<String>> vs = cons(makeCell(null), id(nil()));
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWScrollPanePeer.java99 Dimension vs = sp.getSize();
100 setSpans(vs.width, vs.height, width, height);
/openjdk7/jdk/src/share/native/com/sun/java/util/jar/pack/
H A Dbands.h43 value_stream vs[2]; // source of values member in struct:band
44 coding_method cm; // method used for initial state of vs[0]
94 cm.reset(&vs[0]);
97 byte* &curRP() { return vs[0].rp; }
102 int getByte() { assert(ix == null); return vs[0].getByte(); }
103 int getInt() { assert(ix == null); return vs[0].getInt(); }
H A Dbands.cpp52 assert(vs[0].cmk == cmk_ERROR);
146 int n = vs[0].getInt() - nullOK;
172 fprintf(u->errstrm, "%s%d", eol, vs[0].getInt());
198 int n = vs[0].getInt() - nullOK;
232 total += vs[0].getInt();
252 int x = vs[0].getInt();
262 total += (vs[0].getInt() == tag) ? 1 : 0;
H A Dcoding.cpp698 value_stream vs = vs0; local
700 uint val = vs.getInt();
707 vs.done();
782 value_stream vs = vs0; local
784 int val = vs.getInt();
787 band_rp = vs.rp;
803 value_stream vs = vs0; local
805 int val = vs.getInt();
815 band_rp = vs.rp;
/openjdk7/hotspot/test/compiler/8005956/
H A DPolynomialRoot.java61 final double vs=p[4];
63 if(!(Math.abs(vs)>EPS))
73 final double a=p[3]/vs,b=p[2]/vs,c=p[1]/vs,d=p[0]/vs;
563 final double vs=p[3];
564 if(!(Math.abs(vs)>EPS))
570 final double a=p[2]/vs,b=p[1]/vs,
[all...]
/openjdk7/jdk/src/share/native/sun/java2d/cmm/lcms/
H A Dcmswtpnt.c176 cmsFloat64Number us,vs; local
190 vs = (3*ys) / (-xs + 6*ys + 1.5);
200 dj = ((vs - vj) - tj * (us - uj)) / sqrt(1.0 + tj * tj);
/openjdk7/jdk/src/share/classes/java/util/
H A DEnumMap.java420 Collection<V> vs = values;
421 if (vs != null)
422 return vs;
H A DIdentityHashMap.java1028 Collection<V> vs = values;
1029 if (vs != null)
1030 return vs;
H A DWeakHashMap.java988 Collection<V> vs = values;
989 return (vs != null) ? vs : (values = new Values());
/openjdk7/jdk/test/com/sun/security/sasl/ntlm/
H A DNTLMTest.java110 * @param vs ntlm version specified for server
113 private static void checkVersion(String vc, String vs) throws Exception { argument
117 ps.put("com.sun.security.sasl.ntlm.version", vs);

Completed in 123 milliseconds

12