Searched refs:where (Results 126 - 150 of 184) sorted by relevance

12345678

/openjdk7/jdk/make/tools/src/build/tools/dtdbuilder/
H A DPublicMapping.java78 String where = ln.substring(i, j);
79 put(id, baseStr + where);
/openjdk7/jdk/src/share/classes/sun/tools/tree/
H A DBinaryAssignExpression.java44 BinaryAssignExpression(int op, long where, Expression left, Expression right) { argument
45 super(op, where, left.type, left, right);
H A DInlineMethodExpression.java46 InlineMethodExpression(long where, Type type, MemberDefinition field, Statement body) { argument
47 super(INLINEMETHOD, where, type);
H A DNaryExpression.java43 NaryExpression(int op, long where, Type type, Expression right, Expression args[]) { argument
44 super(op, where, type, right);
H A DTryStatement.java51 public TryStatement(long where, Statement body, Statement args[]) { argument
52 super(TRY, where);
102 env.error(args[i].where, "catch.not.reached");
147 env.error(cs.where, "catch.not.thrown", def.getName());
183 env.error(where, "class.not.found", e.name, opNames[op]);
283 asm.add(where, opc_try, td);
289 asm.add(where, opc_goto, newctx.breakLabel);
295 asm.add(where, opc_goto, newctx.breakLabel);
H A DAssignOpExpression.java48 public AssignOpExpression(int op, long where, Expression left, Expression right) { argument
49 super(op, where, left, right);
65 env.error(where, "incompatible.type",
103 right = new ConvertExpression(where, Type.tInt, right);
234 asm.add(where, opc_iinc, operands);
H A DConditionalExpression.java46 public ConditionalExpression(long where, Expression cond, Expression left, Expression right) { argument
47 super(COND, where, Type.tError, left, right);
148 cond = new NotExpression(where, cond);
199 asm.add(where, opc_goto, l2);
210 asm.add(where, opc_goto, l2);
H A DForStatement.java49 public ForStatement(long where, Statement init, Expression cond, Expression inc, Statement body) { argument
50 super(FOR, where);
102 return new CompoundStatement(where, body).inline(env, ctx);
168 asm.add(where, opc_goto, l2);
184 asm.add(where, opc_goto, l1);
H A DWhileStatement.java47 public WhileStatement(long where, Expression cond, Statement body) { argument
48 super(WHILE, where);
114 asm.add(where, opc_goto, newctx.contLabel);
H A DCommaExpression.java42 public CommaExpression(long where, Expression left, Expression right) { argument
43 super(COMMA, where, (right != null) ? right.type : Type.tVoid, left, right);
H A DDoStatement.java47 public DoStatement(long where, Statement body, Expression cond) { argument
48 super(DO, where);
H A DUplevelReference.java365 long where, MemberDefinition conField) {
372 next.codeArguments(env, ctx, asm, where, conField);
381 long where, MemberDefinition conField) {
394 next.codeInitialization(env, ctx, asm, where, conField);
364 codeArguments(Environment env, Context ctx, Assembler asm, long where, MemberDefinition conField) argument
380 codeInitialization(Environment env, Context ctx, Assembler asm, long where, MemberDefinition conField) argument
H A DAssignExpression.java46 public AssignExpression(long where, Expression left, Expression right) { argument
47 super(ASSIGN, where, left, right);
H A DCompoundStatement.java46 public CompoundStatement(long where, Statement args[]) { argument
47 super(STAT, where);
52 args[i] = new CompoundStatement(where, new Statement[0]);
/openjdk7/jdk/src/share/classes/sun/tools/asm/
H A DAssembler.java75 public void add(long where, int opc) { argument
76 add(new Instruction(where, opc, null));
78 public void add(long where, int opc, Object obj) { argument
79 add(new Instruction(where, opc, obj));
82 public void add(long where, int opc, Object obj, boolean flagCondInverted) { argument
83 add(new Instruction(where, opc, obj, flagCondInverted));
86 public void add(boolean flagNoCovered, long where, int opc, Object obj) { argument
87 add(new Instruction(flagNoCovered, where, opc, obj));
90 public void add(long where, int opc, boolean flagNoCovered) { argument
91 add(new Instruction(where, op
[all...]
H A DInstruction.java42 long where; field in class:Instruction
57 public Instruction(long where, int opc, Object value, boolean flagCondInverted) { argument
58 this.where = where;
67 public Instruction(boolean flagNoCovered, long where, int opc, Object value) { argument
68 this.where = where;
77 public Instruction(long where, int opc, boolean flagNoCovered) { argument
78 this.where = where;
87 Instruction(long where, int opc, Object value) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jndi/toolkit/dir/
H A DSearchFilter.java378 // used for substring comparisons (where proto has "*" wildcards
488 * If obj is a byte array, encode each item as \xx, where xx is hex encoding
505 // binary data must be encoded as \hh where hh is a hex char
556 int where = val.indexOf(ch, start);
558 if (where == start || where == -1 || val.charAt(where-1) != '\\')
559 return where;
562 start = where + 1;
584 int where
[all...]
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt.h50 #define JNI_CHECK_NULL_GOTO(obj, msg, where) { \
53 goto where; \
57 #define JNI_CHECK_PEER_GOTO(peer, where) { \
58 JNI_CHECK_NULL_GOTO(peer, "peer", where); \
62 goto where; \
/openjdk7/jdk/src/macosx/native/jobjc/src/core/
H A DPrimitiveCoder.hs141 where jprimS = jprim2js.ntype2jprim $ ntype
145 where retdiff = "(JObjCRuntime.IS64 ? (" ++ x64 ++ ") : (" ++ x32 ++ "))"
148 where retdiff = "if(JObjCRuntime.IS64){ " ++ x64 ++ " }else{ " ++ x32 ++ " }"
160 where
191 where
221 where
231 where
240 where
264 where
/openjdk7/jdk/test/java/nio/file/
H A DTestUtil.java33 static Path createTemporaryDirectory(String where) throws IOException { argument
34 Path dir = FileSystems.getDefault().getPath(where);
/openjdk7/hotspot/src/share/vm/interpreter/
H A Dbytecode.cpp88 void Bytecode::assert_constant_size(int size, int where, Bytecodes::Code bc, bool is_wide) { argument
99 if (have_fmt != need_fmt || where + size != length) {
100 tty->print_cr("assert_constant_size %d @%d: bc=%d%s %d != %d", size, where, bc, (is_wide?"/wide":""), have_fmt, need_fmt);
103 assert(where + size == length, "assert_constant_size oob");
/openjdk7/jdk/test/com/sun/jdi/
H A DRedefineIntConstantToLong.sh91 cmd where
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DFilter.java276 int where = indexOf(str, target.charAt(0), start, end);
277 if (where >= 0) {
279 if (str[where+i] != target.charAt(i)) {
284 return where;
289 int where = indexOf(str, ch, start, end);
302 for (backSlashPos = where - 1;
307 if (where == start || where == -1 || ((backSlashCnt % 2) == 0))
308 return where;
311 start = where
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/dtdparser/
H A DInputEntity.java808 // fail to be peeked is where it's a symbol ... e.g. for an
873 InputEntity where = getTopEntity();
874 if (where == this)
876 return where.getPublicId();
884 InputEntity where = getTopEntity();
885 if (where == this)
887 return where.getSystemId();
895 InputEntity where = getTopEntity();
896 if (where == this)
898 return where
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/java/
H A DMemberDefinition.java49 protected long where; field in class:MemberDefinition
67 public MemberDefinition(long where, ClassDefinition clazz, int modifiers, argument
73 this.where = where;
153 return where;
537 * `method' is visible to the class where this override is occurring.
553 * null, it reports the errors in the class where `this' is

Completed in 806 milliseconds

12345678