Searched defs:Code (Results 1 - 11 of 11) sorted by relevance

/openjdk7/jdk/src/share/sample/nio/server/
H A DReply.java56 static class Code { class in class:Reply
60 private Code(int i, String r) { number = i; reason = r; } method in class:Reply.Code
63 static Code OK = new Code(200, "OK");
64 static Code BAD_REQUEST = new Code(400, "Bad Request");
65 static Code NOT_FOUND = new Code(404, "Not Found");
66 static Code METHOD_NOT_ALLOWED = new Code(40
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/classfile/
H A DCode.java67 * <em>Attribute.readAttribute()</em> method. A <em>Code</em>
82 public final class Code extends Attribute { class in inherits:Attribute
97 public Code(Code c) { method in class:Code
104 * @param name_index Index pointing to the name <em>Code</em>
109 Code(int name_index, int length, DataInputStream file, method in class:Code
147 * @param name_index Index pointing to the name <em>Code</em>
156 public Code(int name_index, int length, method in class:Code
215 * @return LineNumberTable of Code, if it has one
226 * @return LocalVariableTable of Code, i
[all...]
/openjdk7/jdk/src/share/native/sun/awt/giflib/
H A Ddgif_lib.c80 static int DGifGetPrefixChar(unsigned int *Prefix, int Code, int ClearCode);
81 static int DGifDecompressInput(GifFileType *GifFile, int *Code);
724 READ(GifFile, &CodeSize, 1); /* Read Code size from file. */
887 int Code,
892 while (Code > ClearCode && i++ <= LZ_MAX_CODE)
893 Code = Prefix[Code];
894 return Code;
898 * Interface for accessing the LZ codes directly. Set Code to the real code
903 int *Code) {
886 DGifGetPrefixChar(unsigned int *Prefix, int Code, int ClearCode) argument
902 DGifGetLZCodes(GifFileType * GifFile, int *Code) argument
942 DGifDecompressInput(GifFileType * GifFile, int *Code) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/net/httpserver/
H A DCode.java28 class Code { class
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DCode.java38 class Code extends Attribute.Holder { class in inherits:Attribute.Holder
41 public Code(Class.Method m) { method in class:Code
331 // Code attributes are finished in ClassWriter.writeAttributes.
339 // A method's flags force it to have a Code attribute,
345 return m+".Code";
/openjdk7/langtools/src/share/classes/com/sun/tools/classfile/
H A DAttribute.java44 public static final String Code = "Code"; field in class:Attribute
105 standardAttributes.put(Code, Code_attribute.class);
/openjdk7/jdk/src/share/native/java/util/zip/zlib-1.2.3/
H A Ddeflate.h98 #define Code fc.code macro
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/util/
H A DNames.java87 public final Name Code; field in class:Names
198 Code = fromString("Code");
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/jvm/
H A DCode.java47 public class Code { class
129 /** Code generation enabled?
185 public Code(MethodSymbol meth, method in class:Code
1374 Code.State state;
1383 public Chain(int pc, Chain next, Code.State state) {
/openjdk7/hotspot/src/share/vm/interpreter/
H A Dbytecodes.hpp37 enum Code { enum in class:Bytecodes
346 static Code _java_code [number_of_codes];
349 static void def(Code code, const char* name, const char* format, const char* wide_format, BasicType result_type, int depth, bool can_trap);
350 static void def(Code code, const char* name, const char* format, const char* wide_format, BasicType result_type, int depth, bool can_trap, Code java_code);
352 static Code pd_base_code_for(Code code); // platform specific base_code_for implementation
358 static bool check_must_rewrite(Bytecodes::Code bc);
362 static void check (Code code) { assert(is_defined(code), err_msg("illegal code: %d", (int)code)); }
363 static void wide_check (Code cod
[all...]
/openjdk7/jdk/test/java/lang/invoke/indify/
H A DIndify.java1424 Code_index = pool.stringIndex("Code", false);
1500 public Code code() {
1501 Attr a = findAttr("Code");
1503 return (Code) a.item;
1506 Code code = code();
1541 //if (!(item instanceof Code)) System.err.println("wrote complex attr name="+(int)(char)name+" size="+trueSize+" data="+Arrays.toString(flatten()));
1551 item = readInput((byte[])item, Code.class);
1559 public List<Attr> attrs() { return null; } // Code overrides this
1590 public static class Code extends InnerOuter implements Chunk { class in class:Indify

Completed in 454 milliseconds