Searched refs:code (Results 51 - 75 of 1698) sorted by relevance

1234567891011>>

/openjdk10/jdk/src/java.desktop/share/classes/com/sun/beans/finder/
H A DSignature.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).
40 private volatile int code; field in class:Signature
81 * @return {@code true} if this object is the same as the
82 * {@code object} argument, {@code false} otherwise
101 * This method supports {@code null} values.
105 * @return {@code tru
175 addHashCode(int code, Object object) argument
[all...]
/openjdk10/jdk/src/java.base/share/classes/java/net/
H A DHttpRetryException.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).
46 * Constructs a new {@code HttpRetryException} from the
47 * specified response code and exception detail message
50 * @param code the HTTP response code from server.
52 public HttpRetryException(String detail, int code) { argument
54 responseCode = code;
65 HttpRetryException(String detail, int code, String location) argument
[all...]
/openjdk10/nashorn/test/script/nosecurity/treeapi/
H A Dliteral.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("literal.js", code, "-nse", new (Java.extend(visitor, {
H A Dmodules.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
42 var mod = parseModule("foo", code);
H A DcondExpr.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
41 parse("condExpr.js", code, "-nse", new (Java.extend(visitor, {
H A DdebuggerStat.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
41 parse("debugger.js", code, "-nse", new (Java.extend(visitor, {
H A Dconst.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
40 parse("generator.js", code, "--language=es6", new (Java.extend(visitor_es6, {
H A Derroneous.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
48 parse("erroneous.js", code, "-nse", new (Java.extend(visitor, {
H A Dlet.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
40 parse("let.js", code, "--language=es6", new (Java.extend(visitor_es6, {
/openjdk10/nashorn/test/script/basic/
H A DJDK-8015345.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 checkFunction(code) {
33 Function(code);
34 fail("should have thrown SyntaxError for :" + code);
/openjdk10/nashorn/test/script/nosecurity/
H A Dparser-args.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
41 Parser.create().parse("const.js", code, null)
46 Parser.create("--const-as-var").parse("const.js", code, null)
51 var code = <<EOF
62 Parser.create("-nse").parse("const.js", code, null)
68 Parser.create().parse("extension.js", code, null)
/openjdk10/nashorn/test/script/sandbox/
H A DNASHORN-525.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("SecurityException expected for : " + code);
/openjdk10/hotspot/src/share/vm/interpreter/
H A DbytecodeStream.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).
29 Bytecodes::Code RawBytecodeStream::raw_next_special(Bytecodes::Code code) { argument
37 code = Bytecodes::_illegal;
43 if (code == Bytecodes::_wide) {
45 code = Bytecodes::_illegal;
47 code = (Bytecodes::Code)bcp[1];
52 _raw_code = code;
53 return code;
[all...]
/openjdk10/langtools/test/jdk/jshell/
H A DExpectedDiagnostic.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).
31 private final String code; field in class:ExpectedDiagnostic
40 String code, long startPosition, long endPosition,
43 this.code = code;
57 return code;
81 String code = diagnostic.getCode();
82 assertEquals(code, thi
39 ExpectedDiagnostic( String code, long startPosition, long endPosition, long position, long lineNumber, long columnNumber, Diagnostic.Kind kind) argument
[all...]
/openjdk10/langtools/src/jdk.jdeps/share/classes/com/sun/tools/classfile/
H A DCode_attribute.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).
36 * If you write code that depends on this, you do so at your own risk.
37 * This code and its internal interfaces are subject to change or
62 code = new byte[code_length];
63 cr.readFully(code);
72 if (offset < 0 || offset >= code.length)
74 return code[offse
136 public final byte[] code; field in class:Code_attribute
[all...]
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/meta/
H A DHotSpotDisassemblerProvider.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 org.graalvm.compiler.code.CompilationResult;
26 import org.graalvm.compiler.code.DisassemblerProvider;
29 import jdk.vm.ci.code.CodeCacheProvider;
30 import jdk.vm.ci.code.InstalledCode;
45 public String disassembleInstalledCode(CodeCacheProvider codeCache, CompilationResult compResult, InstalledCode code) { argument
46 return ((HotSpotCodeCacheProvider) codeCache).disassemble(code);
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.code/src/org/graalvm/compiler/code/
H A DDisassemblerProvider.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 org.graalvm.compiler.code;
25 import jdk.vm.ci.code.CodeCacheProvider;
26 import jdk.vm.ci.code.InstalledCode;
29 * Interface providing capability for disassembling machine code.
36 * @param codeCache the object used for code {@link CodeCacheProvider#addCode code installation}
38 * @return a non-zero length string containing a disassembly of {@code compResul
[all...]
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/code/
H A DDebugInfoReadStream.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;
35 private NMethod code; field in class:DebugInfoReadStream
39 public DebugInfoReadStream(NMethod code, int offset) { argument
40 super(code.scopesDataBegin(), offset);
42 this.code = code;
46 public DebugInfoReadStream(NMethod code, in argument
[all...]
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/runtime/resources/
H A Dparser.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).
25 * Parse function returns a JSON object representing ECMAScript code passed.
26 * name is optional name for the code source and location param tells whether to
39 function parse(/*code, [name], [location]*/) {
40 var code, name = "<unknown>", location = false;
47 code = arguments[0];
50 var jsonStr = Packages.jdk.nashorn.api.scripting.ScriptUtils.parse(code, name, location);
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases/src/org/graalvm/compiler/phases/tiers/
H A DTargetProvider.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.TargetDescription;
/openjdk10/hotspot/src/jdk.internal.vm.ci/share/classes/jdk.vm.ci.code/src/jdk/vm/ci/code/stack/
H A DInspectedFrameVisitor.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.stack;
/openjdk10/hotspot/src/jdk.internal.vm.ci/share/classes/jdk.vm.ci.code/src/jdk/vm/ci/code/site/
H A DReference.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;
26 * Represents some external data that is referenced by the code.
H A DInfopointReason.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;
/openjdk10/hotspot/src/cpu/zero/vm/
H A Dassembler_zero.hpp6 * This code is free software; you can redistribute it and/or modify it
10 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * accompanied this code).
36 Assembler(CodeBuffer* code) : AbstractAssembler(code) {} argument
44 MacroAssembler(CodeBuffer* code) : Assembler(code) {} argument
/openjdk10/jdk/src/java.desktop/macosx/classes/sun/font/
H A DCCompositeGlyphMapper.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).
58 // The CFont Mappers will return a negative code
94 int code = unicodes[i]; // char is unsigned.
96 if (code >= HI_SURROGATE_START &&
97 code <= HI_SURROGATE_END && i < count - 1) {
102 code = (code
[all...]

Completed in 122 milliseconds

1234567891011>>