/openjdk7/jdk/src/windows/back/ |
H A D | exec_md.c | 34 PROCESS_INFORMATION pi; local 54 &pi); /* (out) process information */
|
/openjdk7/jdk/test/java/awt/print/PrinterJob/ |
H A D | SameService.java | 50 public int print(Graphics g, PageFormat pf, int pi) argument
|
H A D | PageRanges.java | 66 public int print(Graphics g, PageFormat pf, int pi) argument 69 if (pi >= 5) { 73 g.drawString("Page : " + (pi+1), 200, 200);
|
/openjdk7/jdk/test/javax/print/ |
H A D | StreamPrintingOrientation.java | 106 public int print(Graphics g, PageFormat pf, int pi) throws PrinterException { argument 108 if (pi > 0) {
|
/openjdk7/langtools/test/tools/javac/protectedAccess/pkg/ |
H A D | SuperClass.java | 28 protected int pi; field in class:SuperClass
|
/openjdk7/jdk/src/share/native/java/lang/fdlibm/src/ |
H A D | e_atan2.c | 32 * ARG (x+iy) = pi - arctan[y/(-x)] ... if x < 0, 39 * ATAN2(+-0, -(anything but NaN)) is +-pi ; 40 * ATAN2(+-(anything but 0 and NaN), 0) is +-pi/2; 42 * ATAN2(+-(anything but INF and NaN), -INF) is +-pi; 43 * ATAN2(+-INF,+INF ) is +-pi/4 ; 44 * ATAN2(+-INF,-INF ) is +-3pi/4; 45 * ATAN2(+-INF, (anything but,0,NaN, and INF)) is +-pi/2; 65 pi = 3.1415926535897931160E+00, /* 0x400921FB, 0x54442D18 */ variable 94 case 2: return pi+tiny;/* atan(+0,-anything) = pi */ [all...] |
H A D | e_acos.c | 29 * acos(x) = pi/2 - asin(x) 30 * acos(-x) = pi/2 + asin(x) 32 * acos(x) = pi/2 - (x + x*x^2*R(x^2)) (see asin.c) 34 * acos(x) = pi/2 - (pi/2 - 2asin(sqrt((1-x)/2))) 41 * acos(x) = pi - 2asin(sqrt((1-|x|)/2)) 42 * = pi - 0.5*(s+s*z*R(z)), where z=(1-|x|)/2,s=sqrt(z) 59 pi = 3.14159265358979311600e+00, /* 0x400921FB, 0x54442D18 */ variable 87 else return pi+2.0*pio2_lo; /* acos(-1)= pi */ [all...] |
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/dom/ |
H A D | DOMDocumentSerializer.java | 302 protected final void serializeProcessingInstruction(Node pi) throws IOException { argument 307 final String target = pi.getNodeName(); 308 final String data = pi.getNodeValue();
|
/openjdk7/jdk/src/share/classes/sun/net/ |
H A D | ProgressMonitor.java | 72 ProgressSource pi = iter.next(); 75 snapshot.add((ProgressSource)pi.clone()); 104 public void registerSource(ProgressSource pi) { argument 107 if (progressSourceList.contains(pi)) 110 progressSourceList.add(pi); 129 ProgressEvent pe = new ProgressEvent(pi, pi.getURL(), pi.getMethod(), pi.getContentType(), pi 138 unregisterSource(ProgressSource pi) argument 175 updateProgress(ProgressSource pi) argument [all...] |
/openjdk7/jdk/src/share/classes/sun/net/www/ |
H A D | MeteredStream.java | 46 protected ProgressSource pi; field in class:MeteredStream 48 public MeteredStream(InputStream is, ProgressSource pi, long expected) argument 52 this.pi = pi; 55 if (pi != null) { 56 pi.updateProgress(0, expected); 82 if (pi != null) 83 pi.updateProgress(count, expected); 162 if (pi != null) 163 pi [all...] |
/openjdk7/jdk/src/share/classes/com/sun/crypto/provider/ |
H A D | BlowfishCrypt.java | 66 // Step 1: Init P and then S arrays from pi bytes 69 System.arraycopy(pi, 0, p, 0, 18); 70 System.arraycopy(pi, 18, s0, 0, 256); 71 System.arraycopy(pi, 18 + 256, s1, 0, 256); 72 System.arraycopy(pi, 18 + 512, s2, 0, 256); 73 System.arraycopy(pi, 18 + 768, s3, 0, 256); 290 // many digits of pi, for initializing p and s 291 private static final int[] pi = { field in class:BlowfishCrypt
|
/openjdk7/jdk/src/share/demo/applets/MoleculeViewer/ |
H A D | Matrix3D.java | 49 static final double pi = 3.14159265; field in class:Matrix3D 99 theta *= (pi / 180); 125 theta *= (pi / 180); 151 theta *= (pi / 180);
|
/openjdk7/jdk/src/share/demo/applets/WireFrame/ |
H A D | Matrix3D.java | 49 static final double pi = 3.14159265; field in class:Matrix3D 99 theta *= (pi / 180); 125 theta *= (pi / 180); 151 theta *= (pi / 180);
|
/openjdk7/jdk/src/share/classes/sun/java2d/pipe/ |
H A D | RenderingEngine.java | 362 public static void feedConsumer(PathIterator pi, PathConsumer2D consumer) { argument 364 while (!pi.isDone()) { 365 switch (pi.currentSegment(coords)) { 385 pi.next();
|
H A D | ShapeSpanIterator.java | 84 public void appendPath(PathIterator pi) { argument 87 setRule(pi.getWindingRule()); 88 while (!pi.isDone()) { 89 addSegment(pi.currentSegment(coords), coords); 90 pi.next();
|
/openjdk7/jdk/src/share/classes/sun/net/www/http/ |
H A D | KeepAliveStream.java | 56 public KeepAliveStream(InputStream is, ProgressSource pi, long expected, HttpClient hc) { argument 57 super(is, pi, expected); 103 if (pi != null) 104 pi.finishTracking();
|
H A D | HttpClient.java | 616 public boolean parseHTTP(MessageHeader responses, ProgressSource pi, HttpURLConnection httpuc) argument 633 return (parseHTTPHeader(responses, pi, httpuc)); 658 return parseHTTP(responses, pi, httpuc); 666 private boolean parseHTTPHeader(MessageHeader responses, ProgressSource pi, HttpURLConnection httpuc) argument 769 return parseHTTP(responses, pi, httpuc); 798 return parseHTTPHeader(responses, pi, httpuc); 871 if (pi != null) { 873 pi.setContentType(responses.findValue("content-type")); 879 serverInput = new KeepAliveStream(serverInput, pi, cl, this); 883 serverInput = new MeteredStream(serverInput, pi, c [all...] |
/openjdk7/jdk/src/share/classes/sun/awt/geom/ |
H A D | Crossings.java | 98 public static Crossings findCrossings(PathIterator pi, argument 103 if (pi.getWindingRule() == pi.WIND_EVEN_ODD) { 128 while (!pi.isDone()) { 129 int type = pi.currentSegment(coords); 177 pi.next();
|
H A D | Curve.java | 124 public static int pointCrossingsForPath(PathIterator pi, argument 127 if (pi.isDone()) { 131 if (pi.currentSegment(coords) != PathIterator.SEG_MOVETO) { 135 pi.next(); 142 while (!pi.isDone()) { 143 switch (pi.currentSegment(coords)) { 193 pi.next(); 377 public static int rectCrossingsForPath(PathIterator pi, argument 384 if (pi.isDone()) { 388 if (pi [all...] |
/openjdk7/jdk/src/share/classes/java/awt/geom/ |
H A D | Area.java | 130 private static Vector pathToCurves(PathIterator pi) { argument 132 int windingRule = pi.getWindingRule(); 151 while (!pi.isDone()) { 152 switch (pi.currentSegment(coords)) { 186 pi.next();
|
/openjdk7/jdk/test/java/util/Locale/data/ |
H A D | deflocale.c | 61 PROCESS_INFORMATION pi; local 65 ZeroMemory(&pi, sizeof(pi)); 66 if (CreateProcess(NULL, launcher, NULL, NULL, FALSE, 0, NULL, NULL, &si, &pi)==0) { 70 WaitForSingleObject( pi.hProcess, INFINITE );
|
/openjdk7/jdk/src/share/classes/sun/java2d/pisces/ |
H A D | PiscesRenderingEngine.java | 270 PathIterator pi = null; 311 pi = src.getPathIterator(at); 313 pi = new NormalizingPathIterator(pi, normalize); 321 pi = src.getPathIterator(at); 322 pi = new NormalizingPathIterator(pi, normalize); 337 pi = src.getPathIterator(null); 346 pi = src.getPathIterator(null); 348 pi 483 pathTo(PathIterator pi, PathConsumer2D pc2d) argument [all...] |
/openjdk7/jdk/src/share/classes/sun/dc/ |
H A D | DuctusRenderingEngine.java | 156 PathIterator pi = src.getPathIterator(transform); 158 feedConsumer(pi, consumer, normalize, 0.25f); 174 public static void feedConsumer(PathIterator pi, PathConsumer consumer, argument 189 while (!pi.isDone()) { 190 int type = pi.currentSegment(point); 354 pi.next(); 398 PathIterator pi = s.getPathIterator(at); 425 r.setUsage(pi.getWindingRule() == PathIterator.WIND_EVEN_ODD 441 while (!pi.isDone()) { 442 int type = pi 720 feedConsumer(PathConsumer consumer, PathIterator pi) argument [all...] |
/openjdk7/jdk/src/share/classes/javax/management/ |
H A D | StandardMBean.java | 843 customize(MBeanParameterInfo pi, argument 846 if (equal(name, pi.getName()) && 847 equal(description, pi.getDescription())) 848 return pi; 849 else if (pi instanceof OpenMBeanParameterInfo) { 850 OpenMBeanParameterInfo opi = (OpenMBeanParameterInfo) pi; 854 pi.getDescriptor()); 857 pi.getType(), 859 pi.getDescriptor());
|
/openjdk7/jdk/src/windows/native/java/lang/ |
H A D | ProcessImpl_md.c | 147 PROCESS_INFORMATION pi; local 245 &pi); /* (out) process information */ 251 CloseHandle(pi.hThread); 252 ret = (jlong)pi.hProcess;
|