Home
last modified time | relevance | path

Searched refs:_ (Results 1 – 25 of 159) sorted by relevance

1234567

/PHP-7.4/Zend/
H A Dzend_vm_handlers.h1 #define VM_HANDLERS(_) \ argument
2 _(0, ZEND_NOP_SPEC) \
3 _(1, ZEND_ADD_SPEC_CONST_CONST) \
4 _(2, ZEND_ADD_SPEC_CONST_TMPVARCV) \
5 _(3, ZEND_ADD_SPEC_CONST_TMPVARCV) \
6 _(5, ZEND_ADD_SPEC_CONST_TMPVARCV) \
7 _(6, ZEND_ADD_SPEC_TMPVARCV_CONST) \
63 _(100, ZEND_DIV_SPEC_CV_CV) \
569 _(1255, ZEND_JMP_SPEC) \
737 _(1495, ZEND_EXIT_SPEC) \
[all …]
H A Dzend_alloc_sizes.h33 _( 0, 8, 512, 1, x, y) \
34 _( 1, 16, 256, 1, x, y) \
35 _( 2, 24, 170, 1, x, y) \
36 _( 3, 32, 128, 1, x, y) \
37 _( 4, 40, 102, 1, x, y) \
38 _( 5, 48, 85, 1, x, y) \
39 _( 6, 56, 73, 1, x, y) \
40 _( 7, 64, 64, 1, x, y) \
41 _( 8, 80, 51, 1, x, y) \
42 _( 9, 96, 42, 1, x, y) \
[all …]
H A Dzend_string.h468 #define ZEND_KNOWN_STRINGS(_) \ argument
469 _(ZEND_STR_FILE, "file") \
470 _(ZEND_STR_LINE, "line") \
474 _(ZEND_STR_TYPE, "type") \
475 _(ZEND_STR_OBJECT_OPERATOR, "->") \
476 _(ZEND_STR_PAAMAYIM_NEKUDOTAYIM, "::") \
477 _(ZEND_STR_ARGS, "args") \
479 _(ZEND_STR_EVAL, "eval") \
487 _(ZEND_STR_THIS, "this") \
489 _(ZEND_STR_KEY, "key") \
[all …]
/PHP-7.4/ext/standard/tests/file/
H A Dbug75679.phpt8 … . str_repeat (str_pad ('bug75679_path_259_characters_long_', 100, '_') . '/', 1), 259, '_') => [],
9 … . str_repeat (str_pad ('bug75679_path_260_characters_long_', 100, '_') . '/', 1), 260, '_') => [],
10 … . str_repeat (str_pad ('bug75679_path_261_characters_long_', 100, '_') . '/', 1), 261, '_') => [],
33 … . str_repeat (str_pad ('bug75679_path_259_characters_long_', 100, '_') . '/', 1), 259, '_') => [],
34 … . str_repeat (str_pad ('bug75679_path_260_characters_long_', 100, '_') . '/', 1), 260, '_') => [],
35 … . str_repeat (str_pad ('bug75679_path_261_characters_long_', 100, '_') . '/', 1), 261, '_') => [],
/PHP-7.4/ext/intl/tests/
H A Dformatter_get_set_symbol2.phpt21 …'PERCENT_SYMBOL' => array( NumberFormatter::PERCENT_SYMBOL, '_%_', 12345.123456, NumberFormatter::…
93 New symbol: [_._]
98 New symbol: [_,_]
103 New symbol: [_;_]
108 New symbol: [_%_]
109 A number formatted with the new symbol: 1,234,512_%_
123 New symbol: [_-_]
128 New symbol: [_+_]
133 New symbol: [_$_]
134 A number formatted with the new symbol: _$_%A12,345.12
[all …]
H A Dformatter_get_set_text_attribute.phpt19 'POSITIVE_PREFIX' => array( NumberFormatter::POSITIVE_PREFIX, '_+_', 12345.1234 ),
20 'POSITIVE_SUFFIX' => array( NumberFormatter::POSITIVE_SUFFIX, '_+_', 12345.1234 ),
21 'NEGATIVE_PREFIX' => array( NumberFormatter::NEGATIVE_PREFIX, '_-_', -12345.1234 ),
22 'NEGATIVE_SUFFIX' => array( NumberFormatter::NEGATIVE_SUFFIX, '_-_', -12345.1234 ),
87 New value: [_+_]
88 Formatting number with new value: _+_12,345.123
93 New value: [_+_]
94 Formatting number with new value: 12,345.123_+_
99 New value: [_-_]
105 New value: [_-_]
[all …]
H A Dformatter_get_set_text_attribute_var2.phpt19 'POSITIVE_PREFIX' => array( NumberFormatter::POSITIVE_PREFIX, '_+_', 12345.1234 ),
20 'POSITIVE_SUFFIX' => array( NumberFormatter::POSITIVE_SUFFIX, '_+_', 12345.1234 ),
21 'NEGATIVE_PREFIX' => array( NumberFormatter::NEGATIVE_PREFIX, '_-_', -12345.1234 ),
22 'NEGATIVE_SUFFIX' => array( NumberFormatter::NEGATIVE_SUFFIX, '_-_', -12345.1234 ),
87 New value: [_+_]
88 Formatting number with new value: _+_12,345.123
93 New value: [_+_]
94 Formatting number with new value: 12,345.123_+_
99 New value: [_-_]
105 New value: [_-_]
[all …]
/PHP-7.4/Zend/tests/type_declarations/
H A Dtyped_properties_062.phpt8 public $_;
13 $a->_ += 1;
16 $a->_ .= "1";
24 $a->_--;
27 --$a->_;
33 $a->_--;
38 --$a->_;
45 $a->_++;
50 ++$a->_;
54 $a->_ = 0;
[all …]
H A Dtyped_properties_063.phpt10 $_ = &$a->foo;
12 $_ += 1;
15 $_ .= "1";
23 $_--;
26 --$_;
32 $_--;
37 --$_;
44 $_++;
49 ++$_;
53 $_ = 0;
[all …]
H A Dtyped_properties_064.phpt10 $_ = [&$a->foo];
12 $_[0] += 1;
15 $_[0] .= "1";
23 $_[0]--;
26 --$_[0];
37 --$_[0];
44 $_[0]++;
49 ++$_[0];
53 $_[0] = 0;
55 $_[0] = [];
[all …]
H A Dtyped_properties_061.phpt20 $a->_ += 1;
23 $a->_ .= "1";
26 $a->_ .= "e50";
29 $a->_--;
32 --$a->_;
37 $a->_++;
40 ++$a->_;
/PHP-7.4/ext/session/
H A Dmod_files.bat4 IF _%1_==_AUTO_ (
8 IF _%2_==__ (
19 IF _%Depth%_==__ GOTO DepthError
22 IF _%3_==__ GOTO DefaultBits
26 IF _%Bits%_==__ GOTO BitsError
/PHP-7.4/ext/curl/
H A Dsync-constants.php21 const CONSTANTS_REGEX_PATTERN = '~^CURL(?:OPT|_VERSION)_[A-Z0-9_]+$~';
152 $regexp = '/^([A-Za-z0-9_]+) +([0-9\.]+)(?: +([0-9\.\-]+))?(?: +([0-9\.]+))?/m';
189 preg_match_all('/REGISTER_CURL_CONSTANT\(([A-Za-z0-9_]+)\)/', $source, $matches);
/PHP-7.4/ext/pcre/tests/
H A Dmarks.phpt8 _ (a) (*MARK:A_MARK) _
9 | _ (b) _
10 | _ (c) (*MARK:C_MARK) _
11 | _ (d) _
H A Dbug79846.phpt6 preg_match("/([a-z]+_[a-z]+_*[a-z]+)_?(\d+)?/", $item, $match);
H A Dpreg_split_basic.phpt9 $string = 'this is a_list: value1, Test__, string; Hello, world!_(parentheses)';
30 string(8) " world!_"
38 string(28) " Hello, world!_(parentheses)"
42 string(54) "this is a_list: value1, Test__, string; Hello, world!_"
52 string(67) "this is a_list: value1, Test__, string; Hello, world!_(parentheses)"
/PHP-7.4/ext/standard/tests/strings/
H A Dstrrchr_variation4.phpt17 $#%^*&*_("_")!#@@!$#$^^&*(special)
27 '_',
28 '("_")',
45 string(31) "_")!#@@!$#$^^&*(special)
56 $#%^*&*_("_")!#@@!$#$^^&*(special)
H A Dstripos_variation4.phpt18 $#%^*&*_("_")!#@@!$#$^^&$*(special)
23 var_dump( stripos($special_chars_str, '_') );
24 var_dump( stripos($special_chars_str, '("_")') );
H A Dstrripos_variation4.phpt18 $#%^*&*_("_")!#@@!$#$^^&$*(special)
23 var_dump( strripos($special_chars_str, '_') );
24 var_dump( strripos($special_chars_str, '("_")') );
/PHP-7.4/ext/openssl/tests/
H A Dbug71475.phpt9 $_ = str_repeat("A", 512);
10 openssl_seal($_, $_, $_, array_fill(0,64,0));
/PHP-7.4/ext/standard/tests/file/windows_mb_path/
H A Dtest_cp1250_to_utf8_1.phpt23 $item = "šđčćž_ŠĐČĆŽ"; // cp1250 specific chars
47 getting basename of %s\šđčćž_ŠĐČĆŽ42\šđčćž_ŠĐČĆŽ4
48 string(22) "šđčćž_ŠĐČĆŽ4"
50 string(%d) "%s\šđčćž_ŠĐČĆŽ42\šđčćž_ŠĐČĆŽ4"
H A Dtest_cp1250_to_utf8_2.phpt23 $item = "šđčćž_ŠĐČĆŽ"; // cp1250 specific chars
49 getting basename of %s\šđčćž_ŠĐČĆŽ33
50 string(23) "šđčćž_ŠĐČĆŽ33"
52 string(%d) "%s\šđčćž_ŠĐČĆŽ33"
/PHP-7.4/tests/basic/
H A D022.phpt36 ["-_&_%_$cookie_10"]=>
/PHP-7.4/Zend/tests/
H A Dnumeric_literal_separator_002.phpt5 100_;
7 Parse error: syntax error, unexpected '_' (T_STRING) in %s on line %d
H A Dnumeric_literal_separator_004.phpt5 100_.0;
7 Parse error: syntax error, unexpected '_' (T_STRING) in %s on line %d

Completed in 65 milliseconds

1234567