Searched refs:forms (Results 1 - 25 of 121) sorted by relevance

12345

/macosx-10.9.5/ncurses-42/ncurses/Ada95/src/
H A DMakefile.in96 $(ABASE)-forms.ali \
97 $(ABASE)-forms-field_types.ali \
98 $(ABASE)-forms-field_types-alpha.ali \
99 $(ABASE)-forms-field_types-alphanumeric.ali \
100 $(ABASE)-forms-field_types-intfield.ali \
101 $(ABASE)-forms-field_types-numeric.ali \
102 $(ABASE)-forms-field_types-regexp.ali \
103 $(ABASE)-forms-field_types-enumeration.ali \
104 $(ABASE)-forms-field_types-ipv4_address.ali \
105 $(ABASE)-forms
[all...]
/macosx-10.9.5/emacs-92/emacs/lisp/emacs-lisp/
H A Dbenchmark.el25 ;; Utilities for timing the execution of forms, including the time
34 (defmacro benchmark-elapse (&rest forms)
40 ,@forms
49 (defmacro benchmark-run (&optional repetitions &rest forms)
51 If REPETITIONS is supplied as a number, run forms that many times,
58 (setq forms (cons repetitions forms)
68 ,@forms))
70 `(benchmark-elapse ,@forms))
77 (defmacro benchmark-run-compiled (&optional repetitions &rest forms)
[all...]
H A Dmacroexp.el44 ;; We use this special macro to iteratively process forms and share list
47 ;; input forms.
79 (defun macroexpand-all-forms (forms &optional skip)
80 "Return FORMS with macros expanded. FORMS is a list of forms.
83 (macroexp-accumulate (form forms)
91 CLAUSES is a list of lists of forms; any clause that's not a list is ignored.
96 (macroexpand-all-forms clause skip)
106 ;; forms. We just process it `in reverse' -- first we expand all the
108 (macroexpand (macroexpand-all-forms for
[all...]
H A Delint.el77 '((while test &rest forms)
251 (defvar elint-buffer-forms nil
252 "The top forms in a buffer.
263 Returns the forms."
265 (local-variable-p 'elint-buffer-forms (current-buffer))
269 elint-buffer-forms
271 (set (make-local-variable 'elint-buffer-forms) (elint-get-top-forms))
273 (elint-init-env elint-buffer-forms))
275 elint-buffer-forms))
[all...]
H A Dsregex.el216 ;; has one of the following forms:
250 (defmacro sregex-save-match-data (&rest forms) (cons 'save-match-data forms))
470 has one of the following forms:
/macosx-10.9.5/zsh-60/zsh/Functions/Misc/
H A Dzcalc98 local line ans base defbase forms match mbegin mend psvar optlist opt arg
105 forms=( '%2$g' '%.*g' '%.*f' '%.*E' '')
252 if [[ -z $forms[outform] ]]; then
255 printf "$forms[outform]\n" $outdigits $ans
/macosx-10.9.5/emacs-92/emacs/lisp/
H A Dforms.el0 ;;; forms.el --- Forms mode: edit a file as a form to fill in
31 ;; The names of all variables and functions start with 'forms-'.
32 ;; Names which start with 'forms--' are intended for internal use, and
35 ;; All variables are buffer-local, to enable multiple forms visits
37 ;; Variable `forms--mode-setup' is local to *ALL* buffers, for it
38 ;; controls if forms-mode has been enabled in a buffer.
53 ;; data file and the forms format. This file buffer will be used to
54 ;; present the forms.
58 ;; Forms mode is invoked using M-x `forms-find-file' control-file.
59 ;; Alternatively `forms
296 (defgroup forms nil function
[all...]
/macosx-10.9.5/WebKit-7537.78.2/blackberry/WebCoreSupport/
H A DCredentialManager.cpp57 RefPtr<HTMLCollection> forms = docForms; local
58 size_t sourceLength = forms->length();
60 Node* node = forms->item(i);
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/
H A DSVGGlyph.cpp32 // Helper functions to determine the arabic character forms (initial, medial, terminal, isolated)
85 Vector<SVGGlyph::ArabicForm> forms; local
97 return forms;
101 // Start identifying arabic forms
104 forms.insert(0, processArabicFormDetection(input[i], lastCharShapesRight, forms.isEmpty() ? 0 : &forms.first()));
107 forms.append(processArabicFormDetection(input[i], lastCharShapesRight, forms.isEmpty() ? 0 : &forms
[all...]
/macosx-10.9.5/curl-78.94.1/curl/packages/OS400/
H A Dccsidcurl.c633 Curl_formadd_release_local(struct curl_forms * forms, int nargs, int skip) argument
638 if (Curl_is_formadd_string(forms[nargs].option))
639 if (forms[nargs].value)
640 free((char *) forms[nargs].value);
642 free((char *) forms);
647 Curl_formadd_convert(struct curl_forms * forms, argument
655 if (formx < 0 || !forms[formx].value)
659 l = (int) forms[lengthx].value;
661 l = strlen(forms[formx].value) + 1;
669 forms[form
698 struct curl_forms * forms; local
[all...]
/macosx-10.9.5/curl-78.94.1/curl/src/
H A Dtool_formparse.c271 struct curl_forms *forms = NULL; local
278 forms = malloc((count+1)*sizeof(struct curl_forms));
279 if(!forms) {
286 forms[i].option = start->form.option;
287 forms[i].value = start->form.value;
289 forms[count].option = CURLFORM_END;
293 CURLFORM_ARRAY, forms, CURLFORM_END) != 0) {
295 Curl_safefree(forms);
299 Curl_safefree(forms);
/macosx-10.9.5/ncurses-42/ncurses/Ada95/gen/
H A DMakefile.in137 $(ADA_SRCDIR)/$(ABASE)-forms.ads \
142 $(ADA_SRCDIR)/$(ABASE)-forms-form_user_data.ads \
143 $(ADA_SRCDIR)/$(ABASE)-forms-field_types.ads \
144 $(ADA_SRCDIR)/$(ABASE)-forms-field_user_data.ads \
152 $(srcdir)/$(ABASE)-forms.ads.m4 \
157 $(srcdir)/$(ABASE)-forms-form_user_data.ads.m4 \
158 $(srcdir)/$(ABASE)-forms-field_types.ads.m4 \
159 $(srcdir)/$(ABASE)-forms-field_user_data.ads.m4 \
321 $(ADA_SRCDIR)/$(ABASE)-forms.ads: $(srcdir)/$(ABASE)-forms
[all...]
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/build/
H A Dlib-shared.mk7 ## Redistribution and use in source and binary forms, with or without
H A Dmkversion9 ## Redistribution and use in source and binary forms, with or without
61 * Redistribution and use in source and binary forms, with or without
H A Dman.mk7 ## Redistribution and use in source and binary forms, with or without
/macosx-10.9.5/emacs-92/emacs/man/
H A Dmakefile.w32-in35 $(infodir)/forms $(infodir)/gnus $(infodir)/message \
47 ediff.dvi forms.dvi gnus.dvi message.dvi emacs-mime.dvi \
200 $(infodir)/forms: forms.texi
201 $(MAKEINFO) forms.texi
202 forms.dvi: forms.texi
203 $(ENVADD) $(TEXI2DVI) $(srcdir)/forms.texi
360 $(infodir)/ediff* $(infodir)/forms* \
H A DMakefile.in37 ../info/dired-x ../info/ediff ../info/forms ../info/gnus \
47 ediff.dvi forms.dvi gnus.dvi message.dvi emacs-mime.dvi \
195 ../info/forms: forms.texi
196 cd $(srcdir); $(MAKEINFO) forms.texi
197 forms.dvi: forms.texi
198 $(ENVADD) $(TEXI2DVI) ${srcdir}/forms.texi
/macosx-10.9.5/swig-10/Lib/python/
H A DREADME15 cstring.i Various forms of C character string handling
16 cwstring.i Various forms of C wchar_t string handling
/macosx-10.9.5/Security-55471.14.18/include/security_keychain/
H A DSecImportExportUtils.cpp286 const algForms *forms; local
289 forms = opensslAlgForms;
292 forms = bsafeAlgForms;
295 forms = ssh1AlgForms;
298 forms = ssh2AlgForms;
306 form = forms[algDex].priv;
310 form = forms[algDex].pub;
815 * Passphrase is returned in AT MOST one of two forms:
/macosx-10.9.5/Security-55471.14.18/libsecurity_keychain/Security/
H A DSecImportExportUtils.cpp286 const algForms *forms; local
289 forms = opensslAlgForms;
292 forms = bsafeAlgForms;
295 forms = ssh1AlgForms;
298 forms = ssh2AlgForms;
306 form = forms[algDex].priv;
310 form = forms[algDex].pub;
815 * Passphrase is returned in AT MOST one of two forms:
/macosx-10.9.5/Security-55471.14.18/libsecurity_keychain/lib/
H A DSecImportExportUtils.cpp286 const algForms *forms; local
289 forms = opensslAlgForms;
292 forms = bsafeAlgForms;
295 forms = ssh1AlgForms;
298 forms = ssh2AlgForms;
306 form = forms[algDex].priv;
310 form = forms[algDex].pub;
815 * Passphrase is returned in AT MOST one of two forms:
/macosx-10.9.5/vim-53/runtime/syntax/
H A Dcynpp.vim11 " the compiled and linked executable forms a hardware
/macosx-10.9.5/curl-78.94.1/curl/lib/
H A Dformdata.c317 struct curl_forms *forms = NULL; local
340 if(array_state && forms) {
342 option = forms->option;
343 array_value = (char *)forms->value;
345 forms++; /* advance this to next entry */
365 forms = va_arg(params, struct curl_forms *);
366 if(forms)
/macosx-10.9.5/CPANInternal-140/Scope-Guard/lib/Scope/
H A DGuard.pm57 This module provides a convenient way to perform cleanup or other forms of resource
/macosx-10.9.5/WebKit-7537.78.2/scripts/
H A Dgenerate-webkitversion.pl10 # Redistribution and use in source and binary forms, with or without
89 * Redistribution and use in source and binary forms, with or without

Completed in 396 milliseconds

12345