| /PHP_TRUNK/build/ |
| H A D | shtool | 479 text="$*" 501 if [ ".$opt_e" = .yes ] && [ ".`echo $text | grep '%[Bb]'`" != . ]; then 552 if [ ".$opt_e" = .yes ] && [ ".`echo $text | grep '%[uUgG]'`" != . ]; then 581 if [ ".$opt_e" = .yes ] && [ ".`echo $text | grep '%U'`" != . ]; then 615 if [ ".$opt_e" = .yes ] && [ ".`echo $text | grep '%[gG]'`" != . ]; then 646 if [ ".$opt_e" = .yes ] && [ ".`echo $text | grep '%g'`" != . ]; then 681 if [ ".$opt_e" = .yes ] && [ ".`echo $text | grep '%h'`" != . ]; then 698 if [ ".$opt_e" = .yes ] && [ ".`echo $text | grep '%d'`" != . ]; then 723 if [ ".$opt_e" = .yes ] && [ ".`echo $text | grep '%[DMYm]'`" != . ]; then 752 text [all...] |
| /PHP_TRUNK/ext/phar/tests/files/ |
| H A D | pear2coverage.phar.php | 125 $output->writeAttribute('type', 'text'); 192 $output->writeAttribute('type', 'text/css'); 200 $output->text('Aggregate Code Coverage for all tests'); 206 $output->text('File ' . $name . ' code coverage'); 214 $output->text(str_replace($testpath . '/', '', $testfile)); 235 $output->text("\n "); 237 $output->text("\n "); 243 $output->text("\n "); 247 $output->writeAttribute('type', 'text/css'); 249 $output->text("\ [all...] |
| /PHP_TRUNK/ext/sybase_ct/tests/ |
| H A D | test.inc | 13 // {{{ bool sybase_msg_handler(int msgnumber, int severity, int state, int line, string text) 15 function sybase_msg_handler($msgnumber, $severity, $state, $line, $text) { 22 chop($text) 30 // {{{ public static bool static_handler(int msgnumber, int severity, int state, int line, string text) 32 static function static_handler($msgnumber, $severity, $state, $line, $text) { 33 return sybase_msg_handler($msgnumber, $severity, $state, $line, $text); 37 // {{{ public bool static_handler(int msgnumber, int severity, int state, int line, string text) 39 function handler($msgnumber, $severity, $state, $line, $text) { 40 return sybase_msg_handler($msgnumber, $severity, $state, $line, $text);
|
| /PHP_TRUNK/ext/xmlrpc/libxmlrpc/ |
| H A D | xml_element.c | 213 simplestring_free(&root->text); 270 simplestring_init(&elem->text); 273 simplestring_addn(&elem->text, "", 0); 279 static int xml_elem_writefunc(int (*fptr)(void *data, const char *text, int size), const char *text, void *data, int len) argument 281 return fptr && text ? fptr(data, text, len ? len : strlen(text)) : 0; 376 static void xml_element_serialize(xml_element *el, int (*fptr)(void *data, const char *text, int size), void *data, XML_ELEM_OUTPUT_OPTIONS options, int depth) argument 438 /* if no text an 502 file_out_fptr(void *f, const char *text, int size) argument 509 simplestring_out_fptr(void *f, const char *text, int size) argument [all...] |
| H A D | xml_element.h | 151 simplestring text; /* text contained between element begin/end pairs */ member in struct:_xml_element 190 #define xml_elem_get_val(el) (char *)((el) ? el->text.str : NULL)
|
| H A D | xml_to_dandarpc.c | 91 XMLRPC_SetValueString(xCurrent, el->text.str, el->text.len); 94 XMLRPC_SetValueInt(xCurrent, atoi(el->text.str)); 97 XMLRPC_SetValueBoolean(xCurrent, atoi(el->text.str)); 100 XMLRPC_SetValueDouble(xCurrent, atof(el->text.str)); 103 XMLRPC_SetValueDateTime_ISO8601(xCurrent, el->text.str); 107 base64_decode_xmlrpc(&buf, el->text.str, el->text.len); 150 XMLRPC_RequestSetMethodName(request, el->text.str); 205 simplestring_addn(&elem_val->text, XMLRPC_GetValueStrin [all...] |
| H A D | xml_to_soap.c | 346 XMLRPC_SetValueString(xCurrent, el->text.str, el->text.len); 349 XMLRPC_SetValueInt(xCurrent, atoi(el->text.str)); 352 XMLRPC_SetValueBoolean(xCurrent, atoi(el->text.str)); 356 XMLRPC_SetValueDouble(xCurrent, atof(el->text.str)); 362 XMLRPC_SetValueDateTime_ISO8601(xCurrent, el->text.str); 366 base64_decode_xmlrpc(&buf, el->text.str, el->text.len); 501 simplestring_addn(&elem_val->text, XMLRPC_GetValueString(node), XMLRPC_GetValueStringLen(node)); 506 simplestring_add(&elem_val->text, bu [all...] |
| H A D | xml_to_xmlrpc.c | 123 XMLRPC_SetValueString(current_val, el->text.str, el->text.len); 126 XMLRPC_SetValueID_Case(current_val, el->text.str, 0, xmlrpc_case_exact); 129 XMLRPC_SetValueInt(current_val, atoi(el->text.str)); 132 XMLRPC_SetValueBoolean(current_val, atoi(el->text.str)); 135 XMLRPC_SetValueDouble(current_val, atof(el->text.str)); 138 XMLRPC_SetValueDateTime_ISO8601(current_val, el->text.str); 142 base64_decode_xmlrpc(&buf, el->text.str, el->text.len); 161 XMLRPC_RequestSetMethodName(request, el->text [all...] |
| H A D | xmlrpc.c | 185 static int date_from_ISO8601 (const char *text, time_t * value) { argument 192 if (strchr (text, '-')) { 193 char *p = (char *) text, *p2 = buf; 204 text = buf; 215 XMLRPC_IS_NUMBER(text[i]) 216 tm.tm_year += (text[i]-'0')*n; 222 XMLRPC_IS_NUMBER(text[i]) 223 tm.tm_mon += (text[i+4]-'0')*n; 231 XMLRPC_IS_NUMBER(text[i]) 232 tm.tm_mday += (text[ [all...] |
| H A D | xmlrpc_introspection.c | 364 xReturn = describeValue_worker(ptype, name, (desc ? desc : (xSubList ? NULL : el->text.str)), optional, def, xSubList); 401 xReturn = XMLRPC_CreateValueString(name, el->text.str, el->text.len); 416 /* or anything at all really, so long as its got some text. 419 else if(el->name && el->text.len) { 420 xReturn = XMLRPC_CreateValueString(el->name, el->text.str, el->text.len);
|
| /PHP_TRUNK/ext/xmlwriter/examples/ |
| H A D | xmlwriter_oo.php | 6 $xw->text("example");
|
| /PHP_TRUNK/scripts/dev/generate-phpt/src/ |
| H A D | gtCodeSnippet.php | 46 $text = file($filename); variable 47 foreach ($text as $t) {
|
| /PHP_TRUNK/ext/intl/breakiterator/ |
| H A D | breakiterator_class.h | 40 // current text 41 zval *text; member in struct:__anon184
|
| H A D | codepointiterator_internal.cpp | 112 void CodePointBreakIterator::setText(const UnicodeString &text) argument 117 this->fText = utext_openConstUnicodeString(this->fText, &text, &uec); 122 void CodePointBreakIterator::setText(UText *text, UErrorCode &status) argument 128 this->fText = utext_clone(this->fText, text, FALSE, TRUE, &status);
|
| H A D | codepointiterator_internal.h | 49 virtual void setText(const UnicodeString &text); 51 virtual void setText(UText *text, UErrorCode &status);
|
| H A D | breakiterator_class.cpp | 127 bio_new->text = bio_orig->text; 128 if (bio_new->text) { 129 zval_add_ref(&bio_new->text); 160 if (bio->text == NULL) { 161 add_assoc_null_ex(&zv, "text", sizeof("text")); 163 zval_add_ref(&bio->text); 164 add_assoc_zval_ex(&zv, "text", sizeof("text"), bi [all...] |
| H A D | breakiterator_methods.cpp | 142 if (bio->text == NULL) { 145 RETURN_ZVAL(bio->text, 1, 0); 151 char *text; local 159 &text, &text_len) == FAILURE) { 170 /* assert it's safe to use text and text_len because zpp changes the 172 assert(text == Z_STRVAL_PP(textzv)); 174 ut = utext_openUTF8(ut, text, text_len, BREAKITER_ERROR_CODE_P(bio)); 185 if (bio->text != NULL) { 186 zval_ptr_dtor(&bio->text); 188 bio->text [all...] |
| /PHP_TRUNK/ext/intl/grapheme/ |
| H A D | grapheme_util.h | 37 int grapheme_split_string(const UChar *text, int32_t text_length, int boundary_array[], int boundary_array_len TSRMLS_DC );
|
| /PHP_TRUNK/ext/intl/spoofchecker/ |
| H A D | spoofchecker_main.c | 24 /* {{{ proto bool Spoofchecker::isSuspicious( string text[, int &error_code ] ) 25 * Checks if a given text contains any suspicious characters 30 char *text; local 35 if (FAILURE == zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|z", &text, &text_len, &error_code)) { 41 ret = uspoof_checkUTF8(co->uspoof, text, text_len, NULL, SPOOFCHECKER_ERROR_CODE_P(co)); 57 * Checks if a given text contains any confusable characters
|
| /PHP_TRUNK/ext/ctype/ |
| H A D | ctype.c | 49 ZEND_ARG_INFO(0, text) 53 ZEND_ARG_INFO(0, text) 57 ZEND_ARG_INFO(0, text) 61 ZEND_ARG_INFO(0, text) 65 ZEND_ARG_INFO(0, text) 69 ZEND_ARG_INFO(0, text) 73 ZEND_ARG_INFO(0, text) 77 ZEND_ARG_INFO(0, text) 81 ZEND_ARG_INFO(0, text) 85 ZEND_ARG_INFO(0, text) [all...] |
| /PHP_TRUNK/ext/imap/ |
| H A D | php_imap.h | 53 #define LSIZE text.size 54 #define LTEXT text.data 61 #define LTEXT text 81 SIZEDTEXT text; member in struct:php_imap_mailbox_struct 88 SIZEDTEXT text; member in struct:php_imap_error_struct
|
| /PHP_TRUNK/ext/readline/ |
| H A D | readline.c | 426 static char *_readline_command_generator(const char *text, int state) argument 439 if (strncmp (Z_STRVAL_PP(entry), text, strlen(text)) == 0) { 474 static char **_readline_completion_cb(const char *text, int start, int end) argument 481 params[0]=_readline_string_zval(text); 488 matches = rl_completion_matches(text,_readline_command_generator);
|
| H A D | readline_cli.c | 406 static char *cli_completion_generator_ht(const char *text, int textlen, int *state, HashTable *ht, void **pData TSRMLS_DC) /* {{{ */ argument 417 if (!textlen || !strncmp(name, text, textlen)) { 432 static char *cli_completion_generator_var(const char *text, int textlen, int *state TSRMLS_DC) /* {{{ */ argument 436 tmp = retval = cli_completion_generator_ht(text + 1, textlen - 1, state, EG(active_symbol_table), NULL TSRMLS_CC); 446 static char *cli_completion_generator_ini(const char *text, int textlen, int *state TSRMLS_DC) /* {{{ */ argument 450 tmp = retval = cli_completion_generator_ht(text + 1, textlen - 1, state, EG(ini_directives), NULL TSRMLS_CC); 460 static char *cli_completion_generator_func(const char *text, int textlen, int *state, HashTable *ht TSRMLS_DC) /* {{{ */ argument 463 char *retval = cli_completion_generator_ht(text, textlen, state, ht, (void**)&func TSRMLS_CC); 472 static char *cli_completion_generator_class(const char *text, int textlen, int *state TSRMLS_DC) /* {{{ */ argument 475 char *retval = cli_completion_generator_ht(text, textle 484 cli_completion_generator_define(const char *text, int textlen, int *state, HashTable *ht TSRMLS_DC) argument 498 cli_completion_generator(const char *text, int index) argument 577 cli_code_completion(const char *text, int start, int end) argument [all...] |
| /PHP_TRUNK/win32/build/ |
| H A D | mkdist.php | 143 $text = file_get_contents($source); variable 144 $text = preg_replace("/(\r\n?)|\n/", "\r\n", $text); variable 146 fwrite($fp, $text);
|
| /PHP_TRUNK/ext/fileinfo/libmagic/ |
| H A D | ascmagic.c | 29 * ASCII magic -- try to detect text encoding. 72 int text) 87 /* If file doesn't look like any sort of text, give up. */ 93 type, text); 103 const char *type, int text) 138 /* Convert ubuf to UTF-8 and try text soft magic */ 150 (size_t)(utf8_end - utf8_buf), TEXTTEST, text)) == 0) 201 if (file_printf(ms, "text/plain") == -1) 207 switch (file_replace(ms, " text$", ", ")) { 209 switch (file_replace(ms, " text executabl 71 file_ascmagic(struct magic_set *ms, const unsigned char *buf, size_t nbytes, int text) argument 101 file_ascmagic_with_encoding(struct magic_set *ms, const unsigned char *buf, size_t nbytes, unichar *ubuf, size_t ulen, const char *code, const char *type, int text) argument [all...] |