Searched defs:capture (Results 1 - 11 of 11) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/net/www/http/
H A DHttpCaptureInputStream.java30 * A Simple FilterInputStream subclass to capture HTTP traffic.
36 private HttpCapture capture = null; field in class:HttpCaptureInputStream
40 capture = cap;
46 capture.received(i);
53 capture.flush();
63 capture.received(b[i]);
72 capture.received(b[off+i]);
H A DHttpCaptureOutputStream.java30 * A Simple FilterOutputStream subclass to capture HTTP traffic.
36 private HttpCapture capture = null; field in class:HttpCaptureOutputStream
40 capture = cap;
45 capture.sent(b);
52 capture.sent(b);
60 capture.sent(b[i]);
68 capture.flush();
H A DHttpClient.java123 // Traffic capture tool, if configured. See HttpCapture class for info
124 private HttpCapture capture = null; field in class:HttpClient
210 capture = HttpCapture.getCapture(url);
435 if (capture != null) {
436 out = new HttpCaptureOutputStream(out, capture);
629 if (capture != null) {
630 serverInput = new HttpCaptureInputStream(serverInput, capture);
/openjdk7/jdk/test/sun/java2d/SunGraphics2D/
H A DDrawImageBilinear.java57 private static volatile BufferedImage capture; field in class:DrawImageBilinear
68 capture = robot.createScreenCapture(rect);
201 if (capture == null) {
202 throw new RuntimeException("Failed: capture is null");
206 int pixel = capture.getRGB(5, 5);
213 testRegion(capture, new Rectangle(10, 10, 40, 40));
214 testRegion(capture, new Rectangle(80, 10, 40, 40));
215 testRegion(capture, new Rectangle(150, 10, 40, 40));
H A DSimplePrimQuality.java52 private static volatile BufferedImage capture; field in class:SimplePrimQuality
60 capture = robot.createScreenCapture(rect);
235 capture = vi.getSnapshot();
243 if (capture == null) {
258 int actual = capture.getRGB(x, y);
269 ImageIO.write(capture, "png", new File(actualName));
/openjdk7/langtools/src/share/classes/javax/lang/model/util/
H A DTypes.java166 * Applies capture conversion to a type.
169 * @return the result of applying capture conversion
173 TypeMirror capture(TypeMirror t); method in interface:Types
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/model/
H A DJavacTypes.java140 public TypeMirror capture(TypeMirror t) { method in class:JavacTypes
142 return types.capture((Type) t);
/openjdk7/langtools/test/tools/javac/types/
H A DTypeHarness.java191 /** compute the capture of a type 't' */
192 public Type capture(Type t) { method in class:TypeHarness
193 return types.capture(t);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/
H A DTypes.java377 public boolean isSubtype(Type t, Type s, boolean capture) { argument
386 if (!isSubtype(t, s2, capture))
394 return isSubtype(capture ? capture(t) : t, lower, false);
396 return isSubtype.visit(capture ? capture(t) : t, s);
725 // FIXME, this might be leftovers from before capture conversion
1538 //so we need to go through capture conversion
1539 base = t.isCompound() ? capture(base) : base;
3174 * exists a capture conversio
3206 public List<Type> capture(List<Type> ts) { method in class:Types
3213 public Type capture(Type t) { method in class:Types
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DAttr.java1183 capture(condType(tree.pos(), tree.cond.type,
1555 // current context. Also, capture the return type
1556 result = check(tree, capture(restype), VAL, pkind, pt);
1992 Type capturedType = capture(owntype);
2123 result = check(tree, capture(owntype), VAL, pkind, pt);
2144 if ((pkind & VAR) == 0) owntype = capture(owntype);
2249 site = capture(site); // Capture field access
2285 site = capture(site);
2293 site = capture(site);
2429 ? selectSym(tree, location, capture(sit
3321 private Type capture(Type type) { method in class:Attr
[all...]
/openjdk7/jdk/src/share/classes/java/util/regex/
H A DPattern.java517 * that do not capture text and do not count towards the group total, or
4251 * If capture is true then this class saves group settings and ensures
4261 boolean capture; field in class:Pattern.GroupCurly
4264 int group, boolean capture) {
4271 this.capture = capture;
4280 if (capture) {
4292 if (capture) {
4313 if (capture) {
4325 if (capture) {
4263 GroupCurly(Node node, int cmin, int cmax, int type, int local, int group, boolean capture) argument
[all...]

Completed in 79 milliseconds