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);
346 $dest = "$dist_dir/$dll[0]"; variable
349 if (!file_exists("$dest") || !is_dir("$dest")) {
350 if (!mkdir("$dest", 0777, true)) {
351 echo "WARNING: couldn't create '$dest' for enchant plugins ";
355 if (!copy($php_build_dir . '/bin/' . $filename, "$dest/" . basename($filename))) {
394 function copy_dir($source, $dest) argument
396 if (!is_dir($dest)) {
397 if (!mkdir($dest)) {
408 $fd = $dest . '/' . $f;
420 function copy_test_dir($directory, $dest) argument
427 if (!is_dir($dest . '/tests')) {
428 mkdir($dest . '/tests', 0775, true);
430 copy_dir($directory, $dest . '/tests/');
446 if (!is_dir($dest . '/' . $full_path)) {
447 mkdir($dest . '/' . $full_path , 0775, true);
449 copy_dir($full_path, $dest . '/' . $full_path . '/');
452 copy_test_dir($full_path, $dest);