Searched refs:basedir (Results 26 - 50 of 59) sorted by relevance

123

/macosx-10.10/pyobjc-45/pyobjc/pyobjc-core-2.5.1/PyObjCTest/
H A Ddejagnu.py160 def object_files(self, basedir):
162 for dirpath, dirnames, filenames in os.walk(basedir):
/macosx-10.10/pyobjc-45/pyobjc/pyobjc-core-2.5.1/libffi-src/tests/
H A Ddejagnu.py143 def object_files(self, basedir):
145 for dirpath, dirnames, filenames in os.walk(basedir):
/macosx-10.10/pyobjc-45/2.5/pyobjc/pyobjc-core/
H A Dsetup.py91 basedir = os.path.join(pth, name)
92 if os.path.exists(basedir):
93 if (headername is None) or os.path.exists(os.path.join(basedir, "Headers", headername)):
/macosx-10.10/bind9-45.101/bind9/contrib/dlz/drivers/
H A Ddlz_filesystem_driver.c80 char *basedir; member in struct:config_data
302 strcpy(tmpPath, cd->basedir);
904 cd->basedir = isc_mem_strdup(ns_g_mctx, argv[1]);
905 if (cd->basedir == NULL)
907 cd->basedirsize = strlen(cd->basedir);
973 if (cd->basedir != NULL)
974 isc_mem_free(ns_g_mctx, cd->basedir);
/macosx-10.10/syslog-267/libsystem_asl.tproj/src/
H A Dasl_store.c89 asl_store_open_write(const char *basedir, asl_store_t **s) argument
104 if (basedir == NULL) basedir = PATH_ASL_STORE;
107 if (stat(basedir, &sb) != 0) return ASL_STATUS_INVALID_STORE;
111 asprintf(&path, "%s/%s", basedir, FILE_ASL_STORE_DATA);
175 if (basedir == NULL) out->base_dir = strdup(PATH_ASL_STORE);
176 else out->base_dir = strdup(basedir);
228 asl_store_open_read(const char *basedir, asl_store_t **s) argument
235 if (basedir == NULL) basedir
[all...]
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-core/
H A Dsetup.py256 basedir = os.path.join(pth, name)
257 if os.path.exists(basedir):
258 if (headername is None) or os.path.exists(os.path.join(basedir, "Headers", headername)):
/macosx-10.10/BerkeleyDB-21/db/test/
H A Dparallel.tcl132 set basedir [pwd]
133 set queuedir ../../[string range $basedir \
134 [string last "/" $basedir] end]/$queuedir
353 set basedir [pwd]
/macosx-10.10/ruby-106/ruby/tool/
H A Drbinstall.rb281 def prepare(mesg, basedir, subdirs=nil)
282 return unless basedir
285 dirs = basedir
289 dirs = [basedir = File.join(basedir, subdirs)]
292 dirs = [basedir, *subdirs.collect {|dir| File.join(basedir, dir)}]
294 printf("installing %-18s %s%s\n", "#{mesg}:", basedir,
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/fileutil/
H A Dtraverse.tcl101 constructor {basedir args} {
102 set _base $basedir
H A Dfileutil.tcl81 proc ::fileutil::find {{basedir .} {filtercmd {}}} {
85 if {[file isfile $basedir]} {
89 FADD $basedir
91 } elseif {[file isdirectory $basedir]} {
114 set pending [list $basedir]
155 return -code error "$basedir does not exist"
373 # basedir Directory to start searching from.
380 proc ::fileutil::findByPattern {basedir args} {
400 \"$pname basedir ?-regexp|-glob? ?--? patterns\""
404 return [find $basedir [lis
[all...]
/macosx-10.10/zsh-61/zsh/Functions/VCS_Info/Backends/
H A DVCS_INFO_get_data_bzr50 bzrbase=${vcs_comm[basedir]}
H A DVCS_INFO_get_data_hg20 hgbase=${vcs_comm[basedir]}
/macosx-10.10/pyobjc-45/pyobjc/pyobjc-core-2.5.1/
H A Dsetup.py391 basedir = os.path.join(pth, name)
392 if os.path.exists(basedir):
393 if (headername is None) or os.path.exists(os.path.join(basedir, "Headers", headername)):
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/
H A Dinstaller.tcl303 set basedir [file dirname $libdir]
304 set bindir [file join $basedir bin]
308 set htmldir [file join $basedir ${package_name}_doc]
310 set mandir [file join $basedir man mann]
/macosx-10.10/tcl-105/tcl_ext/tklib/tklib/
H A Dinstaller.tcl303 set basedir [file dirname $libdir]
304 set bindir [file join $basedir bin]
308 set htmldir [file join $basedir ${package_name}_doc]
310 set mandir [file join $basedir man mann]
/macosx-10.10/ruby-106/ruby/ext/pathname/
H A Dpathname.c258 VALUE basedir, str; local
259 rb_scan_args(argc, argv, "01", &basedir);
260 str = rb_funcall(rb_cFile, rb_intern("realpath"), 2, get_strpath(self), basedir);
274 VALUE basedir, str; local
275 rb_scan_args(argc, argv, "01", &basedir);
276 str = rb_funcall(rb_cFile, rb_intern("realdirpath"), 2, get_strpath(self), basedir);
/macosx-10.10/cups-408/cups/ppdc/
H A Dppdc-source.cxx1626 basedir[1024], // Base directory local
1661 strlcpy(basedir, fp->filename, sizeof(basedir));
1663 if ((baseptr = strrchr(basedir, '/')) != NULL)
1666 strlcpy(basedir, ".", sizeof(basedir));
1672 find_include(poname, basedir, pofilename, sizeof(pofilename)))
2562 char basedir[1024], // Base directory local
2584 strlcpy(basedir, fp->filename, sizeof(basedir));
[all...]
/macosx-10.10/ruby-106/ruby/test/minitest/
H A Dtest_minitest_unit.rb19 basedir = Pathname.new(File.expand_path "lib/minitest") + 'mini'
20 basedir = basedir.relative_path_from(pwd).to_s
21 MINITEST_BASE_DIR = basedir[/\A\./] ? basedir : "./#{basedir}"
/macosx-10.10/ICU-531.30/icuSources/tools/tzcode/
H A Dzdump.c183 static void getzones(char * basedir, char * subdir, struct listentry ** last, int * count);
986 static void getzones(char * basedir, char * relpath, struct listentry ** last, int * count) { argument
991 strcpy(path, basedir);
1034 getzones(basedir, subpath, last, count);
/macosx-10.10/ruby-106/ruby/
H A Dfile.c3497 rb_realpath_internal(VALUE basedir, VALUE path, int strict) argument
3503 rb_realpath_internal(VALUE basedir, VALUE path, int strict) argument
3521 if (!NIL_P(basedir)) {
3522 FilePathValue(basedir);
3523 basedir = rb_str_dup_frozen(basedir);
3533 if (!NIL_P(basedir)) {
3534 RSTRING_GETMEM(basedir, ptr, len);
3535 basedir_names = skipprefixroot(ptr, ptr + len, rb_enc_get(basedir));
3537 resolved = rb_str_subseq(basedir,
3593 VALUE path, basedir; local
3613 VALUE path, basedir; local
[all...]
H A Dinternal.h125 VALUE rb_realpath_internal(VALUE basedir, VALUE path, int strict);
/macosx-10.10/emacs-93/emacs/lisp/progmodes/
H A Dflymake.el1043 (defun flymake-get-project-include-dirs-imp (basedir)
1045 (if (flymake-get-project-include-dirs-from-cache basedir)
1047 (flymake-get-project-include-dirs-from-cache basedir))
1050 (shell-quote-argument basedir)
1066 (flymake-add-project-include-dirs-to-cache basedir inc-dirs)
1070 "Function used to get project include dirs, one parameter: basedir name."
1074 (defun flymake-get-project-include-dirs (basedir)
1075 (funcall flymake-get-project-include-dirs-function basedir))
/macosx-10.10/CPANInternal-159.1/Template-Toolkit-2.25/lib/Template/
H A DProvider.pm854 my $basedir = &File::Basename::dirname($compfile);
855 $basedir =~ /(.*)/;
856 $basedir = $1;
858 unless (-d $basedir) {
859 eval { File::Path::mkpath($basedir) };
860 $error = "failed to create compiled templates directory: $basedir ($@)"
/macosx-10.10/apache-793/httpd/modules/proxy/
H A Dmod_proxy_ftp.c471 /* basedir is either "", or "/%2f" for the "squid %2f hack" */
472 const char *basedir = ""; /* By default, path is relative to the $HOME dir */ local
497 /* If path began with /%2f, change the basedir */
499 basedir = "/%2f";
524 str = (basedir[0] != '\0') ? "<a href=\"/%2f/\">%2f</a>/" : "";
534 ap_escape_html(p, site), basedir, escpath,
535 ap_escape_uri(p, site), basedir, escpath,
550 str = apr_psprintf(p, "<a href=\"%s%s/\">%s</a>/", basedir,
/macosx-10.10/ruby-106/ruby/test/pathname/
H A Dtest_pathname.rb330 def realpath(path, basedir=nil)
331 Pathname.new(path).realpath(basedir).to_s

Completed in 401 milliseconds

123