Searched refs:words (Results 251 - 275 of 329) sorted by relevance

<<11121314

/macosx-10.10.1/emacs-93/emacs/etc/
H A Dsurvival.tex361 \mkey{M-x ispell-region} check spelling of all words in region
H A Dcalccard.tex507 Variable names are single digits or whole words.
/macosx-10.10.1/passwordserver_sasl-193/cyrus_sasl/plugins/
H A Dotp.c694 /* Convert the 6 words into binary data */
696 char *words, unsigned char *bin, const EVP_MD *md)
710 strcpy(buf, words);
779 utils->log(NULL, SASL_LOG_DEBUG, "not enough words (%d)", i);
695 word2bin(const sasl_utils_t *utils, char *words, unsigned char *bin, const EVP_MD *md) argument
/macosx-10.10.1/tcl-105/tcl_ext/expect/expect/example/
H A Dtkpasswd179 if {0==[catch {open /usr/dict/words} file]} {
/macosx-10.10.1/tcl-105/tcl_ext/trf/trf/patches/v8.1b2/
H A Dtcl.h.orig880 int words[1]; /* Multiple integer words for key.
/macosx-10.10.1/vim-55/runtime/indent/
H A DGenericIndent.vim295 call DebugGenericIndent(expand("<sfile>").": "."Multiple words in line, checking if last is indent")
/macosx-10.10.1/vim-55/runtime/syntax/
H A Dada.vim44 " There are 72 reserved words in total in Ada2005. Some keywords are
H A Dmush.vim86 syntax keyword mushFunction contained vunit wait where width wipe wordpos words
H A Dsas.vim7 " Added words to cases that didn't fit anywhere.
H A Dsisu.vim103 "single words bold italicise etc. "workon
H A Dnasm.vim71 " Labels can be dereferenced with '$' to destinguish them from reserved words
H A Dtcl.vim120 " These words are dual purpose.
/macosx-10.10.1/CPANInternal-159.1/Template-Toolkit-2.25/lib/Template/Plugin/
H A DString.pm569 string content. In other words, a directive like:
/macosx-10.10.1/bash-94.1.2/bash-3.2/
H A Dprint_cmd.c406 /* A function to print the words of a simple command when set -x is on. */
781 /* A function to print the words of an arithmetic command when set -x is on. */
800 command_print_word_list (simple_command->words, " ");
/macosx-10.10.1/tcl-105/tcl/tcl/generic/
H A Dtcl.h1124 int words[1]; /* Multiple integer words for key. The actual member in union:Tcl_HashEntry::__anon12492
1997 * words after substitution is complete.
2046 int numWords; /* Total number of words in command. May be
2049 * words of the command. Initially points to
/macosx-10.10.1/tcl-105/tcl84/tcl/generic/
H A Dtcl.h1180 int words[1]; /* Multiple integer words for key.
2154 int numWords; /* Total number of words in command. May
2157 * the words of the command. Initially
1177 int words[1]; /* Multiple integer words for key. member in union:Tcl_HashEntry::__anon12573
/macosx-10.10.1/zsh-61/zsh/Src/
H A Dexec.c2336 /* These describe the type of expansions that need to be done on the words
3817 char **words = spacesplit(buf, 0, 1, 0); local
3819 while (*words) {
3821 shtokenize(*words);
3822 addlinknode(ret, *words++);
H A Dhashtable.c997 /* hash table containing the reserved words */
1002 /* Build the hash table containing zsh's reserved words. */
1332 zfree(he->words, he->nwords*2*sizeof(short));
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/servers/slapd/
H A Dschema_init.c2016 char *val, **values, **words, *c; local
2035 /* Isolate how many words there are */
2044 words = (char **)ch_malloc( count * sizeof(char *) );
2047 words[i] = c;
2051 /* Work through the asserted value's words, to see if at least some
2052 * of the words are there, in the same order. */
2062 /* Single letter words need to at least match one word's initial */
2064 if( !strncasecmp( assertv->bv_val + nextchunk, words[i], 1 )) {
2075 /* See if this phonetic chunk is in the remaining words of *value */
2095 /* If some of the words wer
[all...]
/macosx-10.10.1/emacs-93/emacs/lisp/textmodes/
H A Dorg.el2335 single words, but you can say: I *really* *mean* *this*.
3862 between words."
7012 (let* ((words (org-split-string string "[ \t\n]+"))
7013 (maxword (apply 'max (mapcar 'org-string-width words)))
7016 (org-do-wrap words (max maxword width)))
7019 (setq ll (org-do-wrap words maxword))
7022 (setq ll words)
7025 (setq ll (org-do-wrap words w)))
7030 (defun org-do-wrap (words width)
7033 (while words
[all...]
/macosx-10.10.1/emacs-93/emacs/lisp/net/
H A Drcirc.el2021 (while (re-search-forward (regexp-opt keywords 'words) nil t)
2031 (while (re-search-forward (regexp-opt rcirc-bright-nicks 'words) nil t)
2480 ;; When using M-x flyspell-mode, only check words after the prompt
/macosx-10.10.1/llvmCore-3425.0.34/lib/Support/
H A DAPInt.cpp97 // Calculate the number of words to copy
98 unsigned words = std::min<unsigned>(bigVal.size(), getNumWords()); local
99 // Copy the words from bigVal to pVal
100 memcpy(pVal, bigVal.data(), words * APINT_WORD_SIZE);
135 // assume case where both are single words is already handled
208 /// In other words, if y > x then this function returns 1, otherwise 0.
298 // Split x into high and low words
536 // Otherwise, compare all words
766 /// non-overlapping, of Words words, by Shift, which must be less than 64.
894 // extract the high 52 bits from the correct words i
[all...]
/macosx-10.10.1/vim-55/runtime/
H A Doptwin.vim424 call append("$", "spellfile\tfile that \"zg\" adds good words to")
842 call append("$", "cinwords\tlist of words that cause more C-indent")
1258 call append("$", "sessionoptions\tlist of words that specifies what to put in a session file")
1260 call append("$", "viewoptions\tlist of words that specifies what to save for :mkview")
/macosx-10.10.1/zsh-61/zsh/Src/Modules/
H A Dparameter.c1101 h = he->node.nam + he->words[iw * 2];
1102 e = he->node.nam + he->words[iw * 2 + 1];
/macosx-10.10.1/zsh-61/zsh/Src/Zle/
H A Dcompctl.c244 /* without -n, the words of the current line are assigned to the given
2795 * get the words we have to expand. */
3390 /* And add the resulting words. */
3628 * (from a parameter or a list of words). */
3709 * get the words we have to expand. */
3735 /* And add the resulting words as matches. */
3765 h = he->node.nam + he->words[iwords*2];
3766 e = he->node.nam + he->words[iwords*2+1];
3799 /* Add reserved words */
3891 /* So we restrict the words
[all...]

Completed in 527 milliseconds

<<11121314