Searched defs:code (Results 226 - 250 of 317) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/macosx/classes/com/apple/eawt/
H A D_AppEventHandler.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).
183 private static void handleNativeNotification(final int code) { argument
184 // System.out.println(code);
186 switch (code) {
236 System.err.println("EAWT unknown native notification: " + code);
472 * both a thread-safe manner, and that user code is performed on the
478 * User code i
[all...]
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/jpeg/
H A DJFIFMarkerSegment.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).
93 * Set to <code>true</code> when reading the chunks of an
491 || (jfxx.code == THUMB_PALETTE)) {
515 if (jfxx.code == THUMB_PALETTE) {
539 if (jfxx.code == THUMB_RGB) {
542 } else if (jfxx.code
654 int code; field in class:JFIFMarkerSegment.JFIFExtensionMarkerSegment
[all...]
/openjdk7/jdk/src/solaris/native/sun/awt/splashscreen/
H A Dsplashscreen_sys.c5 * 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).
52 /* Could use npt but decided to cut down on linked code size */
371 sendctl(Splash * splash, char code) { argument
374 write(splash->controlpipe[1], &code, 1);
/openjdk7/jdk/src/windows/native/sun/java2d/d3d/
H A DD3DShaderGen.c5 * 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 * made to the shader code contained within. Typically, this only happens
102 DWORD code; local
104 GetExitCodeProcess(pi.hProcess, &code);
107 } while (code == STILL_ACTIVE);
109 if (code != 0) {
184 // (placeholder for edge condition code)
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/formats/html/
H A DAbstractMemberWriter.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).
276 HtmlTree code = new HtmlTree(HtmlTag.CODE);
277 addModifier(member, code);
280 code.addContent("class");
282 code.addContent("interface");
284 code.addContent(writer.getSpace());
290 (ExecutableMemberDoc) member, code);
330 addModifier(ProgramElementDoc member, Content code) argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/
H A DSymtab.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).
26 package com.sun.tools.javac.code;
34 import com.sun.tools.javac.code.Symbol.*;
35 import com.sun.tools.javac.code.Type.*;
39 import static com.sun.tools.javac.code.Flags.*;
48 * If you write code that depends on this, you do so at your own risk.
49 * This code an
[all...]
/openjdk7/jdk/src/share/javavm/export/
H A Djvm.h5 * 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).
48 * needed by the byte code verifier and class file format checker.
124 JVM_Exit(jint code);
127 JVM_Halt(jint code);
357 * Returns the class in which the code invoking the native method
652 * The version passed in is the version that the library code was
728 * Returns the byte code sequenc
980 unsigned long code; /* byte code */ member in struct:__anon579
[all...]
/openjdk7/jdk/src/share/native/java/util/zip/zlib-1.2.3/
H A Ddeflate.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).
44 the crc code when it is not needed. For shared libraries, gzip encoding
55 /* number of length codes, not counting the special END_BLOCK code */
61 /* number of Literal or Length codes, including the END_BLOCK code */
85 /* Data structure describing a single value and its code string. */
89 ush code; /* bit string */ member in union:ct_data_s::__anon660
98 #define Code fc.code
[all...]
H A Dtrees.c4 * 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).
36 * Each code tree is stored in a compressed form which is itself
37 * a Huffman encoding of the lengths of all the code strings (in
38 * ascending order by source values). The actual code strings are
74 /* end of block literal code */
85 local const int extra_lbits[LENGTH_CODES] /* extra bits for each length code */
88 local const int extra_dbits[D_CODES] /* extra bits for each distance code */
269 int code; /* code value */ local
607 ush code = 0; /* running code value */ local
1104 unsigned code; /* the code to send */ local
[all...]
/openjdk7/jdk/src/share/native/sun/awt/image/jpeg/
H A Djcmarker.c127 /* Emit a marker code */
281 emit_sof (j_compress_ptr cinfo, JPEG_MARKER code) argument
287 emit_marker(cinfo, code);
536 emit_sof(cinfo, M_SOF9); /* SOF code for arithmetic coding */
539 emit_sof(cinfo, M_SOF2); /* SOF code for progressive Huffman */
541 emit_sof(cinfo, M_SOF0); /* SOF code for baseline implementation */
543 emit_sof(cinfo, M_SOF1); /* SOF code for non-baseline Huffman file */
/openjdk7/jdk/src/share/classes/sun/tools/java/
H A DMemberDefinition.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 * is defined in class `classDef'. This is used by code
116 * constant pool entries during code generation.
122 * constant pool entries during code generation.
412 * Generate code
414 public void code(Environment env, Assembler asm) throws ClassNotFound { method in class:MemberDefinition
415 throw new CompilerError("code");
[all...]
/openjdk7/jdk/test/sun/nio/cs/
H A DEUC_TW_OLD.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).
32438 searchTab(char code, char [] table) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/net/httpserver/
H A DServerImpl.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).
681 void reject (int code, String requestStr, String message) { argument
683 logReply (code, requestStr, message);
685 code, false, "<h1>"+code+Code.msg(code)+"</h1>"+message
691 int code, boolea
690 sendReply( int code, boolean closeNow, String text) argument
725 logReply(int code, String requestStr, String text) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/reflect/
H A DAccessorGenerator.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).
424 // Generate code into fresh code buffer
439 // as 2 in this count. The code buffer must NOT contain the code
445 ClassFileAssembler code,
449 int codeLen = code
443 emitMethod(short nameIdx, int numArgs, ClassFileAssembler code, ClassFileAssembler exceptionTable, short[] checkedExceptionIndices) argument
[all...]
/openjdk7/jdk/src/share/native/sun/security/smartcardio/
H A Dpcsc.c5 * 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 void throwPCSCException(JNIEnv* env, LONG code) { argument
76 pcscException = (jthrowable) (*env)->NewObject(env, pcscClass, constructor, (jint)code);
80 jboolean handleRV(JNIEnv* env, LONG code) { argument
81 if (code == SCARD_S_SUCCESS) {
84 throwPCSCException(env, 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/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/runtime/
H A DBasisLibrary.java100 * translets. New code should not reference it.
1479 // not sure if this line of code ever works
1593 public static void runTimeError(String code) { argument
1594 throw new RuntimeException(m_bundle.getString(code));
1597 public static void runTimeError(String code, Object[] args) { argument
1598 final String message = MessageFormat.format(m_bundle.getString(code),
1603 public static void runTimeError(String code, Object arg0) { argument
1604 runTimeError(code, new Object[]{ arg0 } );
1607 public static void runTimeError(String code, Object arg0, Object arg1) { argument
1608 runTimeError(code, ne
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/bugspot/
H A DBugSpot.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).
348 code. Specified factory may be null, in which case the default
446 // Editors for source code. File name-to-Editor mapping.
624 // assumptions in the current code that Java floats and doubles
941 private SourceCodePanel code; field in class:BugSpot.DefaultEditor
949 code = new SourceCodePanel();
951 code.setFont(fixedWidthFont);
952 editorFrame.getContentPane().add(code);
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/code/
H A DNMethod.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;
363 /** Support for code generation. Only here for proof-of-concept. */
378 " code: [" + codeBegin() + ", " + codeEnd() + "), " +
/openjdk7/jdk/src/share/classes/java/util/
H A DLocale.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).
30 * The original version of this source code and documentation
67 * A <code>Locale</code> object represents a specific geographical, political,
68 * or cultural region. An operation that requires a <code>Locale</code> to perform
69 * its task is called <em>locale-sensitive</em> and uses the <code>Local
1644 getDisplayString(String code, Locale inLocale, int type) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/imageio/metadata/
H A DIIOMetadataNode.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).
45 public IIODOMException(short code, String message) { argument
46 super(code, message);
90 * Equivalent to <code>getNamedItem(localName)</code>.
97 * Equivalent to <code>setNamedItem(arg)</code>
[all...]
/openjdk7/hotspot/src/share/vm/ci/
H A DciMethod.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).
181 assert(is_loaded(), "only loaded methods have code");
290 // Get the address of this method's native code, if any.
804 // These are built by Java code.
926 // Should the compiler print the generated code for this method?
937 // Should the compiler insert a breakpoint into the generated code
1004 return get_methodOop()->code() != NULL;
1010 nmethod* nm = get_methodOop()->code();
1112 Bytecodes::Code code = (is_static ? Bytecodes::_invokestatic : Bytecodes::_invokevirtual); local
[all...]
/openjdk7/hotspot/src/share/vm/code/
H A DrelocInfo.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/compiledIC.hpp"
27 #include "code/nmethod.hpp"
28 #include "code/relocInfo.hpp"
85 assert(sizeof(relocInfo) == sizeof(short), "change this code");
158 // Initialize code sections.
244 assert(sizeof(jint) == BytesPerInt, "change this code");
355 address code_end = (address)code()
808 CodeBlob* code; local
[all...]
/openjdk7/hotspot/src/share/vm/interpreter/
H A DlinkResolver.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).
268 // We will ask Java code to spin an adapter method for it.
372 Bytecodes::Code code, constantPoolHandle pool, int index, TRAPS) {
375 if (code == Bytecodes::_invokedynamic) {
400 if (code == Bytecodes::_invokeinterface) {
371 resolve_method_statically(methodHandle& resolved_method, KlassHandle& resolved_klass, Bytecodes::Code code, constantPoolHandle pool, int index, TRAPS) argument
/openjdk7/hotspot/src/share/vm/oops/
H A DcpCacheOop.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).
95 // _indices = invoke code for f1 (b1 section), invoke code for f2 (b2 section),
117 // source code. The _indices field with the bytecode must be written last.
135 void set_bytecode_1(Bytecodes::Code code);
136 void set_bytecode_2(Bytecodes::Code code);
239 // Common code for invokedynamic and MH invocations.
270 static int bytecode_number(Bytecodes::Code code) { argument
[all...]

Completed in 171 milliseconds

1234567891011>>