Searched refs:from (Results 101 - 125 of 627) sorted by relevance

1234567891011>>

/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xalan/internal/xsltc/dom/
H A DSingleNodeCounter.java86 int from = next;
89 // Target found, but need to check if ancestor matches from
90 while ((from = _document.getParent(from)) > END) {
91 if (matchesFrom(from)) {
92 break; // found from
97 // Have we found ancestor matching from?
98 if (from != END) {
/openjdk10/jdk/src/java.desktop/share/classes/javax/sound/sampled/
H A DFloatControl.java110 * which the control can change from one discrete value to the next
169 * which the control can change from one discrete value to the next
294 * return -1 from this method.
305 * Changes the control value from the initial value to the final value
312 * @param from initial value at the beginning of the shift
315 * @throws IllegalArgumentException if either {@code from} or {@code to}
319 public void shift(float from, float to, int microseconds) { argument
320 // test "from" value, "to" value will be tested by setValue()
321 if (from < minimum) {
322 throw new IllegalArgumentException("Requested value " + from
[all...]
/openjdk10/jdk/src/java.desktop/share/native/libfontmanager/layout/
H A DLEGlyphStorage.h382 * from the source position to the target position, and also allows for a marker bit
467 * in <code>from</code>. Set the glyph array pointer
468 * in <code>from</code> to <code>NULL</code>.
470 * @param from the <code>LEGlyphStorage</code> object from which
475 void adoptGlyphArray(LEGlyphStorage &from);
479 * in <code>from</code>. Set the char indices array pointer
480 * in <code>from</code> to <code>NULL</code>.
482 * @param from the <code>LEGlyphStorage</code> object from whic
[all...]
H A DLEGlyphStorage.cpp481 void LEGlyphStorage::adoptGlyphArray(LEGlyphStorage &from) argument
487 fGlyphs = from.fGlyphs;
488 from.fGlyphs = NULL;
494 fInsertionList = from.fInsertionList;
495 from.fInsertionList = NULL;
498 void LEGlyphStorage::adoptCharIndicesArray(LEGlyphStorage &from) argument
504 fCharIndices = from.fCharIndices;
505 from.fCharIndices = NULL;
508 void LEGlyphStorage::adoptPositionArray(LEGlyphStorage &from) argument
514 fPositions = from
518 adoptAuxDataArray(LEGlyphStorage &from) argument
528 adoptGlyphCount(LEGlyphStorage &from) argument
[all...]
/openjdk10/jdk/src/java.security.jgss/share/classes/sun/security/krb5/
H A DKrbKdcRep.java86 if ((req.reqBody.from == null) || req.reqBody.from.isZero()) {
95 if ((req.reqBody.from != null) && !req.reqBody.from.isZero()) {
98 !req.reqBody.from.equals(rep.encKDCRepPart.starttime)) {
H A DKrbAsReq.java57 KerberosTime from, // ok
80 // if (from == null)
83 if (from != null) from = null;
145 from,
53 KrbAsReq(EncryptionKey pakey, KDCOptions options, PrincipalName cname, PrincipalName sname, KerberosTime from, KerberosTime till, KerberosTime rtime, int[] eTypes, HostAddresses addresses ) argument
/openjdk10/hotspot/src/share/tools/hsdis/
H A Dhsdis-demo.c213 void disassemble(uintptr_t from, uintptr_t to) { argument
225 printf("\nDecoding from %p to %p...with %s\n", from, to, DECODE_INSTRUCTIONS_VIRTUAL_NAME);
227 res = (*decode_instructions_v)(from, to,
228 (unsigned char*)from, to - from,
233 res = (*decode_instructions_v)(from, to,
234 (unsigned char*)from, to - from,
244 printf("\nDecoding from
[all...]
/openjdk10/langtools/test/tools/sjavac/
H A DSJavacTester.java78 " // from outside of this source file, therefore it is ok.\n"+
136 void verifyThatFilesHaveBeenRemoved(Map<String,Long> from, argument
140 Set<String> froms = from.keySet();
159 throw new Exception("Expected "+f+" to have been removed from the new state!");
168 void verifyThatFilesHaveBeenAdded(Map<String,Long> from, argument
172 Set<String> froms = from.keySet();
200 void verifyNewerFiles(Map<String,Long> from, argument
203 if (!from.keySet().equals(to.keySet())) {
210 for (String fn : from.keySet()) {
211 long f = from
234 verifyEqual(Map<String,Long> from, Map<String,Long> to) argument
[all...]
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/lookup/
H A DLookup.java140 * @param from old argument type, the new one is given by the sent method handle
143 public static MethodHandle filterArgumentType(final MethodHandle mh, final int n, final Class<?> from) { argument
146 if (from == int.class) {
148 } else if (from == long.class) {
153 } else if (from == double.class) {
160 } else if (!from.isPrimitive()) {
171 assert false : "unsupported Lookup.filterReturnType type " + from + " -> " + to;
175 return MH.explicitCastArguments(mh, mh.type().changeParameterType(n, from));
/openjdk10/jdk/src/demo/share/jfc/TableExample/
H A DTableSorter.java17 * from this software without specific prior written permission.
111 /* We copy all returned values from the getValue call in case
252 public void shuttlesort(int from[], int to[], int low, int high) { argument
257 shuttlesort(to, from, low, middle);
258 shuttlesort(to, from, middle, high);
278 if (high - low >= 4 && compare(from[middle - 1], from[middle]) <= 0) {
279 System.arraycopy(from, low, to, low, high - low);
286 if (q >= high || (p < middle && compare(from[p], from[
[all...]
/openjdk10/jdk/test/java/text/Format/NumberFormat/
H A DBigDecimalParse.java424 static final String[] from = { field in class:BigDecimalParse
487 parsed = mf.parse(from[i], pp);
492 pp.getErrorIndex() + " for " + from[i]);
498 " for " + from[i]);
505 checkType(from[i], getType(new BigDecimal(expected1[i])),
507 checkParse(from[i], new BigDecimal(expected1[i]),
535 * Should keep in mind that the expected result is different from
574 parsed = mf.parse(from[i], pp);
580 " for " + from[i]);
586 " for " + from[
663 check(String from, Number to) argument
[all...]
/openjdk10/hotspot/src/os_cpu/bsd_x86/vm/
H A Dbsd_x86_32.s37 # from server-compiler-generated code via CallLeafNoFP,
58 # ported from solaris_x86_32.s
75 # Support for void Copy::conjoint_bytes(void* from,
84 movl 8+ 4(%esp),%esi # from
87 leal -1(%esi,%ecx),%eax # from + count - 1
91 # copy from low to high
140 # copy from high to low
144 movl %eax,%esi # from + count - 1
146 subl $3,%esi # from + count - 4
181 # Support for void Copy::arrayof_conjoint_bytes(void* from,
[all...]
/openjdk10/hotspot/src/os_cpu/linux_aarch64/vm/
H A Dos_linux_aarch64.cpp415 // Handle signal from NativeJump::patch_verified_entry().
425 // BugId 4454115: A read from a MappedByteBuffer can fault
662 void _Copy_conjoint_jshorts_atomic(jshort* from, jshort* to, size_t count) { argument
663 if (from > to) {
664 jshort *end = from + count;
665 while (from < end)
666 *(to++) = *(from++);
668 else if (from < to) {
669 jshort *end = from;
670 from
676 _Copy_conjoint_jints_atomic(jint* from, jint* to, size_t count) argument
690 _Copy_conjoint_jlongs_atomic(jlong* from, jlong* to, size_t count) argument
705 _Copy_arrayof_conjoint_bytes(HeapWord* from, HeapWord* to, size_t count) argument
710 _Copy_arrayof_conjoint_jshorts(HeapWord* from, HeapWord* to, size_t count) argument
715 _Copy_arrayof_conjoint_jints(HeapWord* from, HeapWord* to, size_t count) argument
720 _Copy_arrayof_conjoint_jlongs(HeapWord* from, HeapWord* to, size_t count) argument
[all...]
/openjdk10/hotspot/src/os_cpu/linux_x86/vm/
H A Dlinux_x86_32.s26 # from server-compiler-generated code via CallLeafNoFP,
54 # Support for void Copy::conjoint_bytes(void* from,
63 movl 8+ 4(%esp),%esi # from
66 leal -1(%esi,%ecx),%eax # from + count - 1
70 # copy from low to high
119 # copy from high to low
123 movl %eax,%esi # from + count - 1
125 subl $3,%esi # from + count - 4
160 # Support for void Copy::arrayof_conjoint_bytes(void* from,
171 movl 8+ 4(%esp),%esi # from
[all...]
/openjdk10/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/api/addressing/
H A DOneWayFeature.java49 * to be added for all messages that are sent from the port configured with
68 private WSEndpointReference from; field in class:OneWayFeature
107 * @param from specifies the {@link WSEndpointReference} of wsa:From header.
110 @FeatureConstructor({"enabled","replyTo","from","relatesTo"})
111 public OneWayFeature(boolean enabled, WSEndpointReference replyTo, WSEndpointReference from, String relatesTo) { argument
114 this.from = from;
186 return from;
195 this.from = address;
/openjdk10/jdk/test/com/sun/jdi/
H A DLambdaStepTest.java46 String from = "default";
47 System.out.println("Hello from " + from);
52 String from = "test";
53 System.out.println("Hello from " + from);
61 String from = "lambda";
62 System.out.println("Hello from " + from);
74 System.out.println("Goodbye from LambdaStepTestTar
[all...]
/openjdk10/jdk/test/java/util/Arrays/
H A DCorrect.java77 static void stupidSort(Integer[] a1, int from, int to) { argument
78 if (from > to - 1 )
81 for (int x=from; x<to; x++) {
96 static void stupidSort(Integer[] a1, int from, int to, Comparator<Integer> comparator) { argument
97 if (from > to - 1 )
100 for (int x=from; x<to; x++) {
/openjdk10/jdk/test/java/util/Calendar/
H A DJavatimeTest.java27 *@summary Test those bridge methods to/from java.time date/time classes
66 || !jud.equals(Date.from(inst0))) {
71 Date jud0 = Date.from(inst_ms);
87 || !cal.equals(GregorianCalendar.from(zdt0))) {
90 System.out.println("calNew:" + GregorianCalendar.from(zdt0));
100 GregorianCalendar cal0 = GregorianCalendar.from(zdt);
102 || !zdt.equals(GregorianCalendar.from(zdt).toZonedDateTime())) {
/openjdk10/nashorn/test/script/basic/
H A Djavaarrayconversion.js126 // Yep, even if we have valueOf, toString from prototype takes precedence
175 var jsIntArray = Java.from(intArray)
190 var jsByteArray = Java.from(byteArray)
198 var jsShortArray = Java.from(shortArray)
206 var jsFloatArray = Java.from(floatArray)
215 var jsCharArray = Java.from(charArray)
224 var jsBooleanArray = Java.from(booleanArray)
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/lsra/ssa/
H A DSSALinearScanEliminateSpillMovePhase.java69 if ((toInterval.from() & 1) == 1) {
76 LIRInstruction op = allocator.instructionForId(toInterval.from());
80 AbstractBlockBase<?> intStartBlock = allocator.blockForId(toInterval.from());
/openjdk10/hotspot/src/share/tools/IdealGraphVisualizer/ControlFlow/src/com/sun/hotspot/igv/controlflow/
H A DBlockConnectionWidget.java47 private BlockWidget from; field in class:BlockConnectionWidget
60 this.from = (BlockWidget) scene.findWidget(edge.getFrom());
63 outputSlot = from.getOutputSlot();
114 return "Connection[ " + from.toString() + " - " + to.toString() + "]";
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.printer/src/org/graalvm/compiler/printer/
H A DBasicIdealGraphPrinter.java44 final String from; field in class:BasicIdealGraphPrinter.Edge
50 public Edge(String from, int fromIndex, String to, int toIndex, String label) { argument
51 assert (from != null && to != null);
52 this.from = from;
61 int h = from.hashCode() ^ to.hashCode();
77 return from.equals(other.from) && fromIndex == other.fromIndex && to.equals(other.to) && toIndex == other.toIndex &&
209 stream.printf(" <edge from='%s' fromIndex='%d' to='%s' toIndex='%d' label='%s' />%n", escape(edge.from), edg
[all...]
/openjdk10/hotspot/src/share/vm/gc/g1/
H A Dg1RemSet.hpp100 // Process all oops in the collection set from the cards in the refinement buffers and
117 // Record, if necessary, the fact that *p (where "p" is in region "from",
119 template <class T> void par_write_ref(HeapRegion* from, T* p, uint tid);
134 // Print accumulated summary info from the start of the VM.
137 // Print accumulated summary info from the last time called.
206 void set_from(HeapRegion* from) { argument
207 assert(from != NULL, "from region must be non-NULL");
208 _from = from;
/openjdk10/jdk/src/java.desktop/share/classes/javax/sound/midi/
H A DSynthesizer.java40 * instruments from soundbanks. An instrument is a specification for
50 * To see whether the instruments from a certain soundbank can be played by a
134 * instruments from the specified soundbank. If the soundbank is
135 * unsupported, any attempts to load instruments from it will result in an
194 * {@code from}.
196 * For example, if {@code from} was located at bank number 2, program number
200 * If the function succeeds, instrument {@code from} is unloaded.
202 * To cancel the remapping reload instrument {@code from} by invoking one of
206 * @param from the {@code Instrument} object to be replaced
211 * @throws IllegalArgumentException if instrument {@code from} o
220 remapInstrument(Instrument from, Instrument to) argument
[all...]
/openjdk10/hotspot/src/share/vm/services/
H A DmallocTracker.cpp54 // from total chunks to get total free chunk size
107 bool MallocTracker::transition(NMT_TrackingLevel from, NMT_TrackingLevel to) { argument
108 assert(from != NMT_off, "Can not transition from off state");
110 assert (from != NMT_minimal, "cannot transition from minimal state");
112 if (from == NMT_detail) {

Completed in 326 milliseconds

1234567891011>>