Lines Matching refs:dest
157 function copy_text_file($source, $dest) argument
161 $fp = fopen($dest, "w");
209 $dest = fopen($destfilename, 'wb');
210 $x = stream_copy_to_stream($fp, $dest, $hdr['size']);
211 fclose($dest);
260 foreach ($text_files as $src => $dest) {
261 copy_text_file($src, $dist_dir . '/' . $dest);
269 foreach ($general_files as $src => $dest) {
270 copy($src, $dist_dir . '/' . $dest);
342 $dest = "$dist_dir/$dll[0]"; variable
345 if (!file_exists("$dest") || !is_dir("$dest")) {
346 if (!mkdir("$dest", 0777, true)) {
347 echo "WARNING: couldn't create '$dest' for enchant plugins ";
351 if (!copy($php_build_dir . '/bin/' . $filename, "$dest/" . basename($filename))) {
390 function copy_dir($source, $dest) argument
392 if (!is_dir($dest)) {
393 if (!mkdir($dest)) {
404 $fd = $dest . '/' . $f;
416 function copy_test_dir($directory, $dest) argument
423 if (!is_dir($dest . '/tests')) {
424 mkdir($dest . '/tests', 0775, true);
426 copy_dir($directory, $dest . '/tests/');
442 if (!is_dir($dest . '/' . $full_path)) {
443 mkdir($dest . '/' . $full_path , 0775, true);
445 copy_dir($full_path, $dest . '/' . $full_path . '/');
448 copy_test_dir($full_path, $dest);