Home
last modified time | relevance | path

Searched +refs:cut +refs:string (Results 1 – 25 of 23102) sorted by relevance

12345678910>>...925

/dports/lang/python310/Python-3.10.1/Tools/peg_generator/pegen/
H A Dgrammar_parser.py124 return ( a . string , b . string )
133 (string := self.string())
137 return ( name . string , literal_eval ( string . string ) )
241 return ( name . string , type . string + "*" )
254 return ( name . string , type . string )
442 return NamedItem ( name . string , item , type . string )
627 (string := self.string())
629 return StringLeaf ( string . string )
708 (string := self.string())
710 return string . string
[all …]
/dports/lang/python39/Python-3.9.9/Tools/peg_generator/pegen/
H A Dgrammar_parser.py126 return ( a . string , b . string )
135 (string := self.string())
139 return ( name . string , literal_eval ( string . string ) )
243 return ( name . string , type . string + "*" )
256 return ( name . string , type . string )
563 (string := self.string())
565 return StringLeaf ( string . string )
632 return name . string
644 (string := self.string())
646 return string . string
[all …]
/dports/lang/php73/php-7.3.33/ext/standard/tests/array/
H A Darray_splice_variation3.phpt103 string(1) "A"
105 string(1) "B"
107 string(1) "C"
117 absolute offset - absolute length - cut from middle
158 absolute offset - absolute length - cut from end
240 absolute offset - absolute length - cut everything
281 absolute offset - absolute length - cut nothing
445 absolute offset - relative length - cut nothing
568 relative offset - absolute length - cut from end
691 relative offset - absolute length - cut nothing
[all …]
/dports/lang/php80/php-8.0.15/ext/standard/tests/array/
H A Darray_splice_variation3.phpt102 string(1) "A"
104 string(1) "B"
106 string(1) "C"
116 absolute offset - absolute length - cut from middle
157 absolute offset - absolute length - cut from end
239 absolute offset - absolute length - cut everything
280 absolute offset - absolute length - cut nothing
444 absolute offset - relative length - cut nothing
567 relative offset - absolute length - cut from end
690 relative offset - absolute length - cut nothing
[all …]
/dports/lang/php74/php-7.4.27/ext/standard/tests/array/
H A Darray_splice_variation3.phpt103 string(1) "A"
105 string(1) "B"
107 string(1) "C"
117 absolute offset - absolute length - cut from middle
158 absolute offset - absolute length - cut from end
240 absolute offset - absolute length - cut everything
281 absolute offset - absolute length - cut nothing
445 absolute offset - relative length - cut nothing
568 relative offset - absolute length - cut from end
691 relative offset - absolute length - cut nothing
[all …]
/dports/lang/php81/php-8.1.1/ext/standard/tests/array/
H A Darray_splice_variation3.phpt102 string(1) "A"
104 string(1) "B"
106 string(1) "C"
116 absolute offset - absolute length - cut from middle
157 absolute offset - absolute length - cut from end
239 absolute offset - absolute length - cut everything
280 absolute offset - absolute length - cut nothing
444 absolute offset - relative length - cut nothing
567 relative offset - absolute length - cut from end
690 relative offset - absolute length - cut nothing
[all …]
/dports/www/mod_php81/php-8.1.1/ext/standard/tests/array/
H A Darray_splice_variation3.phpt102 string(1) "A"
104 string(1) "B"
106 string(1) "C"
116 absolute offset - absolute length - cut from middle
157 absolute offset - absolute length - cut from end
239 absolute offset - absolute length - cut everything
280 absolute offset - absolute length - cut nothing
444 absolute offset - relative length - cut nothing
567 relative offset - absolute length - cut from end
690 relative offset - absolute length - cut nothing
[all …]
/dports/www/mod_php73/php-7.3.33/ext/standard/tests/array/
H A Darray_splice_variation3.phpt103 string(1) "A"
105 string(1) "B"
107 string(1) "C"
117 absolute offset - absolute length - cut from middle
158 absolute offset - absolute length - cut from end
240 absolute offset - absolute length - cut everything
281 absolute offset - absolute length - cut nothing
445 absolute offset - relative length - cut nothing
568 relative offset - absolute length - cut from end
691 relative offset - absolute length - cut nothing
[all …]
/dports/www/mod_php74/php-7.4.27/ext/standard/tests/array/
H A Darray_splice_variation3.phpt103 string(1) "A"
105 string(1) "B"
107 string(1) "C"
117 absolute offset - absolute length - cut from middle
158 absolute offset - absolute length - cut from end
240 absolute offset - absolute length - cut everything
281 absolute offset - absolute length - cut nothing
445 absolute offset - relative length - cut nothing
568 relative offset - absolute length - cut from end
691 relative offset - absolute length - cut nothing
[all …]
/dports/www/mod_php80/php-8.0.15/ext/standard/tests/array/
H A Darray_splice_variation3.phpt102 string(1) "A"
104 string(1) "B"
106 string(1) "C"
116 absolute offset - absolute length - cut from middle
157 absolute offset - absolute length - cut from end
239 absolute offset - absolute length - cut everything
280 absolute offset - absolute length - cut nothing
444 absolute offset - relative length - cut nothing
567 relative offset - absolute length - cut from end
690 relative offset - absolute length - cut nothing
[all …]
/dports/lang/php74/php-7.4.27/ext/standard/tests/strings/
H A Dwordwrap_variation5.phpt5 /* Prototype : string wordwrap ( string $str [, int $width [, string $break [, bool $cut]]] )
7 * Source code: ext/standard/string.c
19 $cut = false;
32 $cut = false;
37 $cut = true;
48 string(24) "Testing
52 string(24) "Testing wordrap function"
53 string(26) "Testing wordrap function"
55 string(24) "Testing wordrap function"
56 string(26) "Testing wordrap function"
[all …]
H A Dwordwrap_error.phpt5 /* Prototype : string wordwrap ( string $str [, int $width [, string $break [, bool $cut]]] )
6 * Description: Wraps buffer to selected number of characters using string break char
7 * Source code: ext/standard/string.c
21 $cut = true;
31 $cut = false;
37 $cut = true;
43 $cut = false;
49 $cut = true;
69 string(39) "testing<br />\nwordwrap<br />\nfunction"
70 -- width = 0 & cut = true --
[all …]
/dports/lang/php73/php-7.3.33/ext/standard/tests/strings/
H A Dwordwrap_variation5.phpt5 /* Prototype : string wordwrap ( string $str [, int $width [, string $break [, bool $cut]]] )
7 * Source code: ext/standard/string.c
19 $cut = false;
32 $cut = false;
37 $cut = true;
48 string(24) "Testing
52 string(24) "Testing wordrap function"
53 string(26) "Testing wordrap function"
55 string(24) "Testing wordrap function"
56 string(26) "Testing wordrap function"
[all …]
H A Dwordwrap_error.phpt5 /* Prototype : string wordwrap ( string $str [, int $width [, string $break [, bool $cut]]] )
6 * Description: Wraps buffer to selected number of characters using string break char
7 * Source code: ext/standard/string.c
21 $cut = true;
31 $cut = false;
37 $cut = true;
43 $cut = false;
49 $cut = true;
69 string(39) "testing<br />\nwordwrap<br />\nfunction"
70 -- width = 0 & cut = true --
[all …]
/dports/www/mod_php74/php-7.4.27/ext/standard/tests/strings/
H A Dwordwrap_variation5.phpt5 /* Prototype : string wordwrap ( string $str [, int $width [, string $break [, bool $cut]]] )
7 * Source code: ext/standard/string.c
19 $cut = false;
32 $cut = false;
37 $cut = true;
48 string(24) "Testing
52 string(24) "Testing wordrap function"
53 string(26) "Testing wordrap function"
55 string(24) "Testing wordrap function"
56 string(26) "Testing wordrap function"
[all …]
H A Dwordwrap_error.phpt5 /* Prototype : string wordwrap ( string $str [, int $width [, string $break [, bool $cut]]] )
6 * Description: Wraps buffer to selected number of characters using string break char
7 * Source code: ext/standard/string.c
21 $cut = true;
31 $cut = false;
37 $cut = true;
43 $cut = false;
49 $cut = true;
69 string(39) "testing<br />\nwordwrap<br />\nfunction"
70 -- width = 0 & cut = true --
[all …]
/dports/www/mod_php73/php-7.3.33/ext/standard/tests/strings/
H A Dwordwrap_variation5.phpt5 /* Prototype : string wordwrap ( string $str [, int $width [, string $break [, bool $cut]]] )
7 * Source code: ext/standard/string.c
19 $cut = false;
32 $cut = false;
37 $cut = true;
48 string(24) "Testing
52 string(24) "Testing wordrap function"
53 string(26) "Testing wordrap function"
55 string(24) "Testing wordrap function"
56 string(26) "Testing wordrap function"
[all …]
H A Dwordwrap_error.phpt5 /* Prototype : string wordwrap ( string $str [, int $width [, string $break [, bool $cut]]] )
6 * Description: Wraps buffer to selected number of characters using string break char
7 * Source code: ext/standard/string.c
21 $cut = true;
31 $cut = false;
37 $cut = true;
43 $cut = false;
49 $cut = true;
69 string(39) "testing<br />\nwordwrap<br />\nfunction"
70 -- width = 0 & cut = true --
[all …]
/dports/www/wsdlpull/wsdlpull-1.24/src/xmlpull/
H A DQname.h75 std::string
82 std::string
89 std::string
116 int cut = -1; in parse() local
119 cut = name.find (":"); in parse()
120 if (cut == -1 || cut == 0) in parse()
126 localname = name.substr (cut + 1); in parse()
127 prefix = name.substr (0, cut); in parse()
129 cut = localname.find ("[]"); in parse()
130 if (cut > 0) in parse()
[all …]
/dports/lang/python311/Python-3.11.0a3/Tools/peg_generator/pegen/
H A Dgrammar_parser.py115 return ( a . string , b . string )
122 (string := self.string())
126 return ( name . string , literal_eval ( string . string ) )
338 cut = False
514 (string := self.string())
516 return StringLeaf ( string . string )
616 return name . string
621 return number . string
624 (string := self.string())
626 return string . string
[all …]
/dports/www/mod_php80/php-8.0.15/ext/standard/tests/strings/
H A Dwordwrap_variation5.phpt14 $cut = false;
27 $cut = false;
32 $cut = true;
43 string(24) "Testing
46 -- with default cut value --
47 string(24) "Testing wordrap function"
48 string(26) "Testing wordrap function"
50 string(24) "Testing wordrap function"
51 string(26) "Testing wordrap function"
53 string(43) "T e s t i n g w o r d r a p f u n c t i o n"
[all …]
/dports/www/mod_php81/php-8.1.1/ext/standard/tests/strings/
H A Dwordwrap_variation5.phpt14 $cut = false;
27 $cut = false;
32 $cut = true;
43 string(24) "Testing
46 -- with default cut value --
47 string(24) "Testing wordrap function"
48 string(26) "Testing wordrap function"
50 string(24) "Testing wordrap function"
51 string(26) "Testing wordrap function"
53 string(43) "T e s t i n g w o r d r a p f u n c t i o n"
[all …]
/dports/lang/php81/php-8.1.1/ext/standard/tests/strings/
H A Dwordwrap_variation5.phpt14 $cut = false;
27 $cut = false;
32 $cut = true;
43 string(24) "Testing
46 -- with default cut value --
47 string(24) "Testing wordrap function"
48 string(26) "Testing wordrap function"
50 string(24) "Testing wordrap function"
51 string(26) "Testing wordrap function"
53 string(43) "T e s t i n g w o r d r a p f u n c t i o n"
[all …]
/dports/lang/php80/php-8.0.15/ext/standard/tests/strings/
H A Dwordwrap_variation5.phpt14 $cut = false;
27 $cut = false;
32 $cut = true;
43 string(24) "Testing
46 -- with default cut value --
47 string(24) "Testing wordrap function"
48 string(26) "Testing wordrap function"
50 string(24) "Testing wordrap function"
51 string(26) "Testing wordrap function"
53 string(43) "T e s t i n g w o r d r a p f u n c t i o n"
[all …]
/dports/devel/p5-Data-Object/Data-Object-2.05/t/
H A DData_Object_String.t14 =cut
20 =cut
58 =cut
68 =cut
74 =cut
80 =cut
88 =cut
94 =cut
110 =cut
126 =cut
[all …]

12345678910>>...925