Home
last modified time | relevance | path

Searched refs:destination (Results 1 – 25 of 148) sorted by relevance

123456

/plugin/jcapture/src/com/hammurapi/jcapture/
DComponentMover.java43 private Component destination; field in ComponentMover
243 destination = destinationComponent; in setupForDragging()
245 destination = source; in setupForDragging()
248 destination = SwingUtilities.getAncestorOfClass(destinationClass, in setupForDragging()
253 location = destination.getLocation(); in setupForDragging()
263 if (destination instanceof JComponent) { in setupForDragging()
264 JComponent jc = (JComponent) destination; in setupForDragging()
303 destination.setLocation(locationX, locationY); in mouseDragged()
347 if (destination instanceof JComponent) { in mouseReleased()
348 ((JComponent) destination).setAutoscrolls(autoscrolls); in mouseReleased()
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Sasportal/
DSasPortalMoveDeviceRequest.php25 public $destination; variable in Google\\Service\\Sasportal\\SasPortalMoveDeviceRequest
30 public function setDestination($destination) argument
32 $this->destination = $destination;
39 return $this->destination;
DSasPortalMoveNodeRequest.php25 public $destination; variable in Google\\Service\\Sasportal\\SasPortalMoveNodeRequest
30 public function setDestination($destination) argument
32 $this->destination = $destination;
39 return $this->destination;
DSasPortalMoveDeploymentRequest.php25 public $destination; variable in Google\\Service\\Sasportal\\SasPortalMoveDeploymentRequest
30 public function setDestination($destination) argument
32 $this->destination = $destination;
39 return $this->destination;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/SASPortalTesting/
DSasPortalMoveDeploymentRequest.php25 public $destination; variable in Google\\Service\\SASPortalTesting\\SasPortalMoveDeploymentRequest
30 public function setDestination($destination) argument
32 $this->destination = $destination;
39 return $this->destination;
DSasPortalMoveNodeRequest.php25 public $destination; variable in Google\\Service\\SASPortalTesting\\SasPortalMoveNodeRequest
30 public function setDestination($destination) argument
32 $this->destination = $destination;
39 return $this->destination;
DSasPortalMoveDeviceRequest.php25 public $destination; variable in Google\\Service\\SASPortalTesting\\SasPortalMoveDeviceRequest
30 public function setDestination($destination) argument
32 $this->destination = $destination;
39 return $this->destination;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ManufacturerCenter/
DDestinationStatus.php25 public $destination; variable in Google\\Service\\ManufacturerCenter\\DestinationStatus
34 public function setDestination($destination) argument
36 $this->destination = $destination;
43 return $this->destination;
DIssue.php33 public $destination; variable in Google\\Service\\ManufacturerCenter\\Issue
86 public function setDestination($destination) argument
88 $this->destination = $destination;
95 return $this->destination;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ShoppingContent/
DCollectionStatusDestinationStatus.php25 public $destination; variable in Google\\Service\\ShoppingContent\\CollectionStatusDestinationStatus
34 public function setDestination($destination) argument
36 $this->destination = $destination;
43 return $this->destination;
DProductStatusDestinationStatus.php30 public $destination; variable in Google\\Service\\ShoppingContent\\ProductStatusDestinationStatus
61 public function setDestination($destination) argument
63 $this->destination = $destination;
70 return $this->destination;
DAccountStatusProducts.php34 public $destination; variable in Google\\Service\\ShoppingContent\\AccountStatusProducts
71 public function setDestination($destination) argument
73 $this->destination = $destination;
80 return $this->destination;
DAccountStatusAccountLevelIssue.php29 public $destination; variable in Google\\Service\\ShoppingContent\\AccountStatusAccountLevelIssue
68 public function setDestination($destination) argument
70 $this->destination = $destination;
77 return $this->destination;
DCollectionStatusItemLevelIssue.php37 public $destination; variable in Google\\Service\\ShoppingContent\\CollectionStatusItemLevelIssue
100 public function setDestination($destination) argument
102 $this->destination = $destination;
109 return $this->destination;
DProductStatusItemLevelIssue.php42 public $destination; variable in Google\\Service\\ShoppingContent\\ProductStatusItemLevelIssue
119 public function setDestination($destination) argument
121 $this->destination = $destination;
128 return $this->destination;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Logging/
DCopyLogEntriesRequest.php25 public $destination; variable in Google\\Service\\Logging\\CopyLogEntriesRequest
38 public function setDestination($destination) argument
40 $this->destination = $destination;
47 return $this->destination;
DLogSink.php36 public $destination; variable in Google\\Service\\Logging\\LogSink
113 public function setDestination($destination) argument
115 $this->destination = $destination;
122 return $this->destination;
/plugin/farmer/
H A Dhelper.php147 * @param string $destination Destination path
151 public function copyDir($source, $destination, $exclude = '') argument
158 io_lock($destination);
159 $result = symlink(readlink($source), $destination);
160 io_unlock($destination);
165 io_lock($destination);
166 $result = copy($source, $destination);
167 io_unlock($destination);
171 if (!is_dir($destination)) {
172 io_mkdir_p($destination);
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Storage/
DComposeRequest.php35 public function setDestination(StorageObject $destination) argument
37 $this->destination = $destination;
44 return $this->destination;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Sheets/
DCutPasteRequest.php34 public function setDestination(GridCoordinate $destination) argument
36 $this->destination = $destination;
43 return $this->destination;
DCopyPasteRequest.php38 public function setDestination(GridRange $destination) argument
40 $this->destination = $destination;
47 return $this->destination;
/plugin/move/script/
DMoveMediaManager.js114 const destination = document.createElement('input');
115 destination.type = 'text';
116 destination.className = 'edit';
117 destination.name = 'move-new-filename';
118 destination.value = src.substring(0, src.length - (fileExt.value.length + 1));
119 destination.size = 50;
120 form.appendChild(destination);
/plugin/saml/phpsaml/lib/Saml2/
DLogoutResponse.php163 $destination = $this->document->documentElement->getAttribute('Destination');
164 if (empty($destination)) {
172 …rlComparisonLength = $security['destinationStrictlyMatches'] ? strlen($destination) : strlen($curr…
173 if (strncmp($destination, $currentURL, $urlComparisonLength) !== 0) {
175 …rlComparisonLength = $security['destinationStrictlyMatches'] ? strlen($destination) : strlen($curr…
177 … if (strncmp($destination, $currentURLNoRouted, $urlComparisonLength) !== 0) {
179 … "The LogoutResponse was received at $currentURL instead of $destination",
/plugin/adfs/phpsaml/lib/Saml2/
DLogoutResponse.php163 $destination = $this->document->documentElement->getAttribute('Destination');
164 if (empty($destination)) {
172 …rlComparisonLength = $security['destinationStrictlyMatches'] ? strlen($destination) : strlen($curr…
173 if (strncmp($destination, $currentURL, $urlComparisonLength) !== 0) {
175 …rlComparisonLength = $security['destinationStrictlyMatches'] ? strlen($destination) : strlen($curr…
177 … if (strncmp($destination, $currentURLNoRouted, $urlComparisonLength) !== 0) {
179 … "The LogoutResponse was received at $currentURL instead of $destination",
/plugin/davcal/vendor/sabre/dav/tests/Sabre/DAV/PropertyStorage/Backend/
H A DMock.php92 * @param string $destination
95 public function move($source, $destination) { argument
100 $this->data[$destination] = $props;
106 $this->data[$destination . substr($path, strlen($source)+1)] = $props;

123456