Searched defs:destination (Results 1 - 25 of 40) sorted by relevance

12

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DVoidValueImpl.java47 ValueImpl prepareForAssignmentTo(ValueContainer destination) argument
H A DArrayTypeImpl.java110 static boolean isComponentAssignable(Type destination, Type source) { argument
114 return source.equals(destination);
116 if (destination instanceof PrimitiveType) {
121 ReferenceTypeImpl refDestination = (ReferenceTypeImpl)destination;
/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DliveRange.hpp51 void move_to(HeapWord* destination) { argument
52 Copy::aligned_conjoint_words(start(), destination, word_size()); local
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DValueImpl.java37 ValueContainer destination)
43 if (destination.signature().length() == 1) {
48 return ((ValueImpl)value).prepareForAssignmentTo(destination);
60 abstract ValueImpl prepareForAssignmentTo(ValueContainer destination) argument
36 prepareForAssignment(Value value, ValueContainer destination) argument
H A DVoidValueImpl.java51 ValueImpl prepareForAssignmentTo(ValueContainer destination) argument
53 if ("void".equals(destination.typeName())) {
H A DPrimitiveValueImpl.java94 ValueImpl prepareForAssignmentTo(ValueContainer destination) argument
97 return convertForAssignmentTo(destination);
100 ValueImpl convertForAssignmentTo(ValueContainer destination) argument
106 if (destination.signature().length() > 1) {
110 if ((destination.signature().charAt(0) == 'Z') &&
115 if ((destination.signature().charAt(0) != 'Z') &&
120 if ("void".equals(destination.typeName())) {
125 PrimitiveTypeImpl primitiveType = (PrimitiveTypeImpl)destination.type();
129 destination.typeName());
H A DArrayReferenceImpl.java214 void validateAssignment(ValueContainer destination) argument
217 super.validateAssignment(destination);
230 destination.signature());
236 * Remove all dimensions from the destination. Remove
244 destination.findType(destComponentSignature);
257 destination.typeName());
H A DArrayTypeImpl.java109 static boolean isComponentAssignable(Type destination, Type source) { argument
113 return source.equals(destination);
115 if (destination instanceof PrimitiveType) {
120 ReferenceTypeImpl refDestination = (ReferenceTypeImpl)destination;
H A DObjectReferenceImpl.java553 ValueImpl prepareForAssignmentTo(ValueContainer destination) argument
557 validateAssignment(destination);
561 void validateAssignment(ValueContainer destination) argument
565 * Do these simpler checks before attempting a query of the destination's
567 * the destination is primitive or an array.
572 if (destination.signature().length() == 1) {
575 if ((destination.signature().charAt(0) == '[') &&
579 if ("void".equals(destination.typeName())) {
584 ReferenceType destType = (ReferenceTypeImpl)destination.type();
H A DEventSetImpl.java120 EventDestination destination() { method in class:EventSetImpl.EventImpl
637 switch (evt.destination()) {
658 throw new InternalException("Invalid event destination");
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DModelConnectionBlock.java31 * to a destination variable.
40 // source1 * source2 * scale -> destination
45 private ModelDestination destination; field in class:ModelConnectionBlock
50 public ModelConnectionBlock(double scale, ModelDestination destination) { argument
52 this.destination = destination;
56 ModelDestination destination) {
61 this.destination = destination;
65 ModelDestination destination) {
55 ModelConnectionBlock(ModelSource source, ModelDestination destination) argument
64 ModelConnectionBlock(ModelSource source, double scale, ModelDestination destination) argument
74 ModelConnectionBlock(ModelSource source, ModelSource control, ModelDestination destination) argument
89 ModelConnectionBlock(ModelSource source, ModelSource control, double scale, ModelDestination destination) argument
109 setDestination(ModelDestination destination) argument
[all...]
H A DModelDestination.java92 private ModelIdentifier destination = DESTINATION_NONE; field in class:ModelDestination
99 destination = id;
103 return destination;
106 public void setIdentifier(ModelIdentifier destination) { argument
107 this.destination = destination;
H A DDLSModulator.java30 * a destination. For example a note on velocity
107 int destination; field in class:DLSModulator
120 public static int getDestinationFormat(int destination) { argument
122 if (destination == CONN_DST_GAIN)
124 if (destination == CONN_DST_PITCH)
126 if (destination == CONN_DST_PAN)
129 if (destination == CONN_DST_LFO_FREQUENCY)
131 if (destination == CONN_DST_LFO_STARTDELAY)
134 if (destination == CONN_DST_EG1_ATTACKTIME)
136 if (destination
196 getDestinationName(int destination) argument
316 setDestination(int destination) argument
[all...]
/openjdk7/jaxp/src/org/w3c/dom/ls/
H A DLSSerializer.java406 * @param destination The destination for the serialized DOM.
419 LSOutput destination)
418 write(Node nodeArg, LSOutput destination) argument
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/x86/
H A DX86MoveInstruction.java32 private X86Register destination; field in class:X86MoveInstruction
37 this.destination = rd;
44 buf.append(destination.toString());
67 return destination;
/openjdk7/jdk/src/share/classes/javax/imageio/
H A DImageReadParam.java44 * <code>SampleModel</code> of the destination image, either by
60 * being decoded from the stream and the destination
66 * resulting rectangle intersected with the actual valid destination
67 * area to yield the destination area that will be written.
93 * destination bounds. If no destination image has been set, the
94 * destination is defined to have a width of
98 * destination.
100 * <p> Pixels that land, after subsampling, within the destination
107 * destination band
159 protected BufferedImage destination = null; field in class:ImageReadParam
231 setDestination(BufferedImage destination) argument
[all...]
/openjdk7/jdk/src/share/classes/java/lang/
H A DProcessBuilder.java83 * <li><a name="redirect-output">a destination for <i>standard output</i>
113 * to the same destination (this makes it easier to correlate error
115 * <li>the common destination of standard error and standard output can be
439 * Represents a source of subprocess input or a destination of
517 * Indicates that subprocess I/O source or destination will be the
532 * Returns the {@link File} source or destination associated
541 * When redirected to a destination file, indicates if the output
708 * Sets this process builder's standard output destination.
711 * method send their standard output to this destination.
713 * <p>If the destination i
729 redirectOutput(Redirect destination) argument
763 redirectError(Redirect destination) argument
[all...]
/openjdk7/hotspot/src/share/vm/code/
H A DicBuffer.cpp71 ic->set_ic_destination(destination());
76 address ICStub::destination() const { function in class:ICStub
93 assert(destination() == dest_addr, "can recover destination");
94 assert(cached_oop() == cached_value, "can recover destination");
207 return stub->destination();
/openjdk7/hotspot/src/cpu/zero/vm/
H A DsharedRuntime_zero.cpp131 RuntimeStub* SharedRuntime::generate_resolve_blob(address destination, const char* name) { argument
H A DnativeInst_zero.hpp83 address destination() const { function in class:NativeCall
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serialize/
H A DDOMSerializerImpl.java505 StringWriter destination = new StringWriter();
509 ser.setOutputCharStream(destination);
559 return destination.toString();
681 * @param destination The destination for the serialized DOM.
686 public boolean write(Node node, LSOutput destination) throws LSException{ argument
721 if ((encoding = destination.getEncoding()) == null) {
749 OutputStream outputStream = destination.getByteStream();
750 Writer writer = destination.getCharacterStream();
751 String uri = destination
[all...]
/openjdk7/hotspot/src/cpu/x86/vm/
H A DnativeInst_x86.cpp53 address NativeCall::destination() const { function in class:NativeCall
54 // Getting the destination of a call isn't safe because that call can
64 instruction_address(), destination());
128 // Similar to replace_mt_safe, but just changes the destination. The
153 guarantee(!os::is_MP() || is_aligned, "destination must be aligned");
156 // Simple case: The destination lies within a single cache line.
204 guarantee(destination() == dest, "patch succeeded");
/openjdk7/jdk/src/macosx/bundle/appbundler/src/com/oracle/appbundler/
H A DAppBundlerTask.java186 throw new IllegalStateException("Invalid destination directory.");
470 private static void copy(File source, File destination) throws IOException { argument
472 Path destinationPath = destination.toPath();
481 copy(new File(source, file), new File(destination, file));
/openjdk7/jdk/src/share/classes/javax/swing/text/rtf/
H A DRTFReader.java59 * is the current rtf destination. It is cached in an instance
144 * @param destination The TextAcceptor which is to receive the text.
146 public RTFReader(StyledDocument destination) argument
150 target = destination;
197 warning("Text with no destination. oops.");
208 * the current destination a chance to save its own state.
235 * destination.
248 rtfDestination.close(); /* allow the destination to clean up */
259 /* Check that setting the destination won't close the
260 current destination (shoul
[all...]
/openjdk7/jdk/src/share/classes/java/awt/
H A DJobAttributes.java32 * destination, print dialog, file and printer names, page ranges, multiple
246 private DestinationType destination; field in class:JobAttributes
301 * @param destination <code>DesintationType.FILE</code> or
336 DestinationType destination, DialogType dialog,
342 setDestination(destination);
377 destination = obj.destination;
468 return destination;
476 * @param destination DesintationType.FILE or DesintationType.PRINTER.
477 * @throws IllegalArgumentException if destination i
335 JobAttributes(int copies, DefaultSelectionType defaultSelection, DestinationType destination, DialogType dialog, String fileName, int maxPage, int minPage, MultipleDocumentHandlingType multipleDocumentHandling, int[][] pageRanges, String printer, SidesType sides) argument
479 setDestination(DestinationType destination) argument
[all...]

Completed in 152 milliseconds

12