Home
last modified time | relevance | path

Searched refs:mask (Results 1 – 25 of 58) sorted by last modified time

123

/PHP-5.5/sapi/isapi/stresstest/
H A Dstresstest.cpp414 void DeleteTempFiles(const char *mask) in DeleteTempFiles() argument
420 _snprintf(FindPath, sizeof(FindPath)-1, "%s\\%s", temppath, mask); in DeleteTempFiles()
/PHP-5.5/sapi/litespeed/
H A Dlsapilib.c2724 sigset_t mask; in lsapi_prefork_server_accept() local
2816 sigemptyset( &mask ); in lsapi_prefork_server_accept()
2817 sigaddset( &mask, SIGCHLD ); in lsapi_prefork_server_accept()
2819 if ( sigprocmask(SIG_BLOCK, &mask, &orig_mask) < 0 ) in lsapi_prefork_server_accept()
/PHP-5.5/main/
H A Dsnprintf.c484 register int mask = (1 << nbits) - 1; in ap_php_conv_p2() local
491 *--p = digits[num & mask]; in ap_php_conv_p2()
/PHP-5.5/main/streams/
H A Dphp_stream_context.h49 int mask; member
104 (context)->notifier->mask |= PHP_STREAM_NOTIFIER_PROGRESS; \
107 …, dmax) do { if ((context) && (context)->notifier && (context)->notifier->mask & PHP_STREAM_NOTIFI…
/PHP-5.5/ext/zip/lib/
H A Dzip_close.c78 mode_t mask; in zip_close() local
337 mask = umask(0); in zip_close()
338 umask(mask); in zip_close()
339 chmod(za->zn, 0666&~mask); in zip_close()
/PHP-5.5/ext/standard/tests/strings/
H A Dstrspn_variation6.phpt2 Test strspn() function : usage variations - with heredoc strings, varying mask & default start and …
5 /* Prototype : proto int strspn(string str, string mask [, int start [, int len]])
6 * Description: Finds length of initial segment consisting entirely of characters found in mask.
13 * Testing strspn() : with heredoc string, varying mask and default start and len arguments
16 echo "*** Testing strspn() : with different mask strings ***\n";
64 // defining array of different mask strings
79 // loop through each element of the array for different heredoc and mask strings
85 foreach($mask_array as $mask) {
86 var_dump( strspn($str,$mask) ); // with default start and len value
94 *** Testing strspn() : with different mask strings ***
H A Dstrspn_variation7.phpt5 /* Prototype : proto int strspn(string str, string mask [, int start [, int len]])
6 * Description: Finds length of initial segment consisting entirely of characters found in mask.
64 // defining array of different mask strings
90 // loop through each element of the array for heredoc strings, mask strings and start values
96 foreach($mask_array as $mask) {
98 var_dump( strspn($str,$mask,$start) ); // with default len value
H A Dstrspn_variation8.phpt5 /* Prototype : proto int strspn(string str, string mask [, int start [, int len]])
6 * Description: Finds length of initial segment consisting entirely of characters found in mask.
64 // defining array of different mask strings
96 // loop through each element of the array for heredoc str, mask str , start values and len values
102 foreach($mask_array as $mask) {
105 var_dump( strspn($str,$mask,$start,$len) );
H A Dstrspn_variation9.phpt5 /* Prototype : proto int strspn(string str, string mask [, int start [, int len]])
6 * Description: Finds length of initial segment consisting entirely of characters found in mask.
41 $mask = "sfth12\ne34lw56r78d90\0\xaa\100o";
50 var_dump( strspn($str,$mask) );
H A Dstrspn_basic.phpt5 /* Prototype : proto int strspn(string str, string mask [, int start [, int len]])
6 * Description: Finds length of initial segment consisting entirely of characters found in mask.
21 $mask = "htes ";
26 var_dump( strspn($str, $mask, $start, $len) );
29 var_dump( strspn($str, $mask, $start) );
32 var_dump( strspn($str, $mask) );
H A Dstrspn_error.phpt5 /* Prototype : proto int strspn(string str, string mask [, int start [, int len]])
6 * Description: Finds length of initial segment consisting entirely of characters found in mask.
25 $mask = 'string_val';
31 var_dump( strspn($str,$mask,$start,$len, $extra_arg) );
H A Dstrspn_variation1.phpt5 /* Prototype : proto int strspn(string str, string mask [, int start [, int len]])
6 * Description: Finds length of initial segment consisting entirely of characters found in mask.
21 $mask = 'abons1234567890';
95 var_dump( strspn($value,$mask) ); // with default args
96 var_dump( strspn($value,$mask,$start) ); // with default len value
97 var_dump( strspn($value,$mask,$start,$len) ); // with all args
H A Dstrspn_variation10.phpt2 Test strspn() function : usage variations - with varying mask & default start and len args
5 /* Prototype : proto int strspn(string str, string mask [, int start [, int len]])
6 * Description: Finds length of initial segment consisting entirely of characters found in mask.
13 * Testing strspn() : with varying mask and default start and len arguments
16 echo "*** Testing strspn() : with different mask strings and default start and len arguments ***\n";
40 // define the array of mask strings
55 // loop through each element of the array for mask argument
60 foreach($mask_array as $mask) {
61 var_dump( strspn($str,$mask) );
69 *** Testing strspn() : with different mask strings and default start and len arguments ***
H A Dstrspn_variation11.phpt5 /* Prototype : proto int strspn(string str, string mask [, int start [, int len]])
6 * Description: Finds length of initial segment consisting entirely of characters found in mask.
40 // define the array of mask strings
66 // loop through each element of the arrays for str, mask and start argument
70 foreach($mask_array as $mask) {
72 var_dump( strspn($str,$mask,$start) );
H A Dstrspn_variation12.phpt5 /* Prototype : proto int strspn(string str, string mask [, int start [, int len]])
6 * Description: Finds length of initial segment consisting entirely of characters found in mask.
34 // define the array of mask strings
70 foreach($mask_array as $mask) {
73 var_dump( strspn($str,$mask,$start,$len) );
H A Dstrspn_variation2.phpt107 -- Iteration with mask value as "0" --
112 -- Iteration with mask value as "1" --
207 -- Iteration with mask value as "" --
212 -- Iteration with mask value as "" --
217 -- Iteration with mask value as "1" --
222 -- Iteration with mask value as "" --
232 -- Iteration with mask value as "" --
237 -- Iteration with mask value as "" --
242 -- Iteration with mask value as "" --
252 -- Iteration with mask value as "" --
[all …]
H A Dstrspn_variation3.phpt5 /* Prototype : proto int strspn(string str, string mask [, int start [, int len]])
6 * Description: Finds length of initial segment consisting entirely of characters found in mask.
22 $mask = 'soibtFTf1234567890';
92 var_dump( strspn($str,$mask,$value) ); // with default len value
93 var_dump( strspn($str,$mask,$value,$len) ); // with all args
H A Dstrspn_variation4.phpt5 /* Prototype : proto int strspn(string str, string mask [, int start [, int len]])
6 * Description: Finds length of initial segment consisting entirely of characters found in mask.
22 $mask = 'soibtFTf1234567890';
92 var_dump( strspn($str,$mask,$start,$value) ); // with all args
H A Dstrspn_variation5.phpt5 /* Prototype : proto int strspn(string str, string mask [, int start [, int len]])
6 * Description: Finds length of initial segment consisting entirely of characters found in mask.
63 $mask = "sfth12\ne34l567890\0\xaa\100o";
70 var_dump( strspn($str,$mask) ); // with default start and len values
H A Dstrcspn_variation7.phpt5 /* Prototype : proto int strcspn(string str, string mask [, int start [,int len]])
6 * Description: Finds length of initial segment consisting entirely of characters not found in mask.
64 // defining array of mask strings
91 // loop through each element of the arrays for str, mask and start arguments
96 foreach($mask_array as $mask) {
98 var_dump( strcspn($str,$mask,$start) ); // with default len value
H A Dstrcspn_variation8.phpt5 /* Prototype : proto int strcspn(string str, string mask [, int start [, int len]])
6 * Description: Finds length of initial segment consisting entirely of characters not found in mask.
63 // defining array of mask strings
100 foreach($mask_array as $mask) {
103 var_dump( strcspn($str,$mask,$start,$len) );
H A Dstrcspn_variation9.phpt5 /* Prototype : proto int strcspn(string str, string mask [, int start [, int len]])
6 * Description: Finds length of initial segment consisting entirely of characters not found in mask.
41 $mask = "sft\n34lw56r78d90\0\xaa\100o";
50 var_dump( strcspn($str,$mask) );
H A Dstrcspn_variation5.phpt5 /* Prototype : proto int strcspn(string str, string mask [, int start [, int len]])
6 * Description: Finds length of initial segment consisting entirely of characters not found in mask.
63 $mask = "fth12\ne67890\0\xaa\100o";
70 var_dump( strcspn($str,$mask) ); // with default start and len values
H A Dstrcspn_basic.phpt5 /* Prototype : proto int strcspn(string str, string mask [, int start [, int len]])
6 * Description: Finds length of initial segment consisting entirely of characters not found in mask.
21 $mask = "es";
26 var_dump( strcspn($str, $mask, $start, $len) );
29 var_dump( strcspn($str, $mask, $start) );
32 var_dump( strcspn($str, $mask) );
H A Dstrcspn_error.phpt5 /* Prototype : proto int strcspn(string str, string mask [, int start [, int len]])
6 * Description: Finds length of initial segment consisting entirely of characters not found in mask.
25 $mask = 'string_val';
31 var_dump( strcspn($str,$mask,$start,$len, $extra_arg) );

Completed in 97 milliseconds

123