Searched defs:code (Results 101 - 125 of 317) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/sun/tools/tree/
H A DCommaExpression.java5 * This code is free software; you can redistribute it and/or modify it
9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
15 * accompanied this code).
105 // Fully code the left-hand side. Do the LValue part of the
109 left.code(env, ctx, asm);
138 left.code(env, ctx, asm);
142 public void code(Environment env, Context ctx, Assembler asm) { method in class:CommaExpression
144 left.code(env, ctx, asm);
147 right.code(en
[all...]
H A DCompoundStatement.java5 * This code is free software; you can redistribute it and/or modify it
9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
15 * accompanied this code).
167 public void code(Environment env, Context ctx, Assembler asm) { method in class:CompoundStatement
170 args[i].code(env, newctx, asm);
H A DConditionalExpression.java5 * This code is free software; you can redistribute it and/or modify it
9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
15 * accompanied this code).
204 public void code(Environment env, Context ctx, Assembler asm) { method in class:ConditionalExpression
207 left.code(env, ctx, asm);
212 right.code(env, ctx, asm);
H A DDeclarationStatement.java5 * This code is free software; you can redistribute it and/or modify it
9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
15 * accompanied this code).
123 public void code(Environment env, Context ctx, Assembler asm) { method in class:DeclarationStatement
126 args[i].code(env, ctx, asm);
H A DDoStatement.java5 * This code is free software; you can redistribute it and/or modify it
9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
15 * accompanied this code).
110 public void code(Environment env, Context ctx, Assembler asm) { method in class:DoStatement
117 body.code(env, newctx, asm);
H A DExpressionStatement.java5 * This code is free software; you can redistribute it and/or modify it
9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
15 * accompanied this code).
88 public void code(Environment env, Context ctx, Assembler asm) { method in class:ExpressionStatement
89 expr.code(env, ctx, asm);
H A DFinallyStatement.java5 * This code is free software; you can redistribute it and/or modify it
9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
15 * accompanied this code).
148 // store it on the init, for code generation
261 public void code(Environment env, Context ctx, Assembler asm) { method in class:FinallyStatement
271 init.code(env, exprctx, asm);
299 asm.add(where, opc_try, td); // start of protected code
300 body.code(env, bodyctx, asm);
302 asm.add(td.getEndLabel()); // end of protected code
[all...]
H A DForStatement.java5 * This code is free software; you can redistribute it and/or modify it
9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
15 * accompanied this code).
159 public void code(Environment env, Context ctx, Assembler asm) { method in class:ForStatement
162 init.code(env, newctx, asm);
172 body.code(env, newctx, asm);
177 inc.code(env, newctx, asm);
H A DIfStatement.java5 * This code is free software; you can redistribute it and/or modify it
9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
15 * accompanied this code).
65 // The following code, now deleted, was apparently an erroneous attempt
77 // would be required in the other branch. A complication: This code also
83 // Note that the code below will not consider the branches unreachable if
107 // appear in dead code. If we don't inline the dead branch here
109 // classes appearing on the dead code. When the compiler tries
170 public void code(Environmen method in class:IfStatement
[all...]
H A DInstanceOfExpression.java5 * This code is free software; you can redistribute it and/or modify it
9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
15 * accompanied this code).
120 public void code(Environment env, Context ctx, Assembler asm) { method in class:InstanceOfExpression
121 left.code(env, ctx, asm);
H A DReturnStatement.java5 * This code is free software; you can redistribute it and/or modify it
9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
15 * accompanied this code).
158 public void code(Environment env, Context ctx, Assembler asm) { method in class:ReturnStatement
H A DSwitchStatement.java5 * This code is free software; you can redistribute it and/or modify it
9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
15 * accompanied this code).
188 public void code(Environment env, Context ctx, Assembler asm) { method in class:SwitchStatement
235 s.code(env, newctx, asm);
H A DSynchronizedStatement.java5 * This code is free software; you can redistribute it and/or modify it
9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
15 * accompanied this code).
113 public void code(Environment env, Context ctx, Assembler asm) { method in class:SynchronizedStatement
145 body.code(env, bodyctx, asm);
157 // Catch code
H A DThrowStatement.java5 * This code is free software; you can redistribute it and/or modify it
9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
15 * accompanied this code).
110 public void code(Environment env, Context ctx, Assembler asm) { method in class:ThrowStatement
H A DTryStatement.java5 * This code is free software; you can redistribute it and/or modify it
9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
15 * accompanied this code).
111 // Make sure the exception is actually throw in that part of the code
132 // Make sure the exception is actually throw in that part of the code
259 // Note that although all code must be able to be inlined
271 public void code(Environment env, Context ctx, Assembler asm) { method in class:TryStatement
285 body.code(env, newctx, asm);
294 args[i].code(en
[all...]
H A DVarDeclarationStatement.java5 * This code is free software; you can redistribute it and/or modify it
9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
15 * accompanied this code).
151 // Don't generate code for variable if unused and
165 // This code looks like it tests whether a final variable
232 public void code(Environment env, Context ctx, Assembler asm) { method in class:VarDeclarationStatement
234 // The two lines of code directly following this comment used
243 // declare `field' before we code `expr', because otherwise
256 expr.code(en
[all...]
H A DWhileStatement.java5 * This code is free software; you can redistribute it and/or modify it
9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
15 * accompanied this code).
111 public void code(Environment env, Context ctx, Assembler asm) { method in class:WhileStatement
120 body.code(env, newctx, asm);
/openjdk7/jdk/src/share/sample/nio/server/
H A DReply.java8 * - Redistributions of source code must retain the above copyright
33 * This source code is provided to illustrate the usage of a given feature
37 * this sample code.
70 private Code code; field in class:Reply
79 code = rc;
93 cb.put("HTTP/1.0 ").put(code.toString()).put(CRLF);
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/ref/
H A DDTMNamedNodeMap.java96 * @param name The <code>nodeName</code> of a node to retrieve.
97 * @return A <code>Node</code> (of any type) with the specified
98 * <code>nodeName</code>, or <code>null</code> if it does not identify
115 * Returns the <code>index</code>t
286 DTMException(short code, String message) argument
297 DTMException(short code) argument
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/sparc/
H A DSPARCDisassembler.java5 * This code is free software; you can redistribute it and/or modify it
9 * This code is distributed in the hope that it will be useful, but WITHOUT
13 * accompanied this code).
38 public SPARCDisassembler(long startPc, byte[] code, SPARCInstructionFactory factory) { argument
39 super(startPc, code);
99 DataInputStream dis = new DataInputStream(new ByteArrayInputStream(code));
105 while (len < code.length) {
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/code/
H A DStubQueue.java5 * This code is free software; you can redistribute it and/or modify it
9 * This code is distributed in the hope that it will be useful, but WITHOUT
13 * accompanied this code).
25 package sun.jvm.hotspot.code;
37 code. In the SA APIs the pattern has been to use the
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/interpreter/
H A DBytecode.java5 * This code is free software; you can redistribute it and/or modify it
9 * This code is distributed in the hope that it will be useful, but WITHOUT
13 * accompanied this code).
57 public boolean hasIndexU4() { return code() == Bytecodes._invokedynamic; }
81 // hotspot byte code
82 public int code() { method in class:Bytecode
86 // jvm byte code
88 return Bytecodes.javaCode(code());
92 return Bytecodes.name(code());
109 if (code() !
[all...]
H A DBytecodeStream.java5 * This code is free software; you can redistribute it and/or modify it
9 * This code is distributed in the hope that it will be useful, but WITHOUT
13 * accompanied this code).
67 int code;
72 code = Bytecodes._illegal;
76 code = 0; // Make javac happy
78 code = Bytecodes.javaCode(rawCode);
86 int l = Bytecodes.lengthFor(code);
95 if (code == Bytecodes._wide) {
96 code
112 public int code() { return _code; } method in class:BytecodeStream
[all...]
/openjdk7/jdk/src/share/classes/java/util/logging/
H A DHandler.java5 * This code is free software; you can redistribute it and/or modify it
9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
15 * accompanied this code).
228 * @param code an error code defined in ErrorManager
230 protected void reportError(String msg, Exception ex, int code) { argument
232 errorManager.error(msg, ex, code);
/openjdk7/hotspot/src/share/vm/code/
H A DscopeDesc.cpp5 * This code is free software; you can redistribute it and/or modify it
9 * This code is distributed in the hope that it will be useful, but WITHOUT
13 * accompanied this code).
26 #include "code/debugInfoRec.hpp"
27 #include "code/pcDesc.hpp"
28 #include "code/scopeDesc.hpp"
34 ScopeDesc::ScopeDesc(const nmethod* code, int decode_offset, int obj_decode_offset, bool reexecute, bool return_oop) { argument
35 _code = code;
43 ScopeDesc::ScopeDesc(const nmethod* code, int decode_offset, bool reexecute, bool return_oop) { argument
44 _code = code;
[all...]

Completed in 86 milliseconds

1234567891011>>