Lines Matching refs:dest
141 function copy_text_file($source, $dest) argument
145 $fp = fopen($dest, "w");
193 $dest = fopen($destfilename, 'wb');
194 $x = stream_copy_to_stream($fp, $dest, $hdr['size']);
195 fclose($dest);
243 foreach ($text_files as $src => $dest) {
244 copy_text_file($src, $dist_dir . '/' . $dest);
253 foreach ($general_files as $src => $dest) {
254 copy($src, $dist_dir . '/' . $dest);
331 $dest = "$dist_dir/$dll[0]"; variable
334 if (!file_exists("$dest") || !is_dir("$dest")) {
335 if (!mkdir("$dest", 0777, true)) {
336 echo "WARNING: couldn't create '$dest' for enchant plugins ";
340 if (!copy($php_build_dir . '/bin/' . $filename, "$dest/" . basename($filename))) {
363 function copy_dir($source, $dest) argument
365 if (!is_dir($dest)) {
366 if (!mkdir($dest)) {
377 $fd = $dest . '/' . $f;
389 function copy_test_dir($directory, $dest) argument
396 if (!is_dir($dest . '/tests')) {
397 mkdir($dest . '/tests', 0775, true);
399 copy_dir($directory, $dest . '/tests/');
415 if (!is_dir($dest . '/' . $full_path)) {
416 mkdir($dest . '/' . $full_path , 0775, true);
418 copy_dir($full_path, $dest . '/' . $full_path . '/');
421 copy_test_dir($full_path, $dest);