Searched refs:ccw (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/share/classes/java/awt/geom/
H A DLine2D.java512 double ccw = px * y2 - py * x2;
513 if (ccw == 0.0) {
520 ccw = px * x2 + py * y2;
521 if (ccw > 0.0) {
531 ccw = px * x2 + py * y2;
532 if (ccw < 0.0) {
533 ccw = 0.0;
537 return (ccw < 0.0) ? -1 : ((ccw > 0.0) ? 1 : 0);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/api/
H A DJavacTool.java168 ClientCodeWrapper ccw = ClientCodeWrapper.instance(context);
180 compilationUnits = ccw.wrapJavaFileObjects(compilationUnits); // implicit null check
188 context.put(DiagnosticListener.class, ccw.wrap(diagnosticListener));
197 fileManager = ccw.wrap(fileManager);
H A DJavacTaskImpl.java68 private ClientCodeWrapper ccw; field in class:JavacTaskImpl
89 this.ccw = ClientCodeWrapper.instance(context);
197 context.put(TaskListener.class, ccw.wrap(taskListener));

Completed in 35 milliseconds