Changeset 18526 in webkit for trunk/JavaScriptCore/pcre/pcre_compile.c
- Timestamp:
- Jan 2, 2007, 9:39:50 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/pcre/pcre_compile.c
r18525 r18526 356 356 357 357 static BOOL 358 compile_regex(int, int, int *, uschar **, const pcre_uchar **, const pcre_uchar const*, int *, BOOL, int,358 compile_regex(int, int, int *, uschar **, const pcre_uchar **, const pcre_uchar *, int *, BOOL, int, 359 359 int *, int *, branch_chain *, compile_data *); 360 360 … … 384 384 385 385 static int 386 check_escape(const pcre_uchar **ptrptr, const pcre_uchar const*patternEnd, int *errorcodeptr, int bracount,386 check_escape(const pcre_uchar **ptrptr, const pcre_uchar *patternEnd, int *errorcodeptr, int bracount, 387 387 int options, BOOL isclass) 388 388 { … … 596 596 597 597 static int 598 get_ucp(const pcre_uchar **ptrptr, const pcre_uchar const*patternEnd, BOOL *negptr, int *errorcodeptr)598 get_ucp(const pcre_uchar **ptrptr, const pcre_uchar *patternEnd, BOOL *negptr, int *errorcodeptr) 599 599 { 600 600 int c, i, bot, top; … … 689 689 690 690 static BOOL 691 is_counted_repeat(const pcre_uchar *p, const pcre_uchar const*patternEnd)691 is_counted_repeat(const pcre_uchar *p, const pcre_uchar *patternEnd) 692 692 { 693 693 if (p >= patternEnd || (DIGITAB(*p) & ctype_digit) == 0) … … 1373 1373 1374 1374 static BOOL 1375 check_posix_syntax(const pcre_uchar *ptr, const pcre_uchar const*patternEnd, const pcre_uchar **endptr, compile_data *cd)1375 check_posix_syntax(const pcre_uchar *ptr, const pcre_uchar *patternEnd, const pcre_uchar **endptr, compile_data *cd) 1376 1376 { 1377 1377 int terminator; /* Don't combine these lines; the Solaris cc */ … … 1600 1600 static BOOL 1601 1601 compile_branch(int *optionsptr, int *brackets, uschar **codeptr, 1602 const pcre_uchar **ptrptr, const pcre_uchar const*patternEnd, int *errorcodeptr, int *firstbyteptr,1602 const pcre_uchar **ptrptr, const pcre_uchar *patternEnd, int *errorcodeptr, int *firstbyteptr, 1603 1603 int *reqbyteptr, branch_chain *bcptr, compile_data *cd) 1604 1604 { … … 3503 3503 static BOOL 3504 3504 compile_regex(int options, int oldims, int *brackets, uschar **codeptr, 3505 const pcre_uchar **ptrptr, const pcre_uchar const*patternEnd, int *errorcodeptr, BOOL lookbehind, int skipbytes,3505 const pcre_uchar **ptrptr, const pcre_uchar *patternEnd, int *errorcodeptr, BOOL lookbehind, int skipbytes, 3506 3506 int *firstbyteptr, int *reqbyteptr, branch_chain *bcptr, compile_data *cd) 3507 3507 { … … 3956 3956 const uschar *codestart; 3957 3957 const pcre_uchar *ptr; 3958 const pcre_uchar const*patternEnd;3958 const pcre_uchar *patternEnd; 3959 3959 compile_data compile_block; 3960 3960 int brastack[BRASTACK_SIZE];
Note:
See TracChangeset
for help on using the changeset viewer.