Searched defs:word (Results 1 - 5 of 5) 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...] |
| /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/main/ |
| H A D | rfc1867.c | 801 char *key = NULL, *word = pair; local 841 efree(word);
|
| /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 9 milliseconds