Searched refs:bufname (Results 1 - 25 of 28) sorted by last modified time

12

/macosx-10.10/gssd-64/
H A Dgssd.c2681 gss_buffer_desc bufname; local
2686 maj = gss_display_name(&min, svc_gss_name[i], &bufname, &oid);
2690 dname = buf_to_str(&bufname);
/macosx-10.10/vim-55/runtime/autoload/
H A Dgetscript.vim501 if sname == bufname("%")
H A Dnetrw.vim320 " call Dfunc("s:NetrwOptionSave(vt<".a:vt.">) win#".winnr()." buf#".bufnr("%")."<".bufname(bufnr("%")).">"." winnr($)=".winnr("$"))
448 " call Dfunc("s:NetrwSafeOptions() win#".winnr()." buf#".bufnr("%")."<".bufname(bufnr("%"))."> winnr($)=".winnr("$"))
716 if bufname("%") == "" && getline("$") == "" && line('$') == 1
1364 let rfile= bufname("%")
2253 " call Dfunc("s:NetrwBrowse(islocal=".a:islocal." dirname<".a:dirname.">) liststyle=".w:netrw_liststyle." ".g:loaded_netrw." buf#".bufnr("%")."<".bufname("%")."> win#".winnr())
2566 " call Decho(" findbuf1: bufnum=bufnr('".dirname."')=".bufnum." bufname(".bufnum.")<".bufname(bufnum)."> (initial)")
2568 if bufnum > 0 && bufname(bufnum) != dirname && bufname(bufnum) != '.'
2570 " call Decho(" handling approx match: bufnum#".bufnum."<".bufname(bufnu
[all...]
H A Drubycomplete.vim314 bufname = VIM::Buffer.current.name
344 # classdef = "class %s\n%s\nend\n" % [ bufname.gsub( /\/|\\/, "_" ), classdef ]
H A Dtohtml.vim109 call add(html, '<th>'.bufname(buf).'</th>')
H A Dada.vim422 let l:Filename = fnamemodify (bufname ('%'), ':p')
425 \ fnamemodify (bufname ('%'), ':p:h') . "*.ada " .
426 \ fnamemodify (bufname ('%'), ':p:h') . "*.adb " .
427 \ fnamemodify (bufname ('%'), ':p:h') . "*.ads"
/macosx-10.10/vim-55/runtime/ftplugin/
H A Docaml.vim86 if (match(bufname(""), "\\.mli$") >= 0)
87 let fname = s:Fnameescape(substitute(bufname(""), "\\.mli$", ".ml", ""))
93 elseif (match(bufname(""), "\\.ml$") >= 0)
94 let fname = s:Fnameescape(bufname("")) . "i"
386 let s:current_buf = bufname('%')
/macosx-10.10/vim-55/runtime/
H A Dmenu.vim664 if bufexists(buf) && !isdirectory(bufname(buf)) && buflisted(buf)
676 if bufexists(buf) && !isdirectory(bufname(buf)) && buflisted(buf)
677 call <SID>BMFilename(bufname(buf), buf)
/macosx-10.10/vim-55/runtime/syntax/
H A Dvim.vim73 syn keyword vimFuncName contained abs append argv atan2 bufexists bufname byte2line ceil cindent complete confirm cosh cursor did_filetype empty eventhandler exp extend filewritable findfile fmod foldclosed foldtext function getbufline getcharmod getcmdtype getfperm getftype getmatches getqflist gettabvar getwinposy globpath haslocaldir histdel hlexists iconv input inputrestore insert items len line localtime map match matchdelete matchstr min mode nextnonblank pathshorten prevnonblank pumvisible readfile reltimestr remote_foreground remote_read remove repeat reverse search searchpair searchpos serverlist setcmdpos setloclist setpos setreg settabwinvar shellescape sin sort spellbadword split str2float strchars strftime string strpart strtrans submatch synconcealed synIDattr synstack tabpagebuflist tabpagewinnr taglist tanh tolower tr type undotree virtcol winbufnr winheight winnr winrestview winwidth
/macosx-10.10/vim-55/src/
H A Deval.c7669 {"bufname", 1, 1, f_bufname},
8842 * "bufname(expr)" function
/macosx-10.10/emacs-93/emacs/lisp/
H A Ddired.el2612 (defun dired-mark-pop-up (bufname op-symbol files function &rest args)
2625 (or bufname (setq bufname " *Marked Files*"))
2631 (with-current-buffer (get-buffer-create bufname)
2640 (dired-pop-to-buffer bufname)
H A Dfont-lock.el1606 (bufname (buffer-name)) (count 0)
1612 (if loudly (message "Fontifying %s... (regexps..%s)" bufname
H A Dtar-mode.el708 (bufname (concat (file-name-nondirectory name)
719 (setq buffer (generate-new-buffer bufname))
720 (setq bufname (buffer-name buffer))
791 (rename-buffer bufname)
H A Dview.el782 (bufname (buffer-name))
794 (if (string= bufname file) ""
795 (concat " in " bufname))))))
H A Dman.el731 (bufname (concat "*Man " man-args "*"))
732 (buffer (get-buffer bufname)))
737 (setq buffer (generate-new-buffer bufname))
805 (Man-bgproc-sentinel bufname msg)))))))
H A Darc-mode.el916 (bufname (concat (file-name-nondirectory iname) " (" arcname ")"))
924 (buffer (get-buffer bufname))
930 (setq bufname (generate-new-buffer-name bufname))
931 (setq buffer (get-buffer-create bufname))
968 (rename-buffer bufname)
H A Ddesktop.el526 (let ((bufname (buffer-name (car buffers))))
528 (null bufname)
529 (string-match preserve-regexp bufname)
531 (and (not (equal bufname "")) (eq (aref bufname 0) ?\s))
692 (defun desktop-save-buffer-p (filename bufname mode &rest dummy)
698 (and (not (string-match desktop-buffers-not-to-save bufname))
703 (with-current-buffer bufname
707 (with-current-buffer bufname desktop-save-buffer))))))
H A Dwoman.el1576 (woman-make-bufname (file-name-nondirectory buffer-file-name)))
1619 (let* ((bufname (file-name-nondirectory file-name))
1622 (not (not (string-match woman-file-compression-regexp bufname)))))
1624 (setq bufname (file-name-sans-extension bufname)))
1625 (setq bufname (if exists
1627 (woman-make-bufname bufname)))
1628 (woman-really-find-file file-name compressed bufname)
1631 (cons (cons file-name bufname) woma
[all...]
H A Dwhitespace.el721 buffile bufname thiselt buf)
730 (setq bufname (cadr thiselt))
731 (setq buf (get-buffer bufname))
734 ;;(message "buffer %s live" bufname)
735 (set-buffer bufname)
738 ;;(message "checking for whitespace in %s" bufname)
741 ;;(message "cleaning up whitespace in %s" bufname)
746 ;;(message "Removing %s from refresh list" bufname)
747 (whitespace-refresh-rescan-list buffile bufname)))
748 ;;(message "Removing %s from refresh list" bufname)
[all...]
H A Dstrokes.el1151 (defun strokes-xpm-for-stroke (&optional stroke bufname b/w-only)
1162 (let ((buf (get-buffer-create (or bufname " *strokes-xpm*")))
1706 (defun strokes-xpm-for-compressed-string (compressed-string &optional bufname)
1710 (or bufname (setq bufname " *strokes-xpm*"))
1711 (set-buffer (get-buffer-create bufname))
/macosx-10.10/emacs-93/emacs/lisp/progmodes/
H A Dcperl-mode.el8646 (bufname (concat "Man " buffer-file-name))
8647 (buffer (generate-new-buffer bufname)))
/macosx-10.10/emacs-93/emacs/src/
H A Dprint.c617 temp_output_buffer_setup (bufname)
618 const char *bufname;
626 Fset_buffer (Fget_buffer_create (build_string (bufname)));
651 internal_with_output_to_temp_buffer (bufname, function, args)
652 const char *bufname;
662 temp_output_buffer_setup (bufname);
/macosx-10.10/emacs-93/emacs/lisp/international/
H A Dmule-cmds.el707 (bufname (buffer-name))
713 (pop-to-buffer bufname)
724 (format "buffer `%s'." bufname)))
731 (format " text\nin the buffer `%s'" bufname))
754 #'(lambda (bufname pos)
755 (when (buffer-live-p (get-buffer bufname))
756 (pop-to-buffer bufname)
759 #'(lambda (bufname pos coding)
760 (when (buffer-live-p (get-buffer bufname))
761 (pop-to-buffer bufname)
[all...]
/macosx-10.10/emacs-93/emacs/lisp/obsolete/
H A Dmlsupport.el154 (defun delete-region-to-buffer (bufname)
155 (copy-to-buffer bufname (point) (mark))
158 (defun copy-region-to-buffer (bufname)
159 (copy-to-buffer bufname (point) (mark)))
161 (defun append-region-to-buffer (bufname)
162 (append-to-buffer bufname (point) (mark)))
164 (defun prepend-region-to-buffer (bufname)
165 (prepend-to-buffer bufname (point) (mark)))
/macosx-10.10/emacs-93/emacs/lisp/gnus/
H A Dwebmail.el483 bufname);; Attachment
489 (setq bufname (buffer-name)))
497 (insert " buffer=\"" bufname "\"")
628 (let (bufname ct ctl cd description)
651 (setq bufname (buffer-name)))
655 (insert " buffer=\"" bufname "\"")
813 (let (bufname);; Attachment
818 (setq bufname (buffer-name)))
820 (insert " buffer=\"" bufname "\"")
940 (let (bufname);; Attachmen
[all...]

Completed in 397 milliseconds

12