Searched refs:from (Results 226 - 250 of 627) sorted by relevance

1234567891011>>

/openjdk10/langtools/src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/util/
H A DDocPath.java50 * Create a path from a string.
109 * Return the relative path from one package to another.
111 public static DocPath relativePath(PackageElement from, PackageElement to) { argument
112 return forRoot(from).resolve(forPackage(to));
/openjdk10/jdk/src/java.base/share/classes/java/text/
H A DRBCollationTables.java90 * from gaining direct access to the internals of this class.
134 * was created from.
164 //get contract values from contractTable by index
226 * Get the comarison order of a character from the collation table.
246 static void reverse (StringBuffer result, int from, int to) argument
248 int i = from;
/openjdk10/jdk/test/java/nio/channels/FileChannel/
H A DExpandingMap.java117 static void fillBuffer(ByteBuffer buf, int from) { argument
119 for (int i=from; i<limit; i++) {
/openjdk10/jdk/test/java/nio/file/attribute/BasicFileAttributeView/
H A DCreationTime.java93 Files.setLastModifiedTime(file, FileTime.from(plusHour));
106 creationTime = FileTime.from(minusHour);
/openjdk10/jdk/test/tools/jar/index/
H A DMetaInf.java54 static void copy(File from, File to) throws IOException { argument
55 FileInputStream in = new FileInputStream(from);
/openjdk10/langtools/test/tools/javac/
H A DT6358168.java78 JavacTask task = tool.getTask(null, fm, null, List.from(args), null, files, context);
87 System.err.println("Exception from compiler (expected): " + e);
102 JavacTask task = tool.getTask(null, fm, null, List.from(args), null, files, context);
111 System.err.println("Exception from compiler (expected): " + e);
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/runtime/regexp/joni/
H A DBitSet.java73 public void setRange(final int from, final int to) { argument
74 for (int i=from; i<=to && i < SINGLE_BYTE_SIZE; i++) {
/openjdk10/nashorn/src/jdk.dynalink/share/classes/jdk/dynalink/
H A DLinkerServicesImpl.java68 contributors may be used to endorse or promote products derived from
125 public boolean canConvert(final Class<?> from, final Class<?> to) { argument
126 return typeConverterFactory.canConvert(from, to);
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/bu/
H A DBottomUpAllocator.java107 * Maps from {@link Variable#index} to a spill stack slot. If
247 * Maps from {@linkplain Register#number register} to the current {@linkplain Variable
252 * Maps from {@linkplain Variable#index variable} to its current location.
271 // we start at offset 2 to distinguish if from the default value
324 debug.log("Block end op. No from %s to %s necessary.", src, dst);
382 private void resolvePhis(AbstractBlockBase<?> from, AbstractBlockBase<?> to) { argument
384 JumpOp jump = SSAUtil.phiOut(getLIR(), from);
393 ArrayList<LIRInstruction> instructions = getLIR().getLIRforBlock(from);
407 // insert move from constant
411 // insert move from variabl
447 resolveLoopBackEdge(AbstractBlockBase<?> from, AbstractBlockBase<?> to) argument
466 resolveIntraTraceEdge(AbstractBlockBase<?> from, AbstractBlockBase<?> to) argument
473 resolveTraceEdge(AbstractBlockBase<?> from, AbstractBlockBase<?> to) argument
[all...]
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/stackslotalloc/
H A DStackIntervalDumper.java53 visitor.visitRange(interval.from(), interval.to());
/openjdk10/hotspot/src/share/tools/IdealGraphVisualizer/Data/src/com/sun/hotspot/igv/data/
H A DInputGraph.java90 int from = e.getFrom();
91 InputNode fromNode = this.getNode(from);
146 public void setEdge(int fromIndex, int toIndex, int from, int to) { argument
150 InputEdge edge = new InputEdge((char)fromIndex, (char)toIndex, from, to);
/openjdk10/hotspot/src/cpu/sparc/vm/
H A DinterpreterRT_sparc.cpp130 enum { // We need to differenciate float from non floats in reg args
144 // pass address of from
179 SlowSignatureHandler(const methodHandle& method, address from, intptr_t* to, intptr_t *RegArgSig) : NativeSignatureIterator(method) { argument
180 _from = from;
192 intptr_t* from,
199 SlowSignatureHandler(m, (address)from, m->is_static() ? to+2 : to+1, to).iterate((uint64_t)CONST64(-1));
/openjdk10/hotspot/src/share/vm/prims/
H A DjvmtiManageCapabilities.hpp81 static void copy_capabilities(const jvmtiCapabilities *from, jvmtiCapabilities *to);
/openjdk10/jdk/src/java.base/share/classes/java/time/chrono/
H A DChronology.java47 * may be used to endorse or promote products derived from this software
166 * Obtains an instance of {@code Chronology} from a temporal object.
176 * allowing it to be used as a query via method reference, {@code Chronology::from}.
182 static Chronology from(TemporalAccessor temporal) { method in interface:Chronology
190 * Obtains an instance of {@code Chronology} from a locale.
210 * Note that the behavior of this method differs from the older
235 * Obtains an instance of {@code Chronology} from a chronology ID or
248 * cutover dates from the Julian, but the lookup only provides the default cutover date.
301 * Obtains a local date in this chronology from the era, year-of-era,
321 * Obtains a local date in this chronology from th
[all...]
/openjdk10/jdk/src/jdk.management/share/classes/com/sun/management/
H A DVMOption.java33 * where the value came from which is referred as its
61 * value of a VM option came from.
113 * @param origin where the value of a VM option came from.
125 * Constructs a {@code VMOption} object from a
160 * where the value of this VM option came from.
162 * @return where the value of this VM option came from.
231 public static VMOption from(CompositeData cd) { method in class:VMOption
H A DGarbageCollectionNotificationInfo.java56 * The {@link #from from} method is provided to convert from
70 * GarbageCollectionNotificationInfo info = GarbageCollectionNotificationInfo.from(cd);
222 public static GarbageCollectionNotificationInfo from(CompositeData cd) { method in class:GarbageCollectionNotificationInfo
/openjdk10/jdk/test/java/net/MulticastSocket/
H A DSetOutgoingIf.java140 // from the expected network interface
162 // now check which network interface this packet comes from
163 NetworkInterface from = NetworkInterface.getByInetAddress(packet.getAddress());
165 if (from != null) {
166 if (!from.equals(shouldbe)) {
168 + group + " should come from "
169 + shouldbe.getName() + ", but came from "
170 + from.getName());
/openjdk10/jdk/src/java.management/share/classes/java/lang/management/
H A DMemoryUsage.java48 * the Java virtual machine requests from the operating system
50 * may request additional memory from the operating system and
107 * with attributes as specified in the {@link #from from} method.
177 * Constructs a {@code MemoryUsage} object from a
192 * initially requests from the operating system for memory management.
298 public static MemoryUsage from(CompositeData cd) { method in class:MemoryUsage
/openjdk10/jdk/test/sun/net/ftp/
H A DB6427768.java102 public boolean rename(String from, String to) { argument
/openjdk10/jdk/test/sun/management/StackTraceElementCompositeData/
H A DCompatibilityTest.java60 StackTraceElement ste = StackTraceElementCompositeData.from(compositeDataV6);
/openjdk10/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/util/
H A DGraphUtils.java63 * Visitor action for a dependency between 'from' and 'to' with given kind.
65 public abstract void visitDependency(DependencyKind dk, N from, N to, A arg); argument
166 /** Stack of all reacheable nodes from given root. */
186 //this node is already reachable from current root
239 public void visitDependency(DependencyKind dk, N from, N to, StringBuilder buf) { argument
240 buf.append(String.format("%s -> %s", from.hashCode(), to.hashCode()));
241 buf.append(formatProperties(from.dependencyAttributes(to, dk)));
/openjdk10/nashorn/test/script/basic/
H A DJDK-8026701.js52 return (typeof Java === "undefined") ? array : Java.from(Java.to(array, type));
H A DNASHORN-556.js157 var j = Java.from(Java.to([23,37,42,86,47], "long[]"));
167 j = Java.from(Java.to([23,37,42,86,47], "long[]"));
170 j = Java.from(Java.to([23,37,42,86,47], "long[]"));
172 j = Java.from(Java.to([23,37,42,86,47], "long[]"));
/openjdk10/nashorn/samples/
H A Dbrowser_dom.js19 * from this software without specific prior written permission.
60 Button from the input html<br>
/openjdk10/nashorn/src/jdk.dynalink/share/classes/jdk/dynalink/linker/
H A DLinkerServices.java68 contributors may be used to endorse or promote products derived from
157 * @param sourceType the type to convert from
169 * at runtime for all values (especially if the "from" or "to" types are
172 * @param from the source type for the conversion
176 public boolean canConvert(Class<?> from, Class<?> to); argument
197 * Determines which of the two type conversions from a source type to the
213 * them to prevent them from escaping, potentially by wrapping them. It can

Completed in 226 milliseconds

1234567891011>>