/openjdk7/hotspot/src/cpu/sparc/vm/ |
H A D | bytecodes_sparc.cpp | 5 * 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). 33 Bytecodes::Code Bytecodes::pd_base_code_for(Code code) { argument 34 return code;
|
/openjdk7/hotspot/src/cpu/x86/vm/ |
H A D | bytecodes_x86.cpp | 5 * 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). 34 Bytecodes::Code Bytecodes::pd_base_code_for(Code code) { argument 36 return code;
|
/openjdk7/hotspot/src/cpu/zero/vm/ |
H A D | assembler_zero.hpp | 6 * This code is free software; you can redistribute it and/or modify it 10 * This code is distributed in the hope that it will be useful, but WITHOUT 14 * accompanied this code). 36 Assembler(CodeBuffer* code) : AbstractAssembler(code) {} argument 47 MacroAssembler(CodeBuffer* code) : Assembler(code) {} argument
|
H A D | interp_masm_zero.hpp | 6 * This code is free software; you can redistribute it and/or modify it 10 * This code is distributed in the hope that it will be useful, but WITHOUT 14 * accompanied this code). 36 InterpreterMacroAssembler(CodeBuffer* code) : MacroAssembler(code) {} argument
|
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/code/ |
H A D | CompressedWriteStream.java | 5 * 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 D | DebugInformationRecorder.java | 5 * 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 D | DebugInfoReadStream.java | 5 * 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; 34 private NMethod code; field in class:DebugInfoReadStream 38 public DebugInfoReadStream(NMethod code, int offset) { argument 39 super(code.scopesDataBegin(), offset); 41 this.code = code; 45 public DebugInfoReadStream(NMethod code, in argument [all...] |
H A D | AdapterBlob.java | 5 * 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 D | BufferBlob.java | 5 * 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 D | DeoptimizationBlob.java | 5 * 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 D | ExceptionBlob.java | 5 * 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; 32 /** ExceptionBlob: used for exception unwinding in compiled code
|
H A D | MethodHandlesAdapterBlob.java | 5 * 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 D | SafepointBlob.java | 5 * 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 D | SingletonBlob.java | 5 * 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 D | UncommonTrapBlob.java | 5 * 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/src/share/vm/interpreter/ |
H A D | bytecodeStream.cpp | 5 * 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). 29 Bytecodes::Code RawBytecodeStream::raw_next_special(Bytecodes::Code code) { argument 36 code = Bytecodes::_illegal; 43 if (code == Bytecodes::_wide) { 45 code = Bytecodes::_illegal; 47 code = (Bytecodes::Code)bcp[1]; 52 _raw_code = code; 53 return code; [all...] |
/openjdk7/langtools/test/tools/javac/AccessMethods/ |
H A D | UplevelPrivateConstants.java | 5 * 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). 44 Inner(int code) { argument 45 switch(code) {
|
/openjdk7/jdk/src/share/native/java/lang/ |
H A D | Shutdown.c | 5 * 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). 34 Java_java_lang_Shutdown_halt0(JNIEnv *env, jclass ignored, jint code) argument 36 JVM_Halt(code);
|
/openjdk7/jdk/src/share/classes/sun/security/smartcardio/ |
H A D | PCSCException.java | 5 * 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 * Exception for PC/SC errors. The native code portion checks the return value 32 * of the SCard* functions. If it indicates an error, the native code constructs 42 final int code; field in class:PCSCException 44 PCSCException(int code) { argument 45 super(toErrorString(code)); 46 this.code 49 toErrorString(int code) argument [all...] |
/openjdk7/jdk/src/share/classes/java/net/ |
H A D | HttpRetryException.java | 5 * 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). 46 * Constructs a new <code>HttpRetryException</code> from the 47 * specified response code and exception detail message 50 * @param code the HTTP response code from server. 52 public HttpRetryException(String detail, int code) { argument 65 HttpRetryException(String detail, int code, String location) argument [all...] |
/openjdk7/hotspot/src/share/vm/code/ |
H A D | pcDesc.cpp | 5 * 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/nmethod.hpp" 28 #include "code/pcDesc.hpp" 29 #include "code/scopeDesc.hpp" 39 address PcDesc::real_pc(const nmethod* code) const { 40 return code->code_begin() + pc_offset(); 43 void PcDesc::print(nmethod* code) { argument 65 verify(nmethod* code) argument [all...] |
/openjdk7/jaxp/src/org/w3c/dom/events/ |
H A D | EventException.java | 4 * 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). 45 * Event operations may throw an <code>EventException</code> as specified in 51 public EventException(short code, String message) { argument 53 this.code = code; 55 public short code; field in class:EventException [all...] |
/openjdk7/jaxp/src/org/w3c/dom/ls/ |
H A D | LSException.java | 4 * 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). 45 * Parser or write operations may throw an <code>LSException</code> if the 47 * <code>DOMError</code> with a severity of 48 * <code>DOMError.SEVERITY_FATAL_ERROR</code> o 59 LSException(short code, String message) argument 63 public short code; field in class:LSException [all...] |
/openjdk7/jaxp/src/org/w3c/dom/ranges/ |
H A D | RangeException.java | 4 * 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). 45 * Range operations may throw a <code>RangeException</code> as specified in 51 public RangeException(short code, String message) { argument 53 this.code = code; 55 public short code; field in class:RangeException [all...] |
/openjdk7/jaxp/src/org/w3c/dom/xpath/ |
H A D | XPathException.java | 4 * 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). 50 public XPathException(short code, String message) { argument 52 this.code = code; 54 public short code; field in class:XPathException 59 * <code>XPathEvaluator</code> o [all...] |