anchor            111 ext/intl/locale/locale_methods.c 	const char* const* anchor = list;
anchor            114 ext/intl/locale/locale_methods.c 			return (int16_t)(list - anchor);
anchor           1204 ext/intl/locale/locale_methods.c 	char* 	anchor 	= NULL;
anchor           1211 ext/intl/locale/locale_methods.c 	anchor = retstr;
anchor           1223 ext/intl/locale/locale_methods.c 	retstr=  anchor;
anchor            684 ext/mbstring/oniguruma/oniguruma.h   int            anchor;            /* BEGIN_BUF, BEGIN_POS, (SEMI_)END_BUF */
anchor           4973 ext/mbstring/oniguruma/regcomp.c   reg->anchor = opt.anc.left_anchor & (ANCHOR_BEGIN_BUF |
anchor           4976 ext/mbstring/oniguruma/regcomp.c   reg->anchor |= opt.anc.right_anchor & (ANCHOR_END_BUF | ANCHOR_SEMI_END_BUF);
anchor           4978 ext/mbstring/oniguruma/regcomp.c   if (reg->anchor & (ANCHOR_END_BUF | ANCHOR_SEMI_END_BUF)) {
anchor           5015 ext/mbstring/oniguruma/regcomp.c   reg->anchor        = 0;
anchor           5078 ext/mbstring/oniguruma/regcomp.c print_anchor(FILE* f, int anchor)
anchor           5084 ext/mbstring/oniguruma/regcomp.c   if (anchor & ANCHOR_BEGIN_BUF) {
anchor           5088 ext/mbstring/oniguruma/regcomp.c   if (anchor & ANCHOR_BEGIN_LINE) {
anchor           5093 ext/mbstring/oniguruma/regcomp.c   if (anchor & ANCHOR_BEGIN_POSITION) {
anchor           5098 ext/mbstring/oniguruma/regcomp.c   if (anchor & ANCHOR_END_BUF) {
anchor           5103 ext/mbstring/oniguruma/regcomp.c   if (anchor & ANCHOR_SEMI_END_BUF) {
anchor           5108 ext/mbstring/oniguruma/regcomp.c   if (anchor & ANCHOR_END_LINE) {
anchor           5113 ext/mbstring/oniguruma/regcomp.c   if (anchor & ANCHOR_ANYCHAR_STAR) {
anchor           5118 ext/mbstring/oniguruma/regcomp.c   if (anchor & ANCHOR_ANYCHAR_STAR_ML) {
anchor           5133 ext/mbstring/oniguruma/regcomp.c   fprintf(f, "  anchor: "); print_anchor(f, reg->anchor);
anchor           5134 ext/mbstring/oniguruma/regcomp.c   if ((reg->anchor & ANCHOR_END_BUF_MASK) != 0)
anchor           3452 ext/mbstring/oniguruma/regexec.c   if (reg->anchor != 0 && str < end) {
anchor           3455 ext/mbstring/oniguruma/regexec.c     if (reg->anchor & ANCHOR_BEGIN_POSITION) {
anchor           3463 ext/mbstring/oniguruma/regexec.c     else if (reg->anchor & ANCHOR_BEGIN_BUF) {
anchor           3478 ext/mbstring/oniguruma/regexec.c     else if (reg->anchor & ANCHOR_END_BUF) {
anchor           3511 ext/mbstring/oniguruma/regexec.c     else if (reg->anchor & ANCHOR_SEMI_END_BUF) {
anchor           3534 ext/mbstring/oniguruma/regexec.c     else if ((reg->anchor & ANCHOR_ANYCHAR_STAR_ML)) {
anchor           3617 ext/mbstring/oniguruma/regexec.c         if ((reg->anchor & ANCHOR_ANYCHAR_STAR) != 0) {
anchor           2286 ext/mbstring/oniguruma/regparse.c     int   anchor;
anchor           3248 ext/mbstring/oniguruma/regparse.c       tok->u.anchor = ANCHOR_WORD_BOUND;
anchor           3254 ext/mbstring/oniguruma/regparse.c       tok->u.anchor = ANCHOR_NOT_WORD_BOUND;
anchor           3261 ext/mbstring/oniguruma/regparse.c       tok->u.anchor = ANCHOR_WORD_BEGIN;
anchor           3267 ext/mbstring/oniguruma/regparse.c       tok->u.anchor = ANCHOR_WORD_END;
anchor           5345 ext/mbstring/oniguruma/regparse.c     *np = onig_node_new_anchor(tok->u.anchor);
anchor             75 ext/mbstring/oniguruma/regparse.h #define NANCHOR(node)      (&((node)->u.anchor))
anchor            261 ext/mbstring/oniguruma/regparse.h     AnchorNode   anchor;