Searched refs:chk (Results 1 - 25 of 26) sorted by relevance

12

/openjdk7/jdk/test/java/rmi/transport/checkFQDN/
H A DCheckFQDNClient.java78 CheckFQDNClient chk = new CheckFQDNClient();
80 synchronized(chk) {
81 (new Thread (chk)).start();
82 chk.wait(NAME_SERVICE_TIME_OUT);
/openjdk7/langtools/test/tools/javac/6402516/
H A DCheckClass.java42 Checker chk = new CheckClass();
43 chk.check("TestClass.java");
H A DCheckMethod.java42 Checker chk = new CheckMethod();
43 chk.check("TestMethod.java");
H A DCheckIsAccessible.java44 Checker chk = new CheckIsAccessible();
45 chk.check("TestIsAccessible.java", "A.java");
H A DCheckLocalElements.java42 Checker chk = new CheckLocalElements();
43 chk.check("TestLocalElements.java");
/openjdk7/jdk/test/com/sun/jdi/
H A DEarlyReturnTest.java132 public static boolean chk(byte v) { method in class:EarlyReturnTarg
135 public static boolean chk(char v) { method in class:EarlyReturnTarg
138 public static boolean chk(double v) { method in class:EarlyReturnTarg
141 public static boolean chk(float v) { method in class:EarlyReturnTarg
144 public static boolean chk(int v) { method in class:EarlyReturnTarg
147 public static boolean chk(long v) { method in class:EarlyReturnTarg
150 public static boolean chk(short v) { method in class:EarlyReturnTarg
153 public static boolean chk(boolean v) { method in class:EarlyReturnTarg
156 public static boolean chk(String v) { method in class:EarlyReturnTarg
159 public static boolean chk(Objec method in class:EarlyReturnTarg
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DAttr.java77 final Check chk; field in class:Attr
102 chk = Check.instance(context);
203 owntype = chk.checkType(tree.pos(), owntype, pt, errKey);
437 return chk.completionError(tree.pos(), ex);
504 argtypes.append(chk.checkNonVoid(
524 return chk.checkRefTypes(trees, types);
551 chk.checkNonCyclic(tvar.pos(), (TypeVar)tvar.type);
607 Lint prevLint = chk.setLint(env.info.lint);
655 t = chk.checkClassType(tree.pos(), t, checkExtensible|!allowGenerics);
673 chk
[all...]
H A DEnter.java98 Check chk; field in class:Enter
125 chk = Check.instance(context);
261 return chk.completionError(tree.pos(), ex);
358 !chk.checkUniqueClassName(tree.pos(), tree.name, enclScope)) {
371 c.flatname = chk.localClassName(c);
373 chk.checkTransparentClass(tree.pos(), c, env.info.scope);
379 if (chk.compiled.get(c.flatname) != null) {
385 chk.compiled.put(c.flatname, c);
395 c.flags_field = chk.checkFlags(tree.pos(), tree.mods.flags, c, tree);
452 if (chk
[all...]
H A DFlow.java188 private final Check chk; field in class:Flow
209 chk = Check.instance(context);
342 if (!chk.isUnchecked(tree.pos(), exc)) {
343 if (!chk.isHandled(exc, caught)) {
346 thrown = chk.incl(exc, thrown);
649 caught = chk.intersect(mthrown, caught);
690 thrownPrev = chk.union(thrown, thrownPrev);
741 caught = chk.union(caught, mthrown);
1010 caught = chk.incl(ct.type, caught);
1054 chk
[all...]
H A DMemberEnter.java68 private final Check chk; field in class:MemberEnter
94 chk = Check.instance(context);
277 chk.checkUniqueStaticImport(pos, sym, toScope))
309 sym.kind != TYP && chk.checkUniqueStaticImport(pos, sym, toScope))
339 chk.checkUniqueImport(pos, tsym, env.toplevel.namedImportScope))
376 exc = chk.checkClassType(l.head.pos(), exc);
403 chk.completionError(tree.pos(), ex);
547 chk.checkCanonical(s.selected);
556 chk.checkCanonical(s.selected);
559 chk
[all...]
H A DAnnotate.java62 final Check chk; field in class:Annotate
74 chk = Check.instance(context);
142 a.type = chk.checkType(a.annotationType.pos(), at, expected);
H A DInfer.java57 Check chk; field in class:Infer
73 chk = Check.instance(context);
341 return chk.checkType(warn.pos(), that.inst(targs, types), to);
498 chk.checkVararg(env.tree.pos(), getParameterTypes(), msym);
H A DLower.java72 private Check chk; field in class:Lower
94 chk = Check.instance(context);
569 c.flatname = chk.localClassName(c);
582 chk.compiled.put(c.flatname, c);
645 chk.checkConflicts(that.pos(), that.sym, currentClass);
652 chk.checkConflicts(that.pos(), that.sym, currentClass);
1196 ClassSymbol ctag = chk.compiled.get(flatname);
1610 chk.earlyRefError(pos, c);
1761 chk.completionError(pos, ex);
H A DResolve.java67 Check chk; field in class:Resolve
104 chk = Check.instance(context);
779 List<Type> allThrown = chk.intersect(mt1.getThrownTypes(), mt2.getThrownTypes());
1660 chk.checkDeprecated(pos, env.info.scope.owner, sym);
/openjdk7/langtools/test/tools/javac/types/
H A DTypeHarness.java72 protected Check chk; field in class:TypeHarness
81 chk = Check.instance(ctx);
171 if (chk.checkValidGenericType(t) != expected) {
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/dom/
H A DDocumentCache.java280 long chk = doc.getLastChecked();
283 if (now > (chk + REFRESH_INTERVAL)) {
/openjdk7/langtools/src/share/classes/com/sun/tools/javadoc/
H A DDocEnv.java97 Check chk; field in class:DocEnv
127 chk = Check.instance(context);
159 chk.completionError(null, ex);
/openjdk7/langtools/src/share/classes/com/sun/tools/apt/main/
H A DAptJavaCompiler.java285 chk.reportDeferredDiagnostics();
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/main/
H A DJavaCompiler.java257 protected Check chk; field in class:JavaCompiler
351 chk = Check.instance(context);
720 chk.completionError(cdef.pos(), ex);
1547 chk.reportDeferredDiagnostics();
1569 chk = null;
/openjdk7/hotspot/src/share/vm/opto/
H A DparseHelper.cpp325 Node *chk = _gvn.transform( new (C) CmpUNode( cnt, threshold) ); local
327 Node *tst = _gvn.transform( new (C) BoolNode( chk, btest) );
H A DgraphKit.cpp499 Node* chk = _gvn.transform( new (C) CmpINode(should_post_flag, intcon(0)) ); local
500 Node* tst = _gvn.transform( new (C) BoolNode(chk, BoolTest::eq) );
1179 Node *chk = NULL; local
1181 case T_LONG : chk = new (C) CmpLNode(value, _gvn.zerocon(T_LONG)); break;
1182 case T_INT : chk = new (C) CmpINode(value, _gvn.intcon(0)); break;
1229 chk = new (C) CmpPNode( value, null() );
1236 assert(chk != NULL, "sanity check");
1237 chk = _gvn.transform(chk);
1240 BoolNode *btst = new (C) BoolNode( chk, btes
[all...]
H A Dstringopts.cpp1008 Node* chk = __ CmpI(arg, __ intcon(0)); local
1009 Node* p = __ Bool(chk, BoolTest::lt);
H A Dparse1.cpp150 Node* chk = _gvn.transform( new (C) CmpPNode(l, null()) ); local
151 Node* tst = _gvn.transform( new (C) BoolNode(chk, BoolTest::eq) );
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/jvm/
H A DGen.java64 private final Check chk; field in class:Gen
101 chk = Check.instance(context);
656 pmt.thrown = chk.intersect(pmt.getThrownTypes(), imt.getThrownTypes());
686 chk.completionError(tree.pos(), ex);
841 chk.completionError(tree.pos(), ex);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/
H A DTypes.java80 final Check chk; field in class:Types
101 chk = Check.instance(context);
3337 chk.checkCompatibleAbstracts(warn.pos(), from, to);
3364 chk.checkCompatibleAbstracts(warn.pos(), from, to);

Completed in 147 milliseconds

12