/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/ |
H A D | CycleRecoverable.java | 63 Object onCycleDetected(Context context); 73 public interface Context { interface in interface:CycleRecoverable
|
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/parse/ |
H A D | Context.java | 56 public interface Context extends ValidationContext { interface in inherits:ValidationContext 63 * Returns the immutable snapshot of this {@link Context}. 65 Context copy();
|
/openjdk7/langtools/src/share/classes/com/sun/tools/javap/ |
H A D | Context.java | 39 public class Context { class 40 public Context() { method in class:Context
|
/openjdk7/jdk/test/demo/jvmti/ |
H A D | Context.java | 29 * java Context [threadCount [iterationCount [sleepContention]]] 30 * Default: java Context 5 10 0 48 public final class Context extends Thread { class in inherits:Thread 54 /* Used for each Context thread */ 80 System.out.println("Context started with " 86 new Context(default_thread_count, i, default_thread_turns).start(); 90 System.out.println("Context sleeping, so threads will start wait"); 102 System.out.println("Context sleeping, so threads can run"); 116 System.out.println("Context sleeping, to create contention"); 123 System.out.println("Context sleepin 139 Context(int thread_count, int thread_index, int thread_turns) { method in class:Context [all...] |
/openjdk7/corba/src/share/classes/org/omg/CORBA/ |
H A D | Context.java | 32 * A <code>Context</code> object 39 * A <code>Context</code> object is created by first calling the 44 * Each property in a <code>Context</code> object is represented by 51 * <code>Context</code> properties can represent a portion of a client's 56 * propagated), the server may query its <code>Context</code> object 65 * that are present in the client's <code>Context</code> object 66 * to be provided in the <code>Context</code> object parameter to 69 * <code>Context</code> property names (which are strings) 81 * method <code>Context.get_values</code>. 83 * <code>Context</cod 102 public abstract class Context { class [all...] |
/openjdk7/jdk/make/tools/src/build/tools/jdwpgen/ |
H A D | Context.java | 30 class Context { class 42 Context() { method in class:Context 47 private Context(String whereJava, String whereC) { method in class:Context 52 Context subcontext(String level) { 53 Context ctx; 55 ctx = new Context(level, level); 57 ctx = new Context(whereJava + "." + level, whereC + "_" + level); 64 private Context cloneContext() { 65 Context ctx = new Context(whereJav [all...] |
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/util/ |
H A D | Context.java | 34 * <p>Within the compiler, a single Context is used for each 49 * protected static final Context.Key<Phase> phaseKey = 50 * new Context.Key<Phase>(); 52 * public static Phase instance(Context context) { 60 * protected Phase(Context context) { 75 * protected NewPhase(Context context) { 78 * public static void preRegister(final Context context) { 79 * context.put(phaseKey, new Context.Factory<Phase>() { 99 public class Context { class 111 T make(Context 161 public Context() {} method in class:Context 168 public Context(Context prev) { method in class:Context [all...] |
/openjdk7/jdk/src/share/demo/java2d/J2DBench/src/j2dbench/tests/iio/ |
H A D | OutputStreamTests.java | 84 Context iioctx = (Context)ctx; 88 private static class Context extends OutputTests.Context { class in class:OutputStreamTests 94 Context(TestEnvironment env, Result result) { method in class:OutputStreamTests.Context 137 Context ctx = new Context(env, result); 144 final Context octx = (Context)ctx; 165 Context ct [all...] |
H A D | OutputTests.java | 159 protected static abstract class Context { class in class:OutputTests 165 Context(TestEnvironment env, Result result) { method in class:OutputTests.Context
|
H A D | InputStreamTests.java | 91 Context iioctx = (Context)ctx; 95 private static class Context extends InputTests.Context { class in class:InputStreamTests 101 Context(TestEnvironment env, Result result) { method in class:InputStreamTests.Context 162 Context ctx = new Context(env, result); 169 final Context ictx = (Context)ctx; 190 Context ct [all...] |
H A D | InputTests.java | 164 protected static abstract class Context { class in class:InputTests 170 Context(TestEnvironment env, Result result) { method in class:InputTests.Context
|
H A D | OutputImageTests.java | 173 Context iioctx = (Context)ctx; 177 private static class Context extends OutputTests.Context { class in class:OutputImageTests 182 Context(TestEnvironment env, Result result, int testType) { method in class:OutputImageTests.Context 269 return new Context(env, result, TEST_IMAGEIO); 273 final Context ictx = (Context)ctx; 320 return new Context(env, result, TEST_IMAGEWRITER); 324 final Context ict [all...] |
H A D | InputImageTests.java | 214 Context iioctx = (Context)ctx; 218 private static class Context extends InputTests.Context { class in class:InputImageTests 225 Context(TestEnvironment env, Result result, int testType) { method in class:InputImageTests.Context 315 return new Context(env, result, TEST_TOOLKIT); 319 final Context ictx = (Context)ctx; 389 return new Context(env, result, TEST_IMAGEIO); 393 final Context ict [all...] |
/openjdk7/jdk/test/sun/security/krb5/auto/ |
H A D | Context.java | 50 * Context of a JGSS subject, encapsulating Subject and GSSContext. 55 * 1. static fromJAAS(): Creates a Context using a JAAS login config entry 56 * 2. static fromUserPass(): Creates a Context using a username and a password 58 * previously established acceptor Context 75 public class Context { class 84 private Context() {} method in class:Context 90 public Context delegated() throws Exception { 91 Context out = new Context(); 101 public static Context fromJAA [all...] |
/openjdk7/jdk/src/share/classes/javax/naming/ |
H A D | Context.java | 36 * Each name passed as an argument to a <tt>Context</tt> method is relative 51 * <tt>Context</tt> methods are composite names. Name arguments that are 57 * arguments to the <tt>Context</tt> methods. 78 * A Context instance is not guaranteed to be synchronized against 80 * a single Context instance concurrently should synchronize amongst 82 * each manipulating a different Context instance need not 84 * method, when passed an empty name, will return a new Context instance 88 * a Context operation that returns a <tt>NamingEnumeration</tt> is 96 * <tt>Context</tt> interface or one of its subinterfaces 114 * of a context. The <tt>Context</t 281 public interface Context { interface [all...] |
/openjdk7/jaxp/src/org/xml/sax/helpers/ |
H A D | NamespaceSupport.java | 160 // Context management. 177 contexts = new Context[32]; 180 contexts[contextPos] = currentContext = new Context(); 229 Context newContexts[] = new Context[max*2]; 238 contexts[contextPos] = currentContext = new Context(); 515 contexts[contextPos] = currentContext = new Context(); 535 private Context contexts[]; 536 private Context currentContext; 557 final class Context { class in class:NamespaceSupport 562 Context () method in class:NamespaceSupport.Context [all...] |
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/txw2/ |
H A D | NamespaceSupport.java | 160 // Context management. 177 contexts = new Context[32]; 180 contexts[contextPos] = currentContext = new Context(); 229 Context newContexts[] = new Context[max*2]; 238 contexts[contextPos] = currentContext = new Context(); 515 contexts[contextPos] = currentContext = new Context(); 535 private Context contexts[]; 536 private Context currentContext; 557 final class Context { class in class:NamespaceSupport 562 Context () method in class:NamespaceSupport.Context [all...] |
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/util/ |
H A D | NamespaceSupport.java | 122 contexts = new Context[that.contexts.length]; 126 Context currentParent = null; 129 Context thatContext = that.contexts[i]; 136 Context thisContext = new Context(thatContext, currentParent); 147 // Context management. 157 contexts = new Context[32]; 159 contexts[contextPos] = currentContext = new Context(); 183 Context newContexts[] = new Context[ma 463 final static class Context { class in class:NamespaceSupport 468 Context() { method in class:NamespaceSupport.Context 472 Context(Context that, Context newParent) { method in class:NamespaceSupport.Context [all...] |
/openjdk7/jdk/src/share/demo/java2d/J2DBench/src/j2dbench/tests/ |
H A D | GraphicsTests.java | 230 public static class Context { class in class:GraphicsTests 248 Context ctx = createContext(); 255 public int pixelsTouched(Context ctx) { 259 public Context createContext() { 260 return new Context(); 267 public void initContext(TestEnvironment env, Context ctx) { 331 Graphics graphics = ((Context) ctx).graphics; 333 ((Context) ctx).graphics = null; 339 public abstract void init(Graphics2D g2d, Context ctx, Dimension dim); 401 public void init(Graphics2D g2d, Context ct [all...] |
H A D | PixelTests.java | 132 public static class Context { class in class:PixelTests 141 Context ctx = new Context(); 263 BufferedImage bimg = ((Context) context).bimg; 276 BufferedImage bimg = ((Context) context).bimg; 294 Context ctx = (Context) super.initTest(env, result); 307 Raster ras = ((Context) context).ras; 308 Object elemdata = ((Context) context).elemdata; 321 WritableRaster ras = ((Context) contex [all...] |
H A D | RenderTests.java | 273 public static class Context extends GraphicsTests.Context { class in class:RenderTests 283 public GraphicsTests.Context createContext() { 284 return new RenderTests.Context(); 287 public void initContext(TestEnvironment env, GraphicsTests.Context ctx) { 289 RenderTests.Context rctx = (RenderTests.Context) ctx; 402 public int pixelsTouched(GraphicsTests.Context ctx) { 407 RenderTests.Context rctx = (RenderTests.Context) ct 852 public static class Context extends RenderTests.Context { class in class:RenderTests.FillCubics 906 public static class Context extends RenderTests.Context { class in class:RenderTests.DrawCubics 957 public static class Context extends RenderTests.Context { class in class:RenderTests.FillEllipse2Ds 999 public static class Context extends RenderTests.Context { class in class:RenderTests.DrawEllipse2Ds [all...] |
H A D | ImageTests.java | 223 public static class Context extends GraphicsTests.Context { class in class:ImageTests 241 public GraphicsTests.Context createContext() { 242 return new ImageTests.Context(); 245 public void initContext(TestEnvironment env, GraphicsTests.Context ctx) { 247 ImageTests.Context ictx = (ImageTests.Context) ctx; 514 ImageTests.Context ictx = (ImageTests.Context) ctx; 565 ImageTests.Context ict 743 private static class Context extends ImageTests.Context { class in class:ImageTests.ImageOpTests [all...] |
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/parser/ |
H A D | NGCCRuntimeEx.java | 128 currentContext = new Context("","",null); 129 currentContext = new Context("xml","http://www.w3.org/XML/1998/namespace",currentContext); 393 private static class Context implements ValidationContext { class in class:NGCCRuntimeEx 394 Context( String _prefix, String _uri, Context _context ) { method in class:NGCCRuntimeEx.Context 408 private final Context previous; 416 private Context currentContext=null; 431 currentContext = new Context(prefix,uri,currentContext);
|
/openjdk7/jdk/src/share/classes/sun/tools/tree/ |
H A D | Context.java | 37 class Context implements Constants { class in inherits:Constants 38 Context prev; 51 public Context(Context ctx, MemberDefinition field) { method in class:Context 79 public Context(Context ctx, ClassDefinition c) { method in class:Context 86 Context(Context ctx, Node node) { method in class:Context 105 public Context(Context ct method in class:Context [all...] |
/openjdk7/jdk/src/share/demo/java2d/J2DBench/src/j2dbench/tests/text/ |
H A D | TextTests.java | 553 public static class Context { class in class:TextTests 558 public static class TextContext extends Context { 638 public Context createContext() { 643 Context ctx = createContext(); 649 ((Context)ctx).cleanup(env);
|