Home
last modified time | relevance | path

Searched refs:word (Results 1 – 25 of 71) sorted by relevance

123

/PHP-5.5/ext/iconv/tests/
H A Dbug51250.phpt9 var_dump(iconv_mime_decode("Legal encoded-word: =?utf-8?B?Kg==?= .", $m));
10 var_dump(iconv_mime_decode("Legal encoded-word: =?utf-8?Q?*?= .", $m));
14 var_dump(iconv_mime_decode("Legal encoded-word: =?utf-8?B?Kg==?= ."));
15 var_dump(iconv_mime_decode("Legal encoded-word: =?utf-8?Q?*?= ."));
20 string(23) "Legal encoded-word: * ."
21 string(23) "Legal encoded-word: * ."
22 string(24) "Illegal encoded-word: ."
23 string(23) "Illegal encoded-word: ."
24 string(23) "Legal encoded-word: * ."
25 string(23) "Legal encoded-word: * ."
[all …]
/PHP-5.5/ext/standard/
H A Dmetaphone.c28 static int metaphone(unsigned char *word, int word_len, long max_phonemes, char **phoned_word, int …
112 #define Next_Letter (toupper(word[w_idx+1]))
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) in Lookahead() argument
131 for (idx = 0; word[idx] != '\0' && idx < how_far; idx++); in Lookahead()
134 letter_ahead = word[idx]; /* idx will be either == to how_far or in Lookahead()
167 static int metaphone(unsigned char *word, int word_len, long max_phonemes, char **phoned_word, int … in metaphone() argument
[all …]
/PHP-5.5/ext/pcre/tests/
H A Dbug34790.phpt6 $string = 'what the word and the other word the';
7 preg_match_all('/(?P<word>the)/', $string, $matches);
8 return $matches['word'];
H A Dpreg_replace_callback_error.phpt28 var_dump(preg_replace_callback($regex, 'integer word'));
/PHP-5.5/ext/com_dotnet/
H A DREADME57 $word = new COM("word.application");
58 print "Loaded Word, version {$word->Version}\n";
59 $word->Visible = 1;
60 $word->Documents->Add();
61 $word->Selection->TypeText("This is a test...");
62 $word->Documents[1]->SaveAs("Useless test.doc");
63 $word->Quit();
/PHP-5.5/ext/enchant/
H A Denchant.c107 ZEND_ARG_INFO(0, word)
113 ZEND_ARG_INFO(0, word)
722 char *word; local
737 if (enchant_dict_check(pdict->pdict, word, wordlen) > 0) {
768 char *word; local
787 char *word; local
820 char *word; local
830 enchant_dict_add_to_personal(pdict->pdict, word, wordlen);
839 char *word; local
849 enchant_dict_add_to_session(pdict->pdict, word, wordlen);
[all …]
/PHP-5.5/ext/com_dotnet/tests/
H A Dbug66431_1.phpt8 new COM("word.application", NULL, CP_UTF8);
22 $Wrd = new COM("word.application", NULL, CP_UTF8);
30 $Wrd = new COM("word.application", NULL, CP_UTF8);
37 /* trim the returned text as we'll get windows eol from a word doc. */
/PHP-5.5/ext/pspell/
H A Dpspell.c99 ZEND_ARG_INFO(0, word)
104 ZEND_ARG_INFO(0, word)
115 ZEND_ARG_INFO(0, word)
120 ZEND_ARG_INFO(0, word)
496 char *word; in PHP_FUNCTION() local
505 if (pspell_manager_check(manager, word)) { in PHP_FUNCTION()
518 char *word; in PHP_FUNCTION() local
533 wl = pspell_manager_suggest(manager, word); in PHP_FUNCTION()
578 char *word; in PHP_FUNCTION() local
608 char *word; in PHP_FUNCTION() local
[all …]
/PHP-5.5/ext/mbstring/tests/
H A Dmb_decode_mimeheader_variation2.phpt11 * Description: Decodes the MIME "encoded-word" in the string
37 foreach ($encoded_words as $word) {
38 var_dump(bin2hex(mb_decode_mimeheader($word)));
H A Dmb_decode_mimeheader_variation3.phpt11 * Description: Decodes the MIME "encoded-word" in the string
H A Dmb_decode_mimeheader_basic.phpt11 * Description: Decodes the MIME "encoded-word" in the string
H A Dmb_decode_mimeheader_error.phpt11 * Description: Decodes the MIME "encoded-word" in the string
H A Dmb_encode_mimeheader_variation6.phpt12 …* Description: Converts the string to MIME "encoded-word" in the format of =?charset?(B|Q)?encoded…
/PHP-5.5/ext/intl/tests/
H A Duconverter_oop_callback.phpt27 foreach(array("regular", "irregul\xC1\xA1r", "\xC2\xA1unsupported!") as $word) {
28 $c->convert($word);
/PHP-5.5/ext/standard/tests/strings/
H A Dstrrchr_basic.phpt12 var_dump( strrchr("Hello, World", "Hello") ); //needle as a first word of haystack
20 //needle as second word of haystack
H A Ducwords_variation5.phpt6 * Description: Uppercase the first character of each word in a string
H A Ducwords_error.phpt6 * Description: Uppercase the first character of each word in a string
H A Ducwords_basic.phpt6 * Description: Uppercase the first character of each word in a string
/PHP-5.5/ext/openssl/tests/
H A Dopenssl_pbkdf2.phpt18 var_dump(bin2hex(openssl_pbkdf2("pass\0word", "sa\0lt", 16, 4096)));
/PHP-5.5/ext/pdo_pgsql/tests/
H A Dbug62479.phpt61 $sql = sprintf($template, "my pass''word");
64 $testConn = new PDO($conf['ENV']['PDOTEST_DSN'], $user, "my pass'word");
/PHP-5.5/ext/ereg/tests/
H A Deregi_replace_basic.phpt24 var_dump(eregi_replace('([[:lower:]]+) word', '\\1_character', $string));
/PHP-5.5/Zend/
H A Dacinclude.m4101 AC_DEFINE(WORDS_BIGENDIAN, [], [Define if processor uses big-endian word])
198 AC_MSG_CHECKING([whether FPU control word can be manipulated by inline assembler])
216 …AC_DEFINE(HAVE_FPU_INLINE_ASM_X86, 1, [whether FPU control word can be manipulated by inline assem…
/PHP-5.5/ext/mbstring/oniguruma/doc/
H A DRE39 \w word character
47 \W non word char
141 \b word boundary
142 \B not word boundary
179 word alphanumeric, "_" and multibyte characters
201 word Letter | Mark | Decimal_Number | Connector_Punctuation
236 (All characters of the name must be a word character.)
/PHP-5.5/ext/date/lib/
H A Dparse_date.re536 char *word;
546 memcpy(word, begin, end - begin);
555 free(word);
569 char *word;
579 memcpy(word, begin, end - begin);
587 free(word);
616 char *word;
635 free(word);
677 if (strcasecmp("utc", word) == 0 || strcasecmp("gmt", word) == 0) {
711 char *word;
[all …]
H A Dtimelib.m460 AC_DEFINE(WORDS_BIGENDIAN, [], [Define if processor uses big-endian word])

Completed in 43 milliseconds

123