Lines Matching refs:relpath

52                    const char *relpath,
66 default_dir_added(const char *relpath,
75 SVN_ERR(processor->dir_closed(relpath, NULL, right_source,
83 default_dir_deleted(const char *relpath,
90 SVN_ERR(processor->dir_closed(relpath, left_source, NULL,
97 default_dir_changed(const char *relpath,
107 SVN_ERR(processor->dir_closed(relpath,
115 default_dir_closed(const char *relpath,
128 const char *relpath,
142 default_file_added(const char *relpath,
153 SVN_ERR(processor->file_closed(relpath,
160 default_file_deleted(const char *relpath,
168 SVN_ERR(processor->file_closed(relpath,
175 default_file_changed(const char *relpath,
188 SVN_ERR(processor->file_closed(relpath,
195 default_file_closed(const char *relpath,
206 default_node_absent(const char *relpath,
251 const char *relpath,
263 relpath = svn_relpath_join(rb->prefix_relpath, relpath, scratch_pool);
266 relpath,
276 reverse_dir_added(const char *relpath,
288 relpath = svn_relpath_join(rb->prefix_relpath, relpath, scratch_pool);
290 SVN_ERR(rb->processor->dir_deleted(relpath,
301 reverse_dir_deleted(const char *relpath,
311 relpath = svn_relpath_join(rb->prefix_relpath, relpath, scratch_pool);
313 SVN_ERR(rb->processor->dir_added(relpath,
325 reverse_dir_changed(const char *relpath,
339 relpath = svn_relpath_join(rb->prefix_relpath, relpath, scratch_pool);
348 SVN_ERR(rb->processor->dir_changed(relpath,
361 reverse_dir_closed(const char *relpath,
371 relpath = svn_relpath_join(rb->prefix_relpath, relpath, scratch_pool);
373 SVN_ERR(rb->processor->dir_closed(relpath,
385 const char *relpath,
397 relpath = svn_relpath_join(rb->prefix_relpath, relpath, scratch_pool);
401 relpath,
413 reverse_file_added(const char *relpath,
427 relpath = svn_relpath_join(rb->prefix_relpath, relpath, scratch_pool);
429 SVN_ERR(rb->processor->file_deleted(relpath,
440 reverse_file_deleted(const char *relpath,
451 relpath = svn_relpath_join(rb->prefix_relpath, relpath, scratch_pool);
453 SVN_ERR(rb->processor->file_added(relpath,
467 reverse_file_changed(const char *relpath,
484 relpath = svn_relpath_join(rb->prefix_relpath, relpath, scratch_pool);
493 SVN_ERR(rb->processor->file_changed(relpath,
509 reverse_file_closed(const char *relpath,
519 relpath = svn_relpath_join(rb->prefix_relpath, relpath, scratch_pool);
521 SVN_ERR(rb->processor->file_closed(relpath,
532 reverse_node_absent(const char *relpath,
540 relpath = svn_relpath_join(rb->prefix_relpath, relpath, scratch_pool);
542 SVN_ERR(rb->processor->node_absent(relpath,
592 const char *relpath,
603 relpath = svn_relpath_skip_ancestor(fb->prefix_relpath, relpath);
605 if (! relpath)
613 relpath,
623 filter_dir_added(const char *relpath,
634 relpath = svn_relpath_skip_ancestor(fb->prefix_relpath, relpath);
635 assert(relpath != NULL); /* Driver error */
637 SVN_ERR(fb->processor->dir_added(relpath,
650 filter_dir_deleted(const char *relpath,
659 relpath = svn_relpath_skip_ancestor(fb->prefix_relpath, relpath);
660 assert(relpath != NULL); /* Driver error */
662 SVN_ERR(fb->processor->dir_deleted(relpath,
673 filter_dir_changed(const char *relpath,
685 relpath = svn_relpath_skip_ancestor(fb->prefix_relpath, relpath);
686 assert(relpath != NULL); /* Driver error */
688 SVN_ERR(fb->processor->dir_changed(relpath,
701 filter_dir_closed(const char *relpath,
710 relpath = svn_relpath_skip_ancestor(fb->prefix_relpath, relpath);
711 assert(relpath != NULL); /* Driver error */
713 SVN_ERR(fb->processor->dir_closed(relpath,
725 const char *relpath,
736 relpath = svn_relpath_skip_ancestor(fb->prefix_relpath, relpath);
738 if (! relpath)
746 relpath,
758 filter_file_added(const char *relpath,
771 relpath = svn_relpath_skip_ancestor(fb->prefix_relpath, relpath);
772 assert(relpath != NULL); /* Driver error */
774 SVN_ERR(fb->processor->file_added(relpath,
788 filter_file_deleted(const char *relpath,
798 relpath = svn_relpath_skip_ancestor(fb->prefix_relpath, relpath);
799 assert(relpath != NULL); /* Driver error */
801 SVN_ERR(fb->processor->file_deleted(relpath,
813 filter_file_changed(const char *relpath,
828 relpath = svn_relpath_skip_ancestor(fb->prefix_relpath, relpath);
829 assert(relpath != NULL); /* Driver error */
831 SVN_ERR(fb->processor->file_changed(relpath,
847 filter_file_closed(const char *relpath,
856 relpath = svn_relpath_skip_ancestor(fb->prefix_relpath, relpath);
857 assert(relpath != NULL); /* Driver error */
859 SVN_ERR(fb->processor->file_closed(relpath,
870 filter_node_absent(const char *relpath,
877 relpath = svn_relpath_skip_ancestor(fb->prefix_relpath, relpath);
878 assert(relpath != NULL); /* Driver error */
880 SVN_ERR(fb->processor->node_absent(relpath,
929 const char *relpath,
949 relpath,
959 copy_as_changed_dir_added(const char *relpath,
975 SVN_ERR(cb->processor->dir_changed(relpath,
987 SVN_ERR(cb->processor->dir_added(relpath,
1001 copy_as_changed_dir_deleted(const char *relpath,
1010 SVN_ERR(cb->processor->dir_deleted(relpath,
1021 copy_as_changed_dir_changed(const char *relpath,
1033 SVN_ERR(cb->processor->dir_changed(relpath,
1046 copy_as_changed_dir_closed(const char *relpath,
1055 SVN_ERR(cb->processor->dir_closed(relpath,
1067 const char *relpath,
1088 relpath,
1100 copy_as_changed_file_added(const char *relpath,
1130 SVN_ERR(cb->processor->file_changed(relpath,
1145 SVN_ERR(cb->processor->file_added(relpath,
1160 copy_as_changed_file_deleted(const char *relpath,
1170 SVN_ERR(cb->processor->file_deleted(relpath,
1182 copy_as_changed_file_changed(const char *relpath,
1197 SVN_ERR(cb->processor->file_changed(relpath,
1213 copy_as_changed_file_closed(const char *relpath,
1222 SVN_ERR(cb->processor->file_closed(relpath,
1233 copy_as_changed_node_absent(const char *relpath,
1240 SVN_ERR(cb->processor->node_absent(relpath,
1296 const char *relpath,
1312 relpath,
1324 relpath,
1339 tee_dir_added(const char *relpath,
1351 SVN_ERR(tb->p1->dir_added(relpath,
1360 SVN_ERR(tb->p2->dir_added(relpath,
1373 tee_dir_deleted(const char *relpath,
1383 SVN_ERR(tb->p1->dir_deleted(relpath,
1390 SVN_ERR(tb->p2->dir_deleted(relpath,
1401 tee_dir_changed(const char *relpath,
1414 SVN_ERR(tb->p1->dir_changed(relpath,
1424 SVN_ERR(tb->p2->dir_changed(relpath,
1437 tee_dir_closed(const char *relpath,
1447 SVN_ERR(tb->p1->dir_closed(relpath,
1454 SVN_ERR(tb->p2->dir_closed(relpath,
1466 const char *relpath,
1481 relpath,
1492 relpath,
1507 tee_file_added(const char *relpath,
1521 SVN_ERR(tb->p1->file_added(relpath,
1532 SVN_ERR(tb->p2->file_added(relpath,
1546 tee_file_deleted(const char *relpath,
1557 SVN_ERR(tb->p1->file_deleted(relpath,
1565 SVN_ERR(tb->p2->file_deleted(relpath,
1576 tee_file_changed(const char *relpath,
1592 SVN_ERR(tb->p1->file_changed(relpath,
1605 SVN_ERR(tb->p2->file_changed(relpath,
1621 tee_file_closed(const char *relpath,
1631 SVN_ERR(tb->p1->file_closed(relpath,
1638 SVN_ERR(tb->p2->file_closed(relpath,
1649 tee_node_absent(const char *relpath,
1657 SVN_ERR(tb->p1->node_absent(relpath,
1662 SVN_ERR(tb->p2->node_absent(relpath,