Searched refs:word (Results 1 - 6 of 6) sorted by relevance
| /PHP_5_4/ext/date/lib/ |
| H A D | parse_date.c | 570 char *word; local 579 word = calloc(1, end - begin + 1); 580 memcpy(word, begin, end - begin); 583 if (strcasecmp(word, tp->name) == 0) { 589 free(word); 603 char *word; local 612 word = calloc(1, end - begin + 1); 613 memcpy(word, begin, end - begin); 616 if (strcasecmp(word, tp->name) == 0) { 621 free(word); 650 char *word; local 704 zone_search(const char *word, long gmtoffset, int isdst) argument 763 char *word; local [all...] |
| H A D | parse_date.re | 568 char *word; 577 word = calloc(1, end - begin + 1); 578 memcpy(word, begin, end - begin); 581 if (strcasecmp(word, tp->name) == 0) { 587 free(word); 601 char *word; 610 word = calloc(1, end - begin + 1); 611 memcpy(word, begin, end - begin); 614 if (strcasecmp(word, tp->name) == 0) { 619 free(word); [all...] |
| /PHP_5_4/ext/pspell/ |
| H A D | pspell.c | 48 /* Largest ignored word can be 999 characters (this seems sane enough), 99 ZEND_ARG_INFO(0, word) 104 ZEND_ARG_INFO(0, word) 115 ZEND_ARG_INFO(0, word) 120 ZEND_ARG_INFO(0, word) 490 /* {{{ proto bool pspell_check(int pspell, string word) 491 Returns true if word is valid */ 496 char *word; local 499 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ls", &scin, &word, &word_len) == FAILURE) { 505 if (pspell_manager_check(manager, word)) { 518 char *word; local 578 char *word; local 608 char *word; local [all...] |
| /PHP_5_4/ext/standard/ |
| H A D | metaphone.c | 28 static int metaphone(unsigned char *word, int word_len, long max_phonemes, char **phoned_word, int traditional); 111 /* Look at the next letter in the word */ 112 #define Next_Letter (toupper(word[w_idx+1])) 113 /* Look at the current letter in the word */ 114 #define Curr_Letter (toupper(word[w_idx])) 116 #define Look_Back_Letter(n) (w_idx >= n ? toupper(word[w_idx-n]) : '\0') 120 #define After_Next_Letter (Next_Letter != '\0' ? toupper(word[w_idx+2]) \ 122 #define Look_Ahead_Letter(n) (toupper(Lookahead(word+w_idx, n))) 127 static char Lookahead(char *word, int how_far) argument 131 for (idx = 0; word[id 167 metaphone(unsigned char *word, int word_len, long max_phonemes, char **phoned_word, int traditional) argument [all...] |
| /PHP_5_4/ext/pcre/pcrelib/ |
| H A D | pcre_internal.h | 1126 live at the top end of the options word, but that got almost full, so now they 1127 are in a 16-bit flags word. From release 8.00, PCRE_NOPARTIAL is unused, as 1521 #define STRING_word0 "word\0" 2549 #define cbit_word 160 /* [:word:] or \w */
|
| /PHP_5_4/ext/enchant/ |
| H A D | enchant.c | 107 ZEND_ARG_INFO(0, word) 113 ZEND_ARG_INFO(0, word) 583 creates a dictionary using a PWL file. A PWL file is personal word file one word per line. It must exist before the call.*/ 717 /* {{{ proto bool enchant_dict_quick_check(resource dict, string word [, array &suggestions]) 718 If the word is correctly spelled return true, otherwise return false, if suggestions variable 723 char *word; local 727 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rs|z/", &dict, &word, &wordlen, &sugg) == FAILURE) { 738 if (enchant_dict_check(pdict->pdict, word, wordlen) > 0) { 747 suggs = enchant_dict_suggest(pdict->pdict, word, wordle 769 char *word; local 788 char *word; local 821 char *word; local 840 char *word; local 859 char *word; local [all...] |
Completed in 51 milliseconds