Searched refs:code (Results 76 - 100 of 715) sorted by relevance

1234567891011>>

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/code/
H A DConstantIntValue.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;
H A DConstantLongValue.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;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/interpreter/
H A DBytecodeWideable.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).
41 return (isWide()) ? getIndexU2(code(), true) : getIndexU1();
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...]
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Filter/src/com/sun/hotspot/igv/filter/
H A DNullScriptEngine.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 void execute(Diagram d, String code) { argument
/openjdk7/jdk/test/java/lang/Math/
H A DTests.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).
245 int code = testUlpCore(result, expected, ulps);
246 if (code == 1) {
253 return code;
259 int code = testUlpCore(result, expected, ulps);
260 if (code == 1) {
268 return code;
277 int code
[all...]
/openjdk7/langtools/test/tools/javac/
H A DT6972327.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).
46 String code = "\n@interface Test {}";
49 Arrays.asList("-bootclasspath", bootPath, "-Xjcov"), null, Arrays.asList(new MyFileObject(code)));
55 if (pos != code.indexOf(code.trim()))
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/util/
H A DXMLResourceIdentifierImpl.java184 /** Returns a hash code for this object. */
186 int code = 0;
188 code += fPublicId.hashCode();
191 code += fLiteralSystemId.hashCode();
194 code += fBaseSystemId.hashCode();
197 code += fExpandedSystemId.hashCode();
200 code += fNamespace.hashCode();
202 return code;
H A DSymbolTable.java26 * to <code>addSymbol</code> will always return the same string
29 * The symbol table performs the same task as <code>String.intern()</code>
164 * by the <code>hash(char[],int,int)</code> method when called
171 int code = 0;
174 code = code * 37 + symbol.charAt(i);
176 return code
[all...]
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dextutil.h4 * This code is free software; you can redistribute it and/or modify it
8 * by Oracle in the LICENSE file that accompanied this code.
10 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * accompanied this code).
158 int /* code */,
207 * helper macros to generate code that is common to all extensions; caller
235 char *proc (Display *dpy, int code, XExtCodes *codes, char *buf, int n) \
237 code -= codes->first_error; \
238 if (code >= 0 && code < ner
[all...]
/openjdk7/hotspot/src/share/vm/code/
H A DscopeDesc.hpp5 * 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).
28 #include "code/debugInfo.hpp"
29 #include "code/pcDesc.hpp"
44 SimpleScopeDesc(nmethod* code,address pc) { argument
45 PcDesc* pc_desc = code->pc_desc_at(pc);
47 DebugInfoReadStream buffer(code, pc_desc->scope_decode_offset());
63 ScopeDesc(const nmethod* code, int decode_offset, int obj_decode_offset, bool reexecute, bool return_oop);
68 ScopeDesc(const nmethod* code, in
[all...]
/openjdk7/hotspot/src/share/vm/interpreter/
H A Dinterpreter.hpp5 * 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).
28 #include "code/stubs.hpp"
41 // An InterpreterCodelet is a piece of interpreter code. All
42 // interpreter code is generated into little codelets which
88 // code buffer and assemblers).
97 // Request the whole code buffer (minus a little for alignment).
99 int codelet_size = AbstractInterpreter::code()->available_space() - 2*K;
101 // Guarantee there's a little bit of code spac
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/org/objectweb/asm/
H A DAttribute.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).
39 * 1. Redistributions of source code must retain the above copyright
63 * A non standard class, field, method or code attribute.
105 * Returns <tt>true</tt> if this type of attribute is a code attribute.
107 * @return <tt>true</tt> if this type of attribute is a code attribute.
117 * this attribute is not a code attribute that contains labels.
139 * @param codeOff index of the first byte of code'
183 write( final ClassWriter cw, final byte[] code, final int len, final int maxStack, final int maxLocals) argument
231 getSize( final ClassWriter cw, final byte[] code, final int len, final int maxStack, final int maxLocals) argument
268 put( final ClassWriter cw, final byte[] code, final int len, final int maxStack, final int maxLocals, final ByteVector out) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/classfile/
H A DCode.java17 * 1. Redistributions of source code must retain the above copyright
65 * This class represents a chunk of Java byte code contained in a
69 * variables, byte code and the exceptions handled within this
85 private int code_length; // Length of code in bytes
86 private byte[] code; // Actual byte code field in class:Code
90 private int attributes_count; // Attributes of code: LineNumber
119 code = new byte[code_length]; // Read byte code
120 file.readFully(code);
156 Code(int name_index, int length, int max_stack, int max_locals, byte[] code, CodeException[] exception_table, Attribute[] attributes, ConstantPool constant_pool) argument
295 setCode(byte[] code) argument
[all...]
H A DMethod.java17 * 1. Redistributions of source code must retain the above copyright
145 /** @return LocalVariableTable of code attribute if any, i.e. the call is forwarded
149 Code code = getCode();
151 if(code != null)
152 return code.getLocalVariableTable();
157 /** @return LineNumberTable of code attribute if any, i.e. the call is forwarded
161 Code code = getCode();
163 if(code != null)
164 return code.getLineNumberTable();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/fault/
H A DSOAP12Fault.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).
79 "code",
90 private CodeType code; field in class:SOAP12Fault
107 SOAP12Fault(CodeType code, ReasonType reason, String node, String role, DetailType detail) { argument
108 this.code = code;
115 SOAP12Fault(CodeType code, ReasonTyp argument
153 SOAP12Fault(QName code, String reason, Element detailObject) argument
[all...]
/openjdk7/jdk/test/java/net/Socket/
H A DDeadlockTest.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).
125 switch (msg.code) {
175 switch (msg.code) {
199 protected int code; field in class:Message
201 public Message() { this.code = UNKNOWN; }
203 public Message(int code) { this.code = code; } argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javadoc/
H A DTypeVariableImpl.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).
31 import com.sun.tools.javac.code.Kinds;
32 import com.sun.tools.javac.code.Symbol;
33 import com.sun.tools.javac.code.Symbol.ClassSymbol;
34 import com.sun.tools.javac.code.Symbol.MethodSymbol;
35 import com.sun.tools.javac.code.Type;
36 import com.sun.tools.javac.code
[all...]
/openjdk7/jdk/src/share/classes/java/beans/
H A DXMLEncoder.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).
36 * The <code>XMLEncoder</code> class is a complementary alternative to
37 * the <code>ObjectOutputStream</code> and can used to generate
39 * way that the <code>ObjectOutputStream</code> ca
572 isValidCharCode(int code) argument
663 quoteCharCode(int code) argument
675 createString(int code) argument
[all...]
/openjdk7/hotspot/src/cpu/x86/vm/
H A DicBuffer_x86.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).
28 #include "code/icBuffer.hpp"
49 CodeBuffer code(code_begin, ic_stub_code_size());
50 MacroAssembler* masm = new MacroAssembler(&code);
51 // note: even though the code contains an embedded oop, we do not need reloc info
/openjdk7/jdk/test/java/awt/im/4959409/
H A Dbug4959409.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).
58 int code = e.getKeyCode();
60 if (code == '1' && mods == KeyEvent.SHIFT_MASK) {
/openjdk7/langtools/src/share/classes/com/sun/tools/apt/mirror/declaration/
H A DConstructorDeclarationImpl.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).
35 import com.sun.tools.javac.code.Flags;
36 import com.sun.tools.javac.code.Symbol.MethodSymbol;
/openjdk7/jdk/src/share/classes/sun/net/httpserver/
H A DCode.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).
67 static String msg (int code) { argument
69 switch (code) {
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/util/
H A DErrorMsg.java189 public ErrorMsg(String code) { argument
190 _code = code;
194 public ErrorMsg(String code, Throwable e) { argument
195 _code = code;
207 public ErrorMsg(String code, int line, Object param) { argument
208 _code = code;
213 public ErrorMsg(String code, Object param) { argument
214 this(code);
219 public ErrorMsg(String code, Object param1, Object param2) { argument
220 this(code);
226 ErrorMsg(String code, SyntaxTreeNode node) argument
232 ErrorMsg(String code, Object param1, SyntaxTreeNode node) argument
240 ErrorMsg(String code, Object param1, Object param2, SyntaxTreeNode node) argument
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/amd64/
H A DAMD64Helper.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).
31 public Disassembler createDisassembler(long startPc, byte[] code) { argument

Completed in 253 milliseconds

1234567891011>>