Searched refs:ctx (Results 76 - 100 of 355) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/com/sun/jndi/toolkit/ctx/
H A DPartialCompositeContext.java26 package com.sun.jndi.toolkit.ctx;
139 PartialCompositeContext ctx = this;
146 answer = ctx.p_resolveToClass(nm, contextType, cont);
149 ctx = getPCContext(cont);
150 answer = ctx.p_resolveToClass(nm, contextType, cont);
170 PartialCompositeContext ctx = this;
177 answer = ctx.p_lookup(nm, cont);
180 ctx = getPCContext(cont);
181 answer = ctx.p_lookup(nm, cont);
195 PartialCompositeContext ctx
[all...]
H A DPartialCompositeDirContext.java26 package com.sun.jndi.toolkit.ctx;
132 PartialCompositeDirContext ctx = this;
139 answer = ctx.p_getAttributes(nm, attrIds, cont);
142 ctx = getPCDirContext(cont);
143 answer = ctx.p_getAttributes(nm, attrIds, cont);
159 PartialCompositeDirContext ctx = this;
165 ctx.p_modifyAttributes(nm, mod_op, attrs, cont);
168 ctx = getPCDirContext(cont);
169 ctx.p_modifyAttributes(nm, mod_op, attrs, cont);
184 PartialCompositeDirContext ctx
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/tree/
H A DNewInstanceExpression.java86 public Vset checkValue(Environment env, Context ctx, Vset vset, Hashtable exp) { argument
94 vset = outerArg.checkValue(env, ctx, vset, exp);
126 env.resolve(right.where, ctx.field.getClassDefinition(),
134 right = new TypeExpression(right.where, right.toType(env, ctx));
142 env.error(where, "class.not.found", ee.name, ctx.field);
167 insertOuterLink(env, ctx, where, def, outerArg, args);
180 vset = args[i].checkValue(env, ctx, vset, exp);
195 ClassDefinition sourceClass = ctx.field.getClassDefinition();
234 vset = body.checkLocalClass(env, ctx, vset,
279 implMethod = cdef.getAccessMember(env, ctx, fiel
346 insertOuterLink(Environment env, Context ctx, long where, ClassDefinition def, Expression outerArg, Expression args[]) argument
369 check(Environment env, Context ctx, Vset vset, Hashtable exp) argument
378 copyInline(Context ctx) argument
386 inlineNewInstance(Environment env, Context ctx, Statement s) argument
412 inline(Environment env, Context ctx) argument
415 inlineValue(Environment env, Context ctx) argument
459 costInline(int thresh, Environment env, Context ctx) argument
484 code(Environment env, Context ctx, Assembler asm) argument
487 codeValue(Environment env, Context ctx, Assembler asm) argument
490 codeCommon(Environment env, Context ctx, Assembler asm, boolean forValue) argument
[all...]
H A DBinaryArithmeticExpression.java47 void selectType(Environment env, Context ctx, int tm) { argument
57 left = convert(env, ctx, type, left);
58 right = convert(env, ctx, type, right);
H A DBinaryCompareExpression.java47 void selectType(Environment env, Context ctx, int tm) { argument
56 left = convert(env, ctx, t, left);
57 right = convert(env, ctx, t, right);
H A DGreaterExpression.java75 void codeBranch(Environment env, Context ctx, Assembler asm, Label lbl, boolean whenTrue) { argument
76 left.codeValue(env, ctx, asm);
80 right.codeValue(env, ctx, asm);
86 right.codeValue(env, ctx, asm);
90 right.codeValue(env, ctx, asm);
94 right.codeValue(env, ctx, asm);
H A DGreaterOrEqualExpression.java75 void codeBranch(Environment env, Context ctx, Assembler asm, Label lbl, boolean whenTrue) { argument
76 left.codeValue(env, ctx, asm);
80 right.codeValue(env, ctx, asm);
86 right.codeValue(env, ctx, asm);
90 right.codeValue(env, ctx, asm);
94 right.codeValue(env, ctx, asm);
H A DLessExpression.java75 void codeBranch(Environment env, Context ctx, Assembler asm, Label lbl, boolean whenTrue) { argument
76 left.codeValue(env, ctx, asm);
80 right.codeValue(env, ctx, asm);
86 right.codeValue(env, ctx, asm);
90 right.codeValue(env, ctx, asm);
94 right.codeValue(env, ctx, asm);
H A DLessOrEqualExpression.java75 void codeBranch(Environment env, Context ctx, Assembler asm, Label lbl, boolean whenTrue) { argument
76 left.codeValue(env, ctx, asm);
80 right.codeValue(env, ctx, asm);
86 right.codeValue(env, ctx, asm);
90 right.codeValue(env, ctx, asm);
94 right.codeValue(env, ctx, asm);
H A DNaryExpression.java51 public Expression copyInline(Context ctx) { argument
54 e.right = right.copyInline(ctx);
59 e.args[i] = args[i].copyInline(ctx);
68 public int costInline(int thresh, Environment env, Context ctx) { argument
71 cost += right.costInline(thresh, env, ctx);
74 cost += args[i].costInline(thresh, env, ctx);
H A DCodeContext.java43 CodeContext(Context ctx, Node node) { argument
44 super(ctx, node);
H A DPositiveExpression.java48 void selectType(Environment env, Context ctx, int tm) { argument
58 right = convert(env, ctx, type, right);
H A DSwitchStatement.java57 Vset check(Environment env, Context ctx, Vset vset, Hashtable exp) { argument
58 checkLabel(env, ctx);
59 CheckContext newctx = new CheckContext(ctx, this);
140 return ctx.removeAdditionalVars(vset);
146 public Statement inline(Environment env, Context ctx) { argument
147 ctx = new Context(ctx, this);
148 expr = expr.inlineValue(env, ctx);
151 args[i] = args[i].inline(env, ctx);
160 public Statement copyInline(Context ctx, boolea argument
175 costInline(int thresh, Environment env, Context ctx) argument
188 code(Environment env, Context ctx, Assembler asm) argument
[all...]
H A DBitNotExpression.java48 void selectType(Environment env, Context ctx, int tm) { argument
54 right = convert(env, ctx, type, right);
80 public void codeValue(Environment env, Context ctx, Assembler asm) { argument
81 right.codeValue(env, ctx, asm);
H A DNegativeExpression.java48 void selectType(Environment env, Context ctx, int tm) { argument
58 right = convert(env, ctx, type, right);
90 public void codeValue(Environment env, Context ctx, Assembler asm) { argument
91 right.codeValue(env, ctx, asm);
H A DEqualExpression.java78 void codeBranch(Environment env, Context ctx, Assembler asm, Label lbl, boolean whenTrue) { argument
79 left.codeValue(env, ctx, asm);
84 right.codeValue(env, ctx, asm);
90 right.codeValue(env, ctx, asm);
94 right.codeValue(env, ctx, asm);
98 right.codeValue(env, ctx, asm);
107 right.codeValue(env, ctx, asm);
H A DNotEqualExpression.java78 void codeBranch(Environment env, Context ctx, Assembler asm, Label lbl, boolean whenTrue) { argument
79 left.codeValue(env, ctx, asm);
84 right.codeValue(env, ctx, asm);
90 right.codeValue(env, ctx, asm);
94 right.codeValue(env, ctx, asm);
98 right.codeValue(env, ctx, asm);
107 right.codeValue(env, ctx, asm);
/openjdk7/jdk/src/share/classes/javax/swing/plaf/nimbus/
H A DAbstractRegionPainter.java52 private PaintContext ctx; field in class:AbstractRegionPainter
148 ctx = getPaintContext();
149 PaintContext.CacheMode cacheMode = ctx == null ? PaintContext.CacheMode.NO_CACHING : ctx.cacheMode;
159 paintWith9SquareCaching(g, ctx, c, w, h, extendedCacheKeys);
582 if (ctx == null || ctx.canvasSize == null) {
595 if (ctx.inverted) {
596 centerWidth = (ctx.b - ctx
621 paintWith9SquareCaching(Graphics2D g, PaintContext ctx, JComponent c, int w, int h, Object[] extendedCacheKeys) argument
[all...]
/openjdk7/corba/src/share/classes/org/omg/CORBA/
H A DRequest.java155 public abstract Context ctx(); method in class:Request
164 public abstract void ctx(Context c); method in class:Request
H A DContextList.java74 * @param ctx the <code>String</code> object to be added
77 public abstract void add(String ctx); argument
/openjdk7/jdk/test/com/sun/jndi/ldap/
H A DLdapTimeoutTest.java70 InitialContext ctx = null;
85 InitialContext ctx = null;
90 ctx = new InitialDirContext(env);
93 NamingEnumeration<SearchResult> answer = ((InitialDirContext)ctx)
109 if (!shutItDown(killer, ctx)) fail();
114 InitialContext ctx = null;
118 ctx = new InitialDirContext(env);
138 if (!shutItDown(killer, ctx)) fail();
142 boolean shutItDown(ScheduledFuture killer, InitialContext ctx) { argument
145 if (ctx !
[all...]
/openjdk7/jdk/src/share/demo/java2d/J2DBench/src/j2dbench/tests/text/
H A DTextConstructionTests.java125 public void runTest(Object ctx, int numReps) { argument
126 TCContext tcctx = (TCContext)ctx;
142 public void runTest(Object ctx, int numReps) { argument
143 TCContext tcctx = (TCContext)ctx;
159 public void runTest(Object ctx, int numReps) { argument
160 TCContext tcctx = (TCContext)ctx;
176 public void runTest(Object ctx, int numReps) { argument
177 TCContext tcctx = (TCContext)ctx;
193 public void runTest(Object ctx, int numReps) { argument
194 TCContext tcctx = (TCContext)ctx;
232 runTest(Object ctx, int numReps) argument
264 runTest(Object ctx, int numReps) argument
292 runTest(Object ctx, int numReps) argument
309 runTest(Object ctx, int numReps) argument
326 runTest(Object ctx, int numReps) argument
343 runTest(Object ctx, int numReps) argument
[all...]
/openjdk7/jdk/test/com/sun/jndi/rmi/registry/RegistryContext/
H A DContextWithNullProperties.java43 RegistryContext ctx = new RegistryContext(null, registryPort, null);
/openjdk7/jdk/test/sun/security/ssl/com/sun/net/ssl/internal/ssl/GenSSLConfigs/
H A DClientThread.java39 ClientThread (int port, SSLContext ctx) argument
43 factory = ctx.getSocketFactory();
56 ClientThread (InetAddress server, int port, SSLContext ctx) argument
60 factory = ctx.getSocketFactory();
/openjdk7/jdk/src/share/classes/sun/java2d/pipe/
H A DTextRenderer.java55 Object ctx = null;
62 ctx = outpipe.startSequence(sg2d, s, r, bounds);
83 outpipe.needTile(ctx, gx1, gy1, gx2 - gx1, gy2 - gy1))
86 outpipe.renderPathTile(ctx, alpha, off, w,
89 outpipe.skipTile(ctx, gx1, gy1);
93 if (ctx != null) {
94 outpipe.endSequence(ctx);

Completed in 119 milliseconds

1234567891011>>