| /PHP_TRUNK/ext/ereg/regex/ |
| H A D | main.c | 21 extern int split(); 149 nf = split(inbuf, f, MAXF, "\t\t"); 292 nshould = split(f4, should+1, NSHOULD-1, ",");
|
| H A D | split.c | 5 - split - divide a string into fields, like awk split() 6 = int split(char *string, char *fields[], int nfields, char *sep); 9 split(string, fields, nfields, sep) function 167 (void) split(buf, fields, MNF, argv[2]); 190 nf = split(string, fields, NF, seps); 290 nf = split(buf, fields, RNF, tests[n].seps); 293 printf("split `%s' by `%s' gave %d fields, not %d\n", 297 printf("split() went beyond array end\n"); 305 printf("split ` [all...] |
| /PHP_TRUNK/ext/skeleton/ |
| H A D | create_stubs | 56 split(type, type_array, "\|") 57 split(spec, spec_array, "\|")
|
| /PHP_TRUNK/ext/soap/interop/ |
| H A D | client_round2_interop.php | 709 $info = split(':', $method); 712 $hi = split(',',$m);
|
| /PHP_TRUNK/ext/spl/examples/ |
| H A D | autoload.inc | 36 $inc = split(':', ini_get('include_path'));
|
| H A D | findfile.inc | 29 * If path contains ';' then this parameter is split and every 36 $list = split(PATH_SEPARATOR, $path);
|
| H A D | regexfindfile.inc | 23 * If path contains ';' then this parameter is split and every
|
| /PHP_TRUNK/ext/spl/internal/ |
| H A D | regexiterator.inc | 28 const SPLIT = 3; /**< Mode: Return the split values (if any) */
|
| /PHP_TRUNK/scripts/dev/ |
| H A D | check_parameters.php | 312 $split = preg_split('/PHP_(?:NAMED_)?(?:FUNCTION|METHOD)\s*\((\w+(?:,\s*\w+)?)\)/S', $txt, -1, PREG_SPLIT_DELIM_CAPTURE | PREG_SPLIT_OFFSET_CAPTURE); variable 314 if (count($split) < 2) continue; // no functions defined on this file 315 array_shift($split); // the first part isn't relevant 332 for ($i = 0; $i < count($split); $i+=2) { 335 list($f) = preg_split('@/\*\s*}}}\s*\*/@S', $split[$i+1][0]); 336 check_function(preg_replace('/\s*,\s*/S', '::', $split[$i][0]), $f, $split[$i][1]);
|
| /PHP_TRUNK/win32/build/ |
| H A D | buildconf.js | 187 // If it is --foo=bar, split on the equals sign
188 arg = arg.split("=", 2);
|
| H A D | confutils.js | 171 var a = CWD.split("\\");
172 var b = path.split("\\");
257 var words = text.split(new RegExp("\\s+", "g"));
329 // If it is --foo=bar, split on the equals sign
330 arg = arg.split("=", 2);
533 explicit_path = explicit_path.split(";");
549 env = env.split(";");
610 var dirs = path.split(';');
658 libnames = libnames.split(';');
673 var path = path_to_check.split(';');
[all...] |
| H A D | phpize.js.in | 179 // If it is --foo=bar, split on the equals sign
180 arg = arg.split("=", 2);
|
| H A D | projectgen.js | 8 arr = local.split(" "); 148 var defs = get_define("PHP_DLL_DEF_SOURCES").split(" "); 466 DSP_SOURCES = files.split(" "); 479 DSP_HEADERS = headers.split(" "); 490 newarr = line.split(','); 508 DSP_HEADERS = DSP_HEADERS.concat(libheaders.split(" ")); 518 DSP_SOURCES = sources.split(" "); 585 bcflags = (cflags.replace(/\/([A-Z])\s/g, "/$1")).split(" ");
|
| /PHP_TRUNK/ext/dba/libcdb/ |
| H A D | cdb_make.c | 62 c->split = 0; 174 c->split = (struct cdb_hp *) safe_emalloc(memsize, sizeof(struct cdb_hp), 0); 175 if (!c->split) 178 c->hash = c->split + c->numentries; 189 c->split[--c->start[255 & x->hp[i].h]] = x->hp[i]; 202 hp = c->split + c->start[i]; 221 if (c->split) 222 efree(c->split);
|
| H A D | cdb_make.h | 48 struct cdb_hp *split; /* includes space for hash */ member in struct:cdb_make
|
| /PHP_TRUNK/ext/ereg/ |
| H A D | ereg.c | 59 PHP_DEP_FE(split, arginfo_split) 711 /* {{{ proto array split(string pattern, string string [, int limit]) 713 PHP_FUNCTION(split)
|
| H A D | php_ereg.h | 44 PHP_FUNCTION(split); variable
|
| /PHP_TRUNK/ext/hash/ |
| H A D | hash_tiger.c | 105 # define split(str) \ macro 116 # define split split_ex macro 129 split(str); \
|
| /PHP_TRUNK/ext/curl/ |
| H A D | interface.c | 1806 char *split; local 1814 split = strstr(s, "; "); 1815 if(split) 1816 *split = '\0'; 1825 s = split+2; 1826 } while(split);
|