Searched refs:code (Results 126 - 150 of 1698) sorted by relevance

1234567891011>>

/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/meta/
H A DHotSpotRegistersProvider.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 import jdk.vm.ci.code.Register;
/openjdk10/hotspot/src/jdk.internal.vm.ci/share/classes/jdk.vm.ci.hotspot/src/jdk/vm/ci/hotspot/
H A DHotSpotInstalledCode.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;
36 * Total size of the code blob.
41 * Start address of the code.
46 * Size of the code.
55 * @return the total size of this code blob
78 byte[] code = new byte[codeSize];
79 UNSAFE.copyMemory(null, codeStart, code, Unsaf
[all...]
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/code/
H A DCompressedWriteStream.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;
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/interpreter/
H A DInterpreter.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 sun.jvm.hotspot.code.*;
54 Address code = codeField.getValue();
55 if (code == null) return null;
56 return new StubQueue(code, InterpreterCodelet.class);
H A DBytecodeStream.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).
67 int code;
72 code = Bytecodes._illegal;
76 code = 0; // Make javac happy
78 code = Bytecodes.javaCode(rawCode);
86 int l = Bytecodes.lengthFor(code);
95 if (code == Bytecodes._wide) {
96 code
112 public int code() { return _code; } method in class:BytecodeStream
[all...]
/openjdk10/jdk/src/java.base/share/classes/sun/security/x509/
H A DCertException.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).
89 * Constructs a certificate exception using an error code
90 * (<code>verf_*</code>) and a string describing the context
93 public CertException(int code, String moredata) argument
95 verfCode = code;
100 * Constructs a certificate exception using just an error code,
103 CertException(int code) argument
[all...]
/openjdk10/jdk/src/java.desktop/share/native/libfontmanager/
H A DscriptMapping.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).
28 * Java level-code has a script code indexes that correspond to
87 hb_script_t getHBScriptCode(int code) { argument
88 if ((code < 0) || (code > MAX_ICU_SCRIPTCODE)) {
91 return ICU_to_Harfbuzz_ScriptCode[code];
[all...]
/openjdk10/langtools/test/tools/javac/
H A DAnonymousSubclassTest.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).
72 void compOk(String code) throws Exception { argument
74 .sources(code)
78 void compFail(String code) throws Exception { argument
80 .sources(code)
/openjdk10/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/code/
H A DBoundKind.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;
31 * If you write code that depends on this, you do so at your own risk.
32 * This code and its internal interfaces are subject to change or
/openjdk10/nashorn/test/script/basic/
H A DJDK-8016235.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).
45 //level, but at least the code does not break, and the analysis is driven
48 ex.code = ex.number = 5;
/openjdk10/nashorn/test/script/nosecurity/treeapi/
H A DfunctionCall.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 var code = <<EOF
50 parse("functionCall.js", code, "-nse", new (Java.extend(visitor, {
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).
34 var code = <<EOF
59 parse("generator.js", code, "--language=es6", new (Java.extend(visitor_es6, {
H A Darrow.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).
34 var code = <<EOF
41 parse("arrow.js", code, "--language=es6", new (Java.extend(visitor_es6, {
H A Dfor.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 var code = <<EOF
46 parse("forloop.js", code, "-nse", new (Java.extend(visitor, {
H A Dregexp.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 var code = <<EOF
44 parse("regexp.js", code, "-nse", new (Java.extend(visitor, {
H A Ddestructuring_catch.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).
34 var code = <<EOF
46 parse("destructuring_catch.js", code, "--language=es6", new (Java.extend(visitor_es6, {
H A Ddestructuring_decl.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).
34 var code = <<EOF
41 parse("destructuring_assign.js", code, "--language=es6", new (Java.extend(visitor_es6, {
H A DlabelledStat.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 var code = <<EOF
47 parse("labeledStat.js", code, "-nse", new (Java.extend(visitor, {
/openjdk10/jdk/test/javax/imageio/metadata/IIOMetadataFormat/
H A DMetadataFormatTest.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 String code = args[1];
40 MetadataTest t = createTest(codebase, code);
52 String code) throws Exception {
56 Class ct = loader.loadClass(code);
51 createTest(String codebase, String code) argument
/openjdk10/jdk/test/java/net/httpclient/http2/jdk.incubator.httpclient/jdk/incubator/http/internal/hpack/
H A DTestHelper.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 static <T extends Throwable> T assertVoidThrows(Class<T> clazz, Block<?> code) { argument
40 code.run();
45 public static <T extends Throwable> T assertThrows(Class<T> clazz, ReturningBlock<?> code) { argument
47 Objects.requireNonNull(code, "code == null");
49 code.run();
64 public static <T> T assertDoesNotThrow(ReturningBlock<T> code) { argument
75 assertVoidDoesNotThrow(Block<?> code) argument
[all...]
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/runtime/regexp/joni/
H A DByteCodePrinter.java29 final int[] code; field in class:ByteCodePrinter
218 code = regex.code;
231 sb.append(new String(code, s, len));
236 sb.append(new String(code, s, len));
251 sb.append("[").append(OpCodeNames[code[bp]]);
252 final int argType = OpCodeArgTypes[code[bp]];
262 sb.append(":(").append(code[bp]).append(")");
267 sb.append(":(").append(code[bp]).append(")");
272 sb.append(":").append(code[b
[all...]
/openjdk10/hotspot/src/share/vm/interpreter/
H A Dinterpreter.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).
87 _clet((InterpreterCodelet*)AbstractInterpreter::code()->request(codelet_size())),
94 // Create assembler for code generation.
100 // Align so printing shows nop's instead of random code at the end (Codelets are aligned).
102 // Make sure all code is in code buffer.
106 int committed_code_size = (*_masm)->code()->pure_insts_size();
108 AbstractInterpreter::code()
[all...]
/openjdk10/jdk/src/java.base/share/native/libjava/
H A DShutdown.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).
34 Java_java_lang_Shutdown_halt0(JNIEnv *env, jclass ignored, jint code) argument
36 JVM_Halt(code);
/openjdk10/jdk/src/java.desktop/share/classes/com/sun/beans/decoder/
H A DCharElementHandler.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).
29 * This element specifies {@code char} values.
35 * which is equivalent to {@code Character.valueOf('X')} in Java code.
38 * <dt>code
39 * <dd>this attribute specifies character code
43 * The {@code cod
[all...]
/openjdk10/jdk/src/java.logging/share/classes/java/util/logging/
H A DErrorManager.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).
81 * @param code an error code defined in ErrorManager
83 public synchronized void error(String msg, Exception ex, int code) { argument
90 String text = "java.util.logging.ErrorManager: " + code;

Completed in 418 milliseconds

1234567891011>>