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))) {
410 function copy_dir($source, $dest) argument
412 if (!is_dir($dest)) {
413 if (!mkdir($dest)) {
424 $fd = $dest . '/' . $f;
436 function copy_test_dir($directory, $dest) argument
443 if (!is_dir($dest . '/tests')) {
444 mkdir($dest . '/tests', 0775, true);
446 copy_dir($directory, $dest . '/tests/');
462 if (!is_dir($dest . '/' . $full_path)) {
463 mkdir($dest . '/' . $full_path , 0775, true);
465 copy_dir($full_path, $dest . '/' . $full_path . '/');
468 copy_test_dir($full_path, $dest);