Searched refs:code (Results 1 - 25 of 1698) sorted by relevance

1234567891011>>

/openjdk10/jdk/src/java.base/share/native/libzip/zlib/
H A Dinffixed.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).
34 static const code lenfix[512] = {
111 static const code distfix[32] = {
/openjdk10/jdk/src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/internal/websocket/
H A DStatusCodes.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).
32 * 2. http://www.iana.org/assignments/websocket/websocket.xhtml#close-code-number
43 static boolean isLegalToSendFromClient(int code) { argument
44 if (!isLegal(code)) {
48 if (code > 4999) {
52 switch (code) {
58 case 1012: // code sen
67 isLegalToReceiveFromServer(int code) argument
74 isLegal(int code) argument
[all...]
/openjdk10/hotspot/src/share/vm/utilities/
H A Dmacros.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 // Use this to mark code that needs to be cleaned up (for development only)
60 #define NOT_JVMTI_RETURN_(code) /* next token must be ; */
65 #define NOT_JVMTI_RETURN_(code) { return code; }
74 #define NOT_VM_STRUCTS_RETURN_(code) /* next token must be ; */
77 #define NOT_VM_STRUCTS_RETURN_(code) { return code; }
[all...]
/openjdk10/nashorn/test/script/basic/
H A DJDK-8047078.js5 * 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 function makeFuncAndCall(code) {
32 Function(code)();
H A DNASHORN-376.js5 * 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 function check(code) {
33 eval(code);
34 fail("should have result in error " + code);
37 fail("ReferenceError expected for '" + code + "' , got " + e);
H A DJDK-8019473.js5 * 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 function checkNoError(code) {
33 Function(code);
35 print("no error expected for: " + code + " , got " + e);
45 function checkError(code) {
47 eval(code);
48 print("SyntaxError expected for: " + code);
H A DJDK-8015349.js5 * 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 function printEval(code) {
32 print(code + " = " + eval(code));
/openjdk10/nashorn/test/script/basic/parser/
H A Dutil.js5 * 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 function printParse(code) {
32 print(JSON.stringify(parse(code), null, ' '));
/openjdk10/hotspot/src/jdk.internal.vm.ci/share/classes/jdk.vm.ci.code/src/jdk/vm/ci/code/
H A DReferenceMap.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).
23 package jdk.vm.ci.code;
28 * in compiled code.
H A DCompiledCode.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).
23 package jdk.vm.ci.code;
27 * into a managed code heap. Since the details of a code heap are specific to each runtime, this
H A Dpackage-info.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).
24 * Package that defines the interface between a Java application that wants to install code and the
25 * runtime. The runtime provides in implementation of the {@link jdk.vm.ci.code.CodeCacheProvider}
27 * {@link jdk.vm.ci.code.CodeCacheProvider#addCode(jdk.vm.ci.meta.ResolvedJavaMethod, CompiledCode, jdk.vm.ci.meta.SpeculationLog, InstalledCode)}
28 * can be used to install code.
30 package jdk.vm.ci.code;
/openjdk10/jaxp/src/java.xml/share/classes/org/w3c/dom/events/
H A DEventException.java4 * 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...]
/openjdk10/jaxp/src/jdk.xml.dom/share/classes/org/w3c/dom/xpath/
H A DXPathException.java4 * 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).
52 public XPathException(short code, String message) { argument
54 this.code = code;
56 public short code; field in class:XPathException
61 * <code>XPathEvaluator</code> o
[all...]
/openjdk10/jaxp/src/java.xml/share/classes/org/w3c/dom/ranges/
H A DRangeException.java4 * 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...]
/openjdk10/jaxp/src/java.xml/share/classes/org/w3c/dom/ls/
H A DLSException.java4 * 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
61 LSException(short code, String message) argument
65 public short code; field in class:LSException
[all...]
/openjdk10/nashorn/test/script/nosecurity/
H A DJDK-8078049.js5 * 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).
36 p0: { code: 0, category: m },
37 p1: { code: 1, category: m },
38 p2: { code: 2, category: m }
42 p0: { code: 0, category: m },
43 p1: { code: 1, category: m },
44 p2: { code: 2, category: m },
45 p3: { code
[all...]
/openjdk10/jdk/src/java.base/share/classes/sun/net/ftp/
H A DFtpProtocolException.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 * <p>The specific error code can be retreived with {@link #getReplyCode() }.</p>
36 private final FtpReplyCode code; field in class:FtpProtocolException
39 * Constructs a new {@code FtpProtocolException} from the
40 * specified detail message. The reply code is set to unknow error.
46 code = FtpReplyCode.UNKNOWN_ERROR;
50 * Constructs a new {@code FtpProtocolExceptio
56 FtpProtocolException(String detail, FtpReplyCode code) argument
[all...]
/openjdk10/nashorn/test/script/nosecurity/treeapi/
H A Ddiagnostic.js5 * 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 var code = <<EOF
37 parseDiagnostic(code, "-strict")
39 var code = <<EOF
44 parseDiagnostic(code, "-strict")
46 var code = <<EOF
50 parseDiagnostic(code, "-strict")
52 var code
[all...]
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/
H A DInstalledCodeInvalidationTest.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).
28 import jdk.vm.ci.code.InstalledCode;
29 import jdk.vm.ci.code.InvalidInstalledCodeException;
33 public void recurse(InstalledCode code, int depth) throws InvalidInstalledCodeException { argument
38 code.executeVarargs(this, code, depth - 1);
41 * Deoptimize this activation and make the compiled code no longer usable.
45 assert code
[all...]
/openjdk10/hotspot/src/cpu/aarch64/vm/
H A Daarch64Test.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/codeBlob.hpp"
38 CodeBuffer code(b);
39 MacroAssembler _masm(&code);
40 entry(&code);
/openjdk10/nashorn/samples/
H A Djava_completion.js8 * - Redistributions of source code must retain the above copyright
34 // display source code completion suggestions for a Java snippet using JShell's API
39 var code = "System."
40 var suggestions = analysis.completionSuggestions(code, code.length, [0])
/openjdk10/nashorn/test/script/basic/es6/
H A Dspread.js5 * 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).
32 function check(code) {
34 eval(code);
H A Drestparam.js5 * 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 function check(code) {
35 eval(code);
H A Dsuper.js5 * 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).
32 function check(code) {
34 eval(code);
H A Dgenerator.js5 * 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).
32 function check(code) {
34 eval(code);

Completed in 139 milliseconds

1234567891011>>