Home
last modified time | relevance | path

Searched refs:regcomp_flags (Results 1 – 1 of 1) sorted by relevance

/src/contrib/sqlite3/autosetup/
H A Djimsh0.c3681 int regcomp_flags = 0; in Jim_RegexpCmd() local
3717 regcomp_flags |= REG_ICASE; in Jim_RegexpCmd()
3721 regcomp_flags |= REG_NEWLINE; in Jim_RegexpCmd()
3746 regex = SetRegexpFromAny(interp, argv[i], regcomp_flags); in Jim_RegexpCmd()
3853 if (opt_all && (pattern[0] != '^' || (regcomp_flags & REG_NEWLINE)) && *source_str) { in Jim_RegexpCmd()
3886 int regcomp_flags = 0; in Jim_RegsubCmd() local
3937 regcomp_flags |= REG_ICASE; in Jim_RegsubCmd()
3941 regcomp_flags |= REG_NEWLINE; in Jim_RegsubCmd()
3969 regex = SetRegexpFromAny(interp, regcomp_obj, regcomp_flags); in Jim_RegsubCmd()
4096 if ((regcomp_flags & REG_NEWLINE) == 0 && pattern[0] == '^') { in Jim_RegsubCmd()