Searched refs:code (Results 226 - 250 of 1698) sorted by relevance

1234567891011>>

/openjdk10/hotspot/src/jdk.internal.vm.ci/share/classes/jdk.vm.ci.code/src/jdk/vm/ci/code/site/
H A DSite.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.site;
28 * Represents a code position with associated additional information.
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/interpreter/
H A DBytecodeWideable.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).
41 return (isWide()) ? getIndexU2(code(), true) : getIndexU1();
H A DBytecode.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).
57 public boolean hasIndexU4() { return code() == Bytecodes._invokedynamic; }
81 // hotspot byte code
82 public int code() { method in class:Bytecode
86 // jvm byte code
88 return Bytecodes.javaCode(code());
92 return Bytecodes.name(code());
109 if (code() !
[all...]
/openjdk10/hotspot/test/compiler/codecache/jmx/
H A DBeanTypeTest.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).
26 * @summary verify types of code cache memory pool bean
47 import sun.hotspot.code.BlobType;
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xalan/internal/xsltc/compiler/util/
H A DTypeCheckError.java45 public TypeCheckError(String code, Object param) { argument
47 _error = new ErrorMsg(code, param);
50 public TypeCheckError(String code, Object param1, Object param2) { argument
52 _error = new ErrorMsg(code, param1, param2);
/openjdk10/jdk/src/java.base/share/native/libzip/zlib/
H A Dinflate.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).
37 the crc code when it is not needed. For shared libraries, gzip decoding
62 LENLENS, /* i: waiting for code length code lengths */
63 CODELENS, /* i: waiting for length/lit and distance code lengths */
65 LEN, /* i: waiting for length/lit/eob code */
67 DIST, /* i: waiting for distance code */
[all...]
/openjdk10/jdk/src/java.desktop/share/native/libfontmanager/layout/
H A DLEStandalone.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).
67 #define LE_SUCCESS(code) ((code)<=LE_NO_ERROR)
74 #define LE_FAILURE(code) ((code)>LE_NO_ERROR)
/openjdk10/langtools/src/jdk.javadoc/share/classes/com/sun/tools/javadoc/main/
H A DAnnotationTypeDocImpl.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 import com.sun.tools.javac.code.Symbol;
32 import com.sun.tools.javac.code.Symbol.*;
35 import static com.sun.tools.javac.code.Scope.LookupKind.NON_RECURSIVE;
37 import static com.sun.tools.javac.code.Kinds.Kind.*;
43 * If you write code that depends on this, you do so at your own risk.
44 * This code an
[all...]
/openjdk10/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/model/
H A DFilteredMemberList.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 import com.sun.tools.javac.code.Scope;
31 import com.sun.tools.javac.code.Symbol;
34 import static com.sun.tools.javac.code.Flags.*;
35 import static com.sun.tools.javac.code.Scope.LookupKind.NON_RECURSIVE;
43 * If you write code that depends on this, you do so at your own risk.
44 * This code an
[all...]
/openjdk10/langtools/test/tools/javac/
H A DT6972327.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).
44 String code = "\n@interface Test {}";
47 Arrays.asList("-Xjcov"), null, Arrays.asList(new MyFileObject(code)));
53 if (pos != code.indexOf(code.trim()))
/openjdk10/langtools/test/tools/javac/generics/inference/5073060/
H A DGenericsAndPackages.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).
33 package code; package
/openjdk10/nashorn/test/script/nosecurity/
H A DJDK-8185252.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).
95 function parse(name, code, args, visitor, listener) {
96 var tree = parser.create(args).parse(name, code, listener || null)
103 var code = <<EOF
110 parse("JDK-8185252.js", code, "-nse", new (Java.extend(visitor, {
/openjdk10/nashorn/test/script/nosecurity/treeapi/
H A Darrow_params.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
44 parse("arrow_params.js", code, "--language=es6", new (Java.extend(visitor_es6, {
H A DbinaryExpr.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).
35 var code = <<EOF
62 parse("binaryExpr.js", code, "-nse", new (Java.extend(visitor, {
/openjdk10/nashorn/test/src/jdk/nashorn/api/scripting/test/
H A DWindow.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).
64 public static int setTimeout(final Window self, final String code, final int delay) { argument
65 return self.setTimeout(code, delay);
68 public int setTimeout(final String code, final int delay) { argument
69 System.out.println("window.setTimeout: " + delay + ", code: " + code);
/openjdk10/jdk/test/javax/imageio/metadata/IIOMetadataFormat/
H A DMetadataFormatThreadTest.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).
41 String code = args[1];
43 Thread t = createTest(codebase, code);
81 String code) throws Exception {
86 final Thread t = new Thread(new MetadataFormatThreadTest(code));
80 createTest(String codebase, String code) argument
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.api.directives.test/src/org/graalvm/compiler/api/directives/test/
H A DDeoptimizeDirectiveTest.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.InstalledCode;
69 InstalledCode code = getCode(method);
72 actual = new Result(code.executeVarargs(), null);
78 return code.isValid();
85 Assert.assertFalse("code should be invalidated", valid);
92 Assert.assertTrue("code should still be valid", valid);
110 InstalledCode code
[all...]
/openjdk10/hotspot/src/share/tools/IdealGraphVisualizer/Filter/src/com/sun/hotspot/igv/filter/
H A DCustomFilter.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).
47 private String code; field in class:CustomFilter
50 public CustomFilter(String name, String code) { argument
52 this.code = code;
62 return code;
71 code
[all...]
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/util/
H A DXMLResourceIdentifierImpl.java185 /** Returns a hash code for this object. */
187 int code = 0;
189 code += fPublicId.hashCode();
192 code += fLiteralSystemId.hashCode();
195 code += fBaseSystemId.hashCode();
198 code += fExpandedSystemId.hashCode();
201 code += fNamespace.hashCode();
203 return code;
/openjdk10/hotspot/src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/
H A DCodeSectionProcessor.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).
32 import org.graalvm.compiler.code.CompilationResult;
35 import jdk.vm.ci.code.TargetDescription;
36 import jdk.vm.ci.code.site.Call;
37 import jdk.vm.ci.code.site.Infopoint;
38 import jdk.vm.ci.code.site.InfopointReason;
53 * Method that looks at code section of a compiled result {@code compClas
[all...]
/openjdk10/hotspot/src/share/vm/code/
H A DscopeDesc.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 #include "code/debugInfo.hpp"
29 #include "code/pcDesc.hpp"
44 SimpleScopeDesc(CompiledMethod* code, address pc) { argument
45 PcDesc* pc_desc = code->pc_desc_at(pc);
47 DebugInfoReadStream buffer(code, pc_desc->scope_decode_offset());
63 ScopeDesc(const CompiledMethod* code, int decode_offset, int obj_decode_offset, bool reexecute, bool rethrow_exception, bool return_oop);
68 ScopeDesc(const CompiledMethod* code, in
[all...]
/openjdk10/hotspot/test/testlibrary/jittester/src/jdk/test/lib/jittester/
H A DJavaCodeGenerator.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).
32 * Generates java source code from IRTree
56 StringBuilder code = new StringBuilder();
58 code.append(getJtregHeader(mainClassName));
60 code.append(privateClasses.accept(vis));
62 code.append(mainClass.accept(vis));
64 writeFile(generatorDir, mainClassName + ".java", code.toString());
/openjdk10/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/org/objectweb/asm/
H A DAttribute.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).
39 * 1. Redistributions of source code must retain the above copyright
63 * A non standard class, field, method or code attribute.
105 * Returns <tt>true</tt> if this type of attribute is a code attribute.
107 * @return <tt>true</tt> if this type of attribute is a code attribute.
117 * this attribute is not a code attribute that contains labels.
139 * @param codeOff index of the first byte of code'
183 write( final ClassWriter cw, final byte[] code, final int len, final int maxStack, final int maxLocals) argument
231 getSize( final ClassWriter cw, final byte[] code, final int len, final int maxStack, final int maxLocals) argument
268 put( final ClassWriter cw, final byte[] code, final int len, final int maxStack, final int maxLocals, final ByteVector out) argument
[all...]
/openjdk10/jdk/src/java.base/share/classes/jdk/internal/org/objectweb/asm/
H A DAttribute.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).
38 * 1. Redistributions of source code must retain the above copyright
62 * A non standard class, field, method or code attribute.
105 * Returns <tt>true</tt> if this type of attribute is a code attribute.
107 * @return <tt>true</tt> if this type of attribute is a code attribute.
117 * this attribute is not a code attribute that contains labels.
143 * index of the first byte of code'
188 write(final ClassWriter cw, final byte[] code, final int len, final int maxStack, final int maxLocals) argument
236 getSize(final ClassWriter cw, final byte[] code, final int len, final int maxStack, final int maxLocals) argument
274 put(final ClassWriter cw, final byte[] code, final int len, final int maxStack, final int maxLocals, final ByteVector out) argument
[all...]
/openjdk10/langtools/test/tools/javac/types/
H A DScopeListenerTest.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).
29 * @modules jdk.compiler/com.sun.tools.javac.code:+open
34 import com.sun.tools.javac.code.Scope;
35 import com.sun.tools.javac.code.Scope.ScopeListenerList;
36 import com.sun.tools.javac.code.Symbol;
37 import com.sun.tools.javac.code.Symtab;
38 import com.sun.tools.javac.code.Types;

Completed in 381 milliseconds

1234567891011>>