Searched refs:abbrev (Results 1 - 25 of 74) sorted by relevance

123

/macosx-10.10/CPANInternal-159.1/Perl4-CoreLibs-0.003/lib/
H A Dabbrev.pl3 ;# &abbrev(*foo,LIST);
17 package abbrev; package
19 sub main'abbrev {
25 $abbrev = shift(@extra);
29 while (@extra && substr($cmp,0,$len) eq $abbrev) {
30 $abbrev .= shift(@extra);
34 $domain{$abbrev} = $name;
36 $abbrev .= shift(@extra);
37 $domain{$abbrev} = $name;
/macosx-10.10/ruby-106/ruby/test/
H A Dtest_abbrev.rb2 require 'abbrev'
24 }, words.abbrev)
32 }, words.abbrev('ru'))
34 assert_equal words.abbrev, Abbrev.abbrev(words)
35 assert_equal words.abbrev('ru'), Abbrev.abbrev(words, 'ru')
47 }, words.abbrev)
52 }, words.abbrev('d'))
/macosx-10.10/ruby-106/ruby/lib/
H A Dabbrev.rb8 # $Idaemons: /home/cvs/rb/abbrev.rb,v 1.2 2001/05/30 09:37:45 knu Exp $
9 # $RoughId: abbrev.rb,v 1.4 2003/10/14 19:45:42 knu Exp $
10 # $Id: abbrev.rb 39458 2013-02-24 05:06:42Z zzak $
16 # require 'abbrev'
19 # pp Abbrev.abbrev(['ruby', 'rules'])
29 # It also provides an array core extension, Array#abbrev.
31 # pp %w{summer winter}.abbrev
56 # require 'abbrev'
58 # Abbrev.abbrev(['car', 'cone'])
65 # Abbrev.abbrev(
67 def abbrev(words, pattern = nil) method in class:Abbrev
123 def abbrev(pattern = nil) method in class:Array
[all...]
/macosx-10.10/dtrace-147/libdwarf/
H A Ddwarf_abbrev.c64 /* Loads abbrev section (and .debug_info as we do those
144 dwarf_get_abbrev_code(Dwarf_Abbrev abbrev, argument
148 if (abbrev == NULL) {
153 *returned_code = abbrev->ab_code;
158 dwarf_get_abbrev_tag(Dwarf_Abbrev abbrev, argument
161 if (abbrev == NULL) {
166 *returned_tag = abbrev->ab_tag;
172 dwarf_get_abbrev_children_flag(Dwarf_Abbrev abbrev, argument
176 if (abbrev == NULL) {
181 *returned_flag = abbrev
187 dwarf_get_abbrev_entry(Dwarf_Abbrev abbrev, Dwarf_Signed index, Dwarf_Half * returned_attr_num, Dwarf_Signed * form, Dwarf_Off * offset, Dwarf_Error * error) argument
[all...]
H A Ddwarf_alloc.c1024 struct Dwarf_Abbrev_List_s *abbrev = 0; local
1027 abbrev = hash_table[hashnum].at_head;
1028 for (; abbrev; abbrev = nextabbrev) {
1029 nextabbrev = abbrev->ab_next;
1030 dwarf_dealloc(dbg, abbrev, DW_DLA_ABBREV_LIST);
/macosx-10.10/emacs-93/emacs/lisp/
H A Ddabbrev.el10 ;; Keywords: abbrev expand completion convenience
73 ;; right. It resets them after finding the abbrev.
105 :group 'abbrev
119 (defcustom dabbrev-abbrev-skip-leading-regexp nil
188 (defcustom dabbrev-abbrev-char-regexp nil
302 (defvar dabbrev--last-abbrev-location nil)
333 (defvar dabbrev--abbrev-char-regexp nil)
382 (abbrev (dabbrev--abbrev-at-point))
387 (string= abbrev (downcas
[all...]
H A Dabbrevlist.el1 ;;; abbrevlist.el --- list one abbrev table alphabetically ordered
8 ;; Keywords: abbrev
32 (defun list-one-abbrev-table (abbrev-table output-buffer)
36 (let ((abbrev-list nil) (first-column 0))
39 (function (lambda (abbrev)
40 (setq abbrev-list (cons abbrev abbrev-list))))
41 abbrev
[all...]
H A Dexpand.el8 ;; Keywords: abbrev
37 ;; For example for c-mode, you could declare your abbrev table with :
56 ;; (expand-add-abbrevs c-mode-abbrev-table c-expand-list)
57 ;; (abbrev-mode 1)))
82 :group 'abbrev)
90 "Hooks run when an abbrev made by `expand-add-abbrevs' is expanded."
270 "Add a list of abbrev to abbrev table TABLE.
271 ABBREVS is a list of abbrev definitions; each abbrev descriptio
[all...]
/macosx-10.10/OpenSSH-189/openssh/
H A Dlogintest.c225 char full[17], strip[9], abbrev[5]; local
229 memset(abbrev, '\0', sizeof(abbrev));
233 line_abbrevname(abbrev, full, sizeof(abbrev)-1);
234 printf("%s: %s, %s, %s\n", line, full, strip, abbrev);
/macosx-10.10/emacs-93/emacs/src/
H A Dabbrev.c1 /* Primitives for word-abbrev mode.
33 /* An abbrev table is an obarray.
34 Each defined abbrev is represented by a symbol in that obarray
39 The plist slot of the abbrev symbol is its usage count. */
41 /* List of all abbrev-table name symbols:
42 symbols whose values are abbrev tables. */
47 in any buffer in which abbrev mode is turned on. */
51 /* The local abbrev table used by default (in Fundamental Mode buffers) */
55 /* Set nonzero when an abbrev definition is changed */
61 /* Non-nil => use this location as the start of abbrev t
179 Lisp_Object abbrev, expansion; variable
190 Lisp_Object abbrev, expansion; variable
208 Lisp_Object abbrev, table; variable
211 CHECK_STRING (abbrev); variable
234 Lisp_Object abbrev, table; variable
[all...]
/macosx-10.10/ntp-92/libntp/
H A Dclocktypes.c115 return (clk->abbrev);
/macosx-10.10/emacs-93/emacs/lisp/emacs-lisp/
H A Dderived.el69 ;; - replace the current abbrev table with
70 ;; 'hypertext-mode-abbrev-table', which will borrow its defaults
71 ;; from the current text-mode-abbrev table
113 (defsubst derived-mode-abbrev-table-name (mode)
114 "Construct an abbrev-table name based on a MODE name."
115 (intern (concat (symbol-name mode) "-abbrev-table")))
142 :abbrev-table TABLE
144 A nil value means to simply use the same abbrev-table as the parent.
181 (abbrev (derived-mode-abbrev
[all...]
/macosx-10.10/cxxfilt-11/cxxfilt/bfd/
H A Ddwarf2.c166 /* The abbrev hash table. */
214 /* This data structure holds the information of an abbrev. */
217 unsigned int number; /* Number identifying abbrev. */
394 /* Lookup an abbrev_info structure in the abbrev hash table. */
400 struct abbrev_info *abbrev; local
403 abbrev = abbrevs[hash_number];
405 while (abbrev)
407 if (abbrev->number == number)
408 return abbrev;
410 abbrev
501 struct abbrev_info *abbrev = abbrevs[i]; local
678 read_attribute(struct attribute *attr, struct attr_abbrev *abbrev, struct comp_unit *unit, bfd_byte *info_ptr) argument
1564 struct abbrev_info *abbrev; local
1674 struct abbrev_info *abbrev; local
1903 struct abbrev_info *abbrev; local
2796 struct abbrev_info *abbrev = abbrevs[i]; local
[all...]
/macosx-10.10/CPANInternal-159.1/Perl-Tidy-20121207/examples/
H A Dperltidyrc_dump.pl124 foreach my $abbrev ( keys %{$rabbreviations} ) {
125 foreach my $abbrev ( sort keys %$rabbreviations ) {
126 my @list = @{ $$rabbreviations{$abbrev} };
134 $short_name{$long_name} = $abbrev;
/macosx-10.10/cxxfilt-11/cxxfilt/binutils/
H A Ddwarf.h53 abbrev = 0, enumerator in enum:dwarf_section_display_enum
H A Ddwarf.c329 abbrev_entry *abbrev; local
331 for (abbrev = first_abbrev; abbrev;)
333 abbrev_entry *next = abbrev->next;
336 for (attr = abbrev->first_attr; attr;)
344 free (abbrev);
345 abbrev = next;
1577 load_debug_section (abbrev, file);
1578 if (debug_displays [abbrev].section.start == NULL)
1581 debug_displays [abbrev]
[all...]
/macosx-10.10/pyobjc-45/2.5/pyobjc/pyobjc-framework-Cocoa/PyObjCTest/
H A Dtest_cftimezone.py87 abbrev = CFTimeZoneCopyAbbreviation(zone, time.time())
88 self.failUnless(isinstance(abbrev, unicode))
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-framework-Cocoa/PyObjCTest/
H A Dtest_cftimezone.py74 abbrev = CFTimeZoneCopyAbbreviation(zone, time.time())
75 self.assertIsInstance(abbrev, unicode)
/macosx-10.10/pyobjc-45/pyobjc/pyobjc-framework-Cocoa-2.5.1/PyObjCTest/
H A Dtest_cftimezone.py92 abbrev = CFTimeZoneCopyAbbreviation(zone, time.time())
93 self.assertIsInstance(abbrev, unicode)
/macosx-10.10/shell_cmds-179/find/
H A Dgetdate.y677 int abbrev;
695 abbrev = 1;
697 abbrev = 1;
701 abbrev = 0;
704 if (abbrev) {
/macosx-10.10/sudo-73/src/
H A Dgetdate.y675 int abbrev;
693 abbrev = 1;
695 abbrev = 1;
699 abbrev = 0;
702 if (abbrev) {
/macosx-10.10/emacs-93/emacs/lisp/calendar/
H A Dcal-menu.el234 (calendar-month-name (car my1) 'abbrev)
235 (calendar-month-name (car my2) 'abbrev)
238 (calendar-month-name (car my1) 'abbrev)
240 (calendar-month-name (car my2) 'abbrev)
/macosx-10.10/ntp-92/include/
H A Dntp_refclock.h66 const char *abbrev; /* short description */ member in struct:clktype
/macosx-10.10/tcl-105/tcl_ext/tclxml/tclxml/tests/
H A Ddefs.tcl385 set abbrev [string range $arg 0 1]
386 if {([info exists flag($abbrev)]) && \
388 [lsearch -exact $flagArray $abbrev])} {
389 set flag($arg) $flag($abbrev)
/macosx-10.10/tcl-105/tcl_ext/tclxml/tclxslt/test/
H A Ddefs.tcl385 set abbrev [string range $arg 0 1]
386 if {([info exists flag($abbrev)]) && \
388 [lsearch -exact $flagArray $abbrev])} {
389 set flag($arg) $flag($abbrev)

Completed in 210 milliseconds

123