Searched refs:destination (Results 1 - 25 of 54) sorted by relevance

123

/openjdk7/jdk/src/share/classes/com/sun/media/sound/
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...]
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 DSoftChannel.java813 int[] destination, int[] range) {
828 for (int i = 0; i < destination.length; i++) {
829 int d = destination[i];
948 public void mapPolyPressureToDestination(int[] destination, int[] range) { argument
950 if (destination.length == 0) {
957 destination, range);
960 public void mapChannelPressureToDestination(int[] destination, int[] range) { argument
962 if (destination.length == 0) {
969 destination, range);
972 public void mapControlToDestination(int control, int[] destination, in argument
812 createModelConnections(ModelIdentifier sid, int[] destination, int[] range) argument
[all...]
/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 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 DVoidValueImpl.java51 ValueImpl prepareForAssignmentTo(ValueContainer destination) argument
53 if ("void".equals(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 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 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();
/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/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/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/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...]
/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/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();
H A DicBuffer.hpp74 address destination() const; // destination of jump instruction
H A DcompiledIC.cpp100 tty->print_cr(" changing destination to " INTPTR_FORMAT, entry_point);
114 return _ic_call->destination();
123 return InlineCacheBuffer::contains(_ic_call->destination());
131 return _ic_call->destination();
178 // true if destination is megamorphic stub
220 // Call to interpreter if destination is either calling to a stub (if it
224 // must use unsafe because the destination can be a zombie (and we're cleaning)
261 // we only need to patch the destination
412 // - at compile time we may or may not know if the destination is final
413 // - if we know that the destination i
[all...]
/openjdk7/hotspot/src/cpu/sparc/vm/
H A DnativeInst_sparc.hpp147 static int call_instruction(address destination, address pc) { return Assembler::op(Assembler::call_op) | Assembler::wdisp((intptr_t)destination, (intptr_t)pc, 30); } argument
346 address destination);
361 address destination() const { return inv_wdisp(long_at(0), call_displacement_width) + instruction_address(); } function in class:NativeCall
375 friend NativeCall* nativeCall_overwriting_at(address instr, address destination = NULL) {
378 call->set_long_at(0 * BytesPerInstWord, call_instruction(destination, instr));
382 assert(nativeCall_at(instr)->destination() == destination, "correct call destination");
404 nativeCall_at(instr)->destination()
463 address destination() const { function in class:NativeFarCall
538 Register destination() { return inv_rd(long_at(sethi_offset)); } function in class:NativeMovConstReg
597 Register destination() { return inv_rd(long_at(sethi_offset)); } function in class:NativeMovConstRegPatching
[all...]
/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/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DpsParallelCompact.cpp140 HeapWord* destination)
144 assert(destination != NULL, "invalid destination argument");
148 _destination = destination;
154 // Determine the number of destination regions for the partial object.
155 HeapWord* const last_word = destination + partial_obj_size - 1;
157 HeapWord* const beg_region_addr = sd.region_align_down(destination);
161 // One destination region.
163 if (end_region_addr == destination) {
164 // The destination fall
139 record(size_t src_region_idx, size_t partial_obj_size, HeapWord* destination) argument
576 summarize_split_space(size_t src_region, SplitInfo& split_info, HeapWord* destination, HeapWord* target_end, HeapWord** target_next) argument
1380 HeapWord* const destination = cp->destination(); local
[all...]

Completed in 139 milliseconds

123