Searched refs:expansion (Results 1 - 25 of 79) sorted by relevance

1234

/macosx-10.10/emacs-93/emacs/lisp/erc/
H A Derc-hecomplete.el97 add this string when a unique expansion was found."
150 (let (expansion
164 ;; expansion is the possible expansion, or t. If expansion is t
165 ;; or if expansion is the "real" thing, we are finished (final is
166 ;; t). Take care -- expansion can also be nil!
168 (setq expansion (try-completion he-search-string alist)
169 final (or (eq t expansion)
170 (and expansion
[all...]
/macosx-10.10/bash-94.1.2/bash-3.2/lib/readline/examples/
H A Dhistexamp.c59 char *expansion; local
64 result = history_expand (line, &expansion);
66 fprintf (stderr, "%s\n", expansion);
70 free (expansion);
74 add_history (expansion);
75 strncpy (line, expansion, sizeof (line) - 1);
76 free (expansion);
/macosx-10.10/bash-94.1.2/bash-3.2/lib/readline/
H A Dtilde.c1 /* tilde.c -- Tilde expansion code (~/foo := $HOME/foo). */
100 which is the expansion, or a NULL pointer if the expansion fails. */
106 which is the expansion, or a NULL pointer if there is no expansion. */
124 /* Find the start of a tilde expansion in STRING, and return the index of
125 the tilde which starts the expansion. Place the length of the text
160 /* Find the end of a tilde expansion in STRING, and return the index of
208 char *tilde_word, *expansion; local
211 /* Make START point to the tilde which starts the expansion
346 char *dirname, *expansion, *username; local
[all...]
/macosx-10.10/bash-94.1.2/bash-3.2/lib/tilde/
H A Dtilde.c1 /* tilde.c -- Tilde expansion code (~/foo := $HOME/foo). */
100 which is the expansion, or a NULL pointer if the expansion fails. */
106 which is the expansion, or a NULL pointer if there is no expansion. */
124 /* Find the start of a tilde expansion in STRING, and return the index of
125 the tilde which starts the expansion. Place the length of the text
160 /* Find the end of a tilde expansion in STRING, and return the index of
208 char *tilde_word, *expansion; local
211 /* Make START point to the tilde which starts the expansion
346 char *dirname, *expansion, *username; local
[all...]
/macosx-10.10/emacs-93/emacs/lisp/
H A Dhippie-exp.el1 ;;; hippie-exp.el --- expand text trying various ways to find its expansion
143 ;; to the expansion is ok if that is enabled in the buffer.)
148 ;; variable to see whether an expansion has already been tried
175 "Expand text trying various ways to find its expansion."
217 "The list of expansion functions tried in order by `hippie-expand'.
275 The expansion functions in `hippie-expand-try-functions-list' are
276 tried in order, until a possible expansion is found. Repeated
281 undoes the expansion."
304 (message "No expansion found")
334 ;; Substitutes an expansion ST
[all...]
H A Ddabbrev.el61 ;; the article for expansion):
78 ;; the nearest expansion.
174 "*Whether dabbrev applies the abbreviations's case pattern to the expansion.
176 A value of nil means preserve the expansion's case pattern.
178 Any other non-nil value means modify the expansion
189 "*Regexp to recognize a character in an abbreviation or expansion.
203 \"\\\\sw\\\\|\\\\s_\", that expansion looks for a symbol starting with
307 ;; Last expansion of an abbreviation.
308 (defvar dabbrev--last-expansion nil)
310 ;; Location the last expansion wa
[all...]
H A Dxml.el344 "Perform any namespace expansion.
345 NAME is the name to perform the expansion on.
473 (let ((expansion (xml-parse-string)))
475 (if (stringp expansion)
478 (setq children (append (list (concat (car children) expansion))
480 (setq children (append (list expansion) children)))
481 (setq children (append expansion children))))))))
545 (let ((expansion (xml-substitute-special string)))
546 (unless (stringp expansion)
550 (push (cons name expansion) attlis
[all...]
H A Dexpand.el277 expansion. For example you, could use the DMacros or skeleton packages
300 "If non-nil, stores a vector containing markers to positions defined by the last expansion.
314 (defun expand-add-abbrev (table abbrev expansion arg)
316 (let* ((string-exp (if (and (symbolp expansion) (fboundp expansion))
318 expansion))
321 (- (length expansion) (1- (car arg)))
322 (- (length expansion) (1- arg)))
333 (if (and (symbolp expansion) (fboundp expansion))
[all...]
/macosx-10.10/postfix-255/postfix/src/global/
H A Dmaps.c165 const char *expansion; local
185 if ((expansion = dict_get(dict, name)) != 0) {
186 if (*expansion == 0) {
196 *map_name, name, expansion);
197 return (expansion);
H A Ddict_sqlite.c156 int expansion = 0; local
237 && ++expansion > dict_sqlite->expansion_limit) {
/macosx-10.10/emacs-93/emacs/src/
H A Dabbrev.c36 The symbol's value is a string which is the expansion.
38 after the expansion is done.
130 (table, name, expansion, hook, count, system_flag) variable
131 Lisp_Object table, name, expansion, hook, count, system_flag;
156 if (!((EQ (oexp, expansion)
157 || (STRINGP (oexp) && STRINGP (expansion)
158 && (tem = Fstring_equal (oexp, expansion), !NILP (tem))))
165 Fset (sym, expansion);
179 (abbrev, expansion) variable
180 Lisp_Object abbrev, expansion;
190 Lisp_Object abbrev, expansion; variable
257 Lisp_Object expansion, hook, tem; variable
[all...]
/macosx-10.10/WebCore-7600.1.25/platform/graphics/
H A DTextRun.h64 TextRun(const LChar* c, unsigned len, float xpos = 0, float expansion = 0, ExpansionBehavior expansionBehavior = AllowTrailingExpansion | ForbidLeadingExpansion, TextDirection direction = LTR, bool directionalOverride = false, bool characterScanForCodePath = true, RoundingHacks roundingHacks = RunRounding | WordRounding)
69 , m_expansion(expansion)
84 TextRun(const UChar* c, unsigned len, float xpos = 0, float expansion = 0, ExpansionBehavior expansionBehavior = AllowTrailingExpansion | ForbidLeadingExpansion, TextDirection direction = LTR, bool directionalOverride = false, bool characterScanForCodePath = true, RoundingHacks roundingHacks = RunRounding | WordRounding)
89 , m_expansion(expansion)
104 explicit TextRun(const String& s, float xpos = 0, float expansion = 0, ExpansionBehavior expansionBehavior = AllowTrailingExpansion | ForbidLeadingExpansion, TextDirection direction = LTR, bool directionalOverride = false, bool characterScanForCodePath = true, RoundingHacks roundingHacks = RunRounding | WordRounding)
109 , m_expansion(expansion)
129 explicit TextRun(StringView s, float xpos = 0, float expansion = 0, ExpansionBehavior expansionBehavior = AllowTrailingExpansion | ForbidLeadingExpansion, TextDirection direction = LTR, bool directionalOverride = false, bool characterScanForCodePath = true, RoundingHacks roundingHacks = RunRounding | WordRounding)
134 , m_expansion(expansion)
197 float expansion() const { return m_expansion; }
/macosx-10.10/ICU-531.30/icuSources/common/
H A Ducol_data.h43 uint32_t expansion; /* uint32_t *expansion; */ member in struct:__anon828
50 expansion */
51 uint32_t expansionCESize; /* array of maximum expansion size
52 corresponding to the expansion
H A Ducol_swp.cpp239 header.expansion= ds->readUInt32(inHeader->expansion);
261 ds->swapArray32(ds, inBytes+header.options, header.expansion-header.options,
266 if(header.mappingPosition!=0 && header.expansion!=0) {
269 count=header.contractionIndex-header.expansion;
272 count=header.mappingPosition-header.expansion;
274 ds->swapArray32(ds, inBytes+header.expansion, (int32_t)count,
275 outBytes+header.expansion, pErrorCode);
296 /* swap the max expansion table */
/macosx-10.10/Heimdal-398.1.2/lib/libedit/examples/
H A Dfileman.c121 char* expansion; local
124 result = history_expand(s, &expansion);
127 fprintf(stderr, "%s\n", expansion);
129 add_history(expansion);
130 execute_line(expansion);
132 free(expansion);
/macosx-10.10/WebCore-7600.1.25/rendering/
H A DInlineBox.h246 int expansion() const { return m_bitfields.expansion(); } function in class:WebCore::InlineBox
359 signed expansion() const { return m_expansion; } function in class:WebCore::InlineBox::InlineBoxBitfields
360 void setExpansion(signed expansion) { m_expansion = expansion; } argument
410 int expansion() { return m_bitfields.expansion(); } function in class:WebCore::InlineBox
411 void setExpansion(int expansion) { m_bitfields.setExpansion(expansion); } argument
H A DInlineTextBox.h138 m_logicalWidth -= expansion();
176 | (expansion() && nextLeafChild() && !nextLeafChild()->isLineBreak() ? TextRun::AllowTrailingExpansion : TextRun::ForbidTrailingExpansion);
/macosx-10.10/emacs-93/emacs/lisp/progmodes/
H A Dcmacexp.el32 ;; expansion is put in a separate buffer. A user option allows the
36 ;; region with the expansion. Both the preprocessor name and the
44 ;; A c-macro-expansion function is provided for non-interactive use.
76 ;; making comments visible in the expansion.
88 ;; macro expansion is often inaccurate.
158 For use inside Lisp programs, see also `c-macro-expansion'."
165 (expansion ""))
177 "Buffer is read only: displaying expansion in alternate window")
183 (setq expansion (c-macro-expansion star
[all...]
/macosx-10.10/cxxfilt-11/cxxfilt/libiberty/
H A Dcp-demangle.h123 int expansion; member in struct:d_info
H A Dcp-demangle.c218 /* The length of the simple expansion. */
220 /* The results of a full, verbose, expansion. This is used when
223 /* The length of the full expansion. */
1123 di->expansion += 3;
1286 di->expansion += sizeof "operator" + ret->u.s_operator.op->len - 2;
1393 di->expansion -= len - sizeof "(anonymous namespace)";
1526 di->expansion += 20;
1532 di->expansion -= 5;
1536 di->expansion -= 10;
1581 di->expansion
[all...]
/macosx-10.10/ncurses-44/ncurses/progs/
H A Dinfocmp.c620 const char *expansion = 0; local
653 expansion = strnames[i];
659 if (!expansion) {
669 expansion = ap->to;
678 if (!expansion
690 expansion = lookup_params(std_modes, buf2, buf3);
694 if (!expansion
707 expansion = lookup_params(private_modes, buf2, buf3);
711 if (!expansion
723 expansion
[all...]
/macosx-10.10/swig-12/Lib/typemaps/
H A Dcstrings.swg137 * %cstring_mutable(TYPEMAP [, expansion])
140 * It may change size up to a user-defined expansion.
154 (int res, Char* t = 0, size_t n = 0, int alloc = 0, size_t expansion = 0) {
156 expansion += EXP;
162 $1 = %new_array(n+expansion, $*1_ltype);
/macosx-10.10/cxxfilt-11/cxxfilt/opcodes/
H A Dmep-asm.c467 char *expansion;
525 char *e = mac->expansion;
574 char *expansion = 0;
623 expansion = 0;
624 expansion = expand_macro (args, narg, macro);
626 if (expansion)
628 result = str_append (result, expansion, strlen (expansion));
629 free (expansion);
698 /* A macro-expansion wa
466 char *expansion; member in struct:__anon8074
573 char *expansion = 0; local
[all...]
/macosx-10.10/cxxfilt-11/cxxfilt/cpu/
H A Dsimplify.inc193 (define-pmacro (define-normal-macro-insn name comment attrs syntax expansion)
195 (define-full-minsn name comment attrs syntax expansion)
/macosx-10.10/cxxfilt-11/cxxfilt/include/
H A Dhp-symtab.h397 unsigned int expansion: 1; member in struct:dntt_type_function
1044 unsigned int expansion: 1; /* 1=template expansion. */ member in struct:dntt_type_class
1053 dnttpointer nextexp ; /* Ptr to next expansion. */
1191 dnttpointer expansions ; /* ptr to expansion list */
1261 long future1 ; /* expansion */
1263 dnttpointer ptr2 ; /* to expansion */
1289 unsigned int expansion: 1; /* 1 = function expansion */ member in struct:dntt_type_doc_function
1748 unsigned int fExpansion: 1; /* function expansion */
1838 unsigned int expansion : 1;/* template expansion */ member in struct:quick_class
[all...]

Completed in 318 milliseconds

1234