Home
last modified time | relevance | path

Searched defs:code (Results 1 – 25 of 88) sorted by relevance

1234

/php-src/scripts/dev/
H A Dtidy.php65 $origCode = $code = file_get_contents($path); variable
68 $code = stripTrailingWhitespace($code); variable
72 $code = stripTrailingWhitespace($code); variable
73 $code = reindentToSpaces($code); variable
75 $code = transformTestCode($code, function(string $code) { variable
76 $code = stripTrailingWhitespace($code); variable
77 $code = reindentToSpaces($code); variable
87 function stripTrailingWhitespace(string $code): string {
91 function reindentToTabs(string $code): string {
101 function reindentToSpaces(string $code): string {
[all …]
/php-src/ext/mbstring/
H A Dphp_unicode.c64 MBSTRING_API bool php_unicode_is_prop1(unsigned long code, int prop) in php_unicode_is_prop1()
69 MBSTRING_API bool php_unicode_is_prop(unsigned long code, ...) in php_unicode_is_prop()
100 unsigned code, in mph_lookup()
119 #define CASE_LOOKUP(code, type) \ argument
123 static unsigned php_unicode_toupper_raw(unsigned code, const mbfl_encoding *enc) in php_unicode_toupper_raw()
145 static unsigned php_unicode_tolower_raw(unsigned code, const mbfl_encoding *enc) in php_unicode_tolower_raw()
170 static unsigned php_unicode_totitle_raw(unsigned code, const mbfl_encoding *enc) in php_unicode_totitle_raw()
181 static unsigned php_unicode_tofold_raw(unsigned code, const mbfl_encoding *enc) in php_unicode_tofold_raw()
204 static inline unsigned php_unicode_tolower_simple(unsigned code, const mbfl_encoding *enc) { in php_unicode_tolower_simple()
211 static inline unsigned php_unicode_toupper_simple(unsigned code, const mbfl_encoding *enc) { in php_unicode_toupper_simple()
[all …]
/php-src/Zend/
H A Dzend_exceptions.stub.php37 protected $code = 0; // TODO add proper type (i.e. int|string) variable in Exception
45 public function __construct(string $message = "", int $code = 0, ?Throwable $previous = null) {}
74 int $code = 0,
96 protected $code = 0; // TODO add proper type (i.e. int|string) variable in Error
106 public function __construct(string $message = "", int $code = 0, ?Throwable $previous = null) {}
H A Dzend_exceptions.c307 zend_long code = 0; in ZEND_METHOD() local
357 zend_long code = 0, severity = E_ERROR, lineno; in ZEND_METHOD() local
815 …hrow_exception_zstr(zend_class_entry *exception_ce, zend_string *message, zend_long code) /* {{{ */ in zend_throw_exception_zstr()
843 …zend_throw_exception(zend_class_entry *exception_ce, const char *message, zend_long code) /* {{{ */ in zend_throw_exception()
854 …zend_object *zend_throw_exception_ex(zend_class_entry *exception_ce, zend_long code, const char *f… in zend_throw_exception_ex()
869 …rror_exception(zend_class_entry *exception_ce, zend_string *message, zend_long code, int severity)… in zend_throw_error_exception()
/php-src/sapi/fuzzer/
H A Dgenerate_parser_corpus.php15 $code = file_get_contents($file); variable
17 $code = $matches[1]; variable
/php-src/ext/opcache/jit/ir/
H A Dir_patch.c148 static int ir_patch_code(const void *code, size_t size, const void *from_addr, const void *to_addr) in ir_patch_code()
173 static int ir_patch_code(const void *code, size_t size, const void *from_addr, const void *to_addr) in ir_patch_code()
251 int ir_patch(const void *code, size_t size, uint32_t jmp_table_size, const void *from_addr, const v… in ir_patch()
/php-src/ext/pcre/pcre2lib/
H A Dpcre2_pattern_info.c65 pcre2_pattern_info(const pcre2_code *code, uint32_t what, void *where) in pcre2_pattern_info()
268 pcre2_callout_enumerate(const pcre2_code *code, in pcre2_callout_enumerate()
H A Dpcre2_study.c103 find_minlength(const pcre2_real_code *re, PCRE2_SPTR code, in find_minlength()
956 set_start_bits(pcre2_real_code *re, PCRE2_SPTR code, BOOL utf, BOOL ucp, in set_start_bits()
1765 PCRE2_UCHAR *code; in PRIV() local
H A Dpcre2_jit_match.c91 pcre2_jit_match(const pcre2_code *code, PCRE2_SPTR subject, PCRE2_SIZE length, in pcre2_jit_match()
H A Dpcre2_auto_possess.c325 get_chr_property_list(PCRE2_SPTR code, BOOL utf, BOOL ucp, const uint8_t *fcc, in get_chr_property_list()
536 compare_opcodes(PCRE2_SPTR code, BOOL utf, BOOL ucp, const compile_block *cb, in compare_opcodes()
H A Dpcre2_printint.c302 print_prop(FILE *f, PCRE2_SPTR code, const char *before, const char *after) in print_prop()
340 PCRE2_SPTR codestart, nametable, code; in pcre2_printint() local
H A Dpcre2_match_data.c83 pcre2_match_data_create_from_pattern(const pcre2_code *code, in pcre2_match_data_create_from_pattern()
/php-src/ext/tokenizer/
H A Dtokenizer.stub.php11 function token_get_all(string $code, int $flags = 0): array {}
23 public static function tokenize(string $code, int $flags = 0): array {}
/php-src/sapi/phpdbg/
H A Dphpdbg_utils.h36 #define PHPDBG_COLOR_D(color, code) \ argument
55 const char code[PHPDBG_COLOR_LEN]; member
/php-src/ext/dom/lexbor/lexbor/dom/
H A Dexception.c15 lxb_dom_exception_code_t code) in lxb_dom_exception_code_ref_set_noi()
/php-src/ext/pdo/
H A Dpdo.stub.php8 protected $code = 0; // TODO add proper type variable in PDOException
/php-src/ext/intl/
H A Dintl_error.c161 void intl_error_set( intl_error* err, UErrorCode code, const char* msg, int copyMsg ) in intl_error_set()
169 void intl_errors_set( intl_error* err, UErrorCode code, const char* msg, int copyMsg ) in intl_errors_set()
H A Dintl_error.h27 UErrorCode code; member
/php-src/ext/mbstring/libmbfl/filters/
H A Dhtml_entities.h35 int code; member
/php-src/main/
H A Dhttp_status_codes.h21 const int code; member
/php-src/ext/fileinfo/libmagic/
H A Dascmagic.c78 const char *code = NULL; in file_ascmagic() local
106 file_unichar_t *ubuf, size_t ulen, const char *code, const char *type, in file_ascmagic_with_encoding()
/php-src/ext/standard/
H A Dsoundex.c28 size_t i, _small, str_len, code, last; in PHP_FUNCTION() local
/php-src/main/streams/
H A Dphp_stream_context.h89 #define php_stream_notify_info(context, code, xmsg, xcode) do { if ((context) && (context)->notifie… argument
116 #define php_stream_notify_error(context, code, xmsg, xcode) do { if ((context) && (context)->notifi… argument
/php-src/ext/readline/
H A Dreadline_cli.c183 char *code; in cli_get_prompt() local
214 static int cli_is_valid_code(char *code, size_t len, zend_string **prompt) /* {{{ */ in cli_is_valid_code()
606 char *code = emalloc(size); in readline_shell_run() local
/php-src/ext/com_dotnet/
H A Dcom_misc.c28 void php_com_throw_exception(HRESULT code, char *message) in php_com_throw_exception()

Completed in 119 milliseconds

1234