| /PHP_TRUNK/ext/ereg/regex/ |
| H A D | engine.c | 16 #define at sat macro 27 #define at lat macro 52 #define AT(t, p1, p2, s1, s2) at(m, t, p1, p2, s1, s2) 620 - fast - step through the string at top speed 731 register unsigned char *matchp; /* last p at which a match ended */ 960 - at - print current situation 962 == static void at(struct match *m, unsigned char *title, unsigned char *start, unsigned char *stop, \ 967 at(m, title, start, stop, startst, stopst) function 1018 #undef at macro
|
| H A D | main.c | 415 register char *at = NULL; local 420 at = should + 1; 466 if (at == NULL) 468 shlen = strlen(at); 471 if (strncmp(p, at, shlen) != 0) { 472 sprintf(grump, "matched null at `%.20s'", p);
|
| /PHP_TRUNK/ext/sqlite3/libsqlite/ |
| H A D | sqlite3.c | 17 ** the "sqlite3.h" header file at hand, you will find a copy embedded within 153 ** at all times. 225 ** Earlier versions of SQLite allowed the user to change this value at 270 ** This value can be lowered (or raised) at run-time using that the 289 ** fire any triggers. A value of 0 means that no trigger programs at all 366 ** database connection at the same time. 383 ** be overridden at runtime using the sqlite3_config() API. 425 ** implemented on some systems. So we avoid defining it at all 462 ** is significant and used at least once. On switch statements 505 ** or "ductile" rather than being "brittle" and crashing at th 63059 } at; member in union:vdbeExecUnion [all...] |
| /PHP_TRUNK/ext/mbstring/oniguruma/ |
| H A D | regexec.c | 213 onig_region_set(OnigRegion* region, int at, int beg, int end) argument 215 if (at < 0) return ONIGERR_INVALID_ARGUMENT; 217 if (at >= region->allocated) { 218 int r = onig_region_resize(region, at + 1); 222 region->beg[at] = beg; 223 region->end[at] = end; 678 #define STACK_BASE_CHECK(p, at) \ 680 fprintf(stderr, "at %s\n", at);\ 684 #define STACK_BASE_CHECK(p, at) 3049 onig_match(regex_t* reg, const UChar* str, const UChar* end, const UChar* at, OnigRegion* region, OnigOptionType option) argument [all...] |
| H A D | regtrav.c | 35 capture_tree_traverse(OnigCaptureTreeNode* node, int at, argument 44 if ((at & ONIG_TRAVERSE_CALLBACK_AT_FIRST) != 0) { 51 r = capture_tree_traverse(node->childs[i], at, 56 if ((at & ONIG_TRAVERSE_CALLBACK_AT_LAST) != 0) { 67 onig_capture_tree_traverse(OnigRegion* region, int at, argument 71 return capture_tree_traverse(region->history_root, at,
|
| /PHP_TRUNK/ext/standard/ |
| H A D | html.c | 9 | available through the world-wide-web at the following url: | 412 char *dot, *at; local 421 at = strchr(dot, '@'); 422 if (at) 423 len = at - dot; 948 * However, they start at 0x40, therefore if we find a 0x26 byte, 1157 /* peek at next char */ 1176 * at most two entries... */ 1277 /* guarantee we have at least 40 bytes to write. 1378 /* peek at nex [all...] |
| /PHP_TRUNK/sapi/cli/ |
| H A D | php_cli_server.c | 9 | available through the world-wide-web at the following url: | 1498 static int php_cli_server_client_read_request_on_path(php_http_parser *parser, const char *at, size_t length) argument 1504 normalize_vpath(&vpath, &vpath_len, at, length, 1); 1511 static int php_cli_server_client_read_request_on_query_string(php_http_parser *parser, const char *at, size_t length) argument 1514 client->request.query_string = pestrndup(at, length, 1); 1519 static int php_cli_server_client_read_request_on_url(php_http_parser *parser, const char *at, size_t length) argument 1523 client->request.request_uri = pestrndup(at, length, 1); 1528 static int php_cli_server_client_read_request_on_fragment(php_http_parser *parser, const char *at, size_t length) argument 1533 static int php_cli_server_client_read_request_on_header_field(php_http_parser *parser, const char *at, size_t length) argument 1540 client->current_header_name = (char *)at; 1545 php_cli_server_client_read_request_on_header_value(php_http_parser *parser, const char *at, size_t length) argument 1579 php_cli_server_client_read_request_on_body(php_http_parser *parser, const char *at, size_t length) argument [all...] |