Home | History | Annotate | Download | only in Core

Lines Matching refs:close_bracket_position

2782                 const char *close_bracket_position = ::strchr(expression_cstr+1,']');
2783 if (!close_bracket_position) // if there is no ], this is a syntax error
2790 if (!separator_position || separator_position > close_bracket_position) // if no separator, this is either [] or [N]
2794 if (!end || end != close_bracket_position) // if something weird is in our way return an error
2978 if (!end || end != close_bracket_position) // if something weird is in our way return an error
3130 const char *close_bracket_position = ::strchr(expression_cstr+1,']');
3131 if (!close_bracket_position) // if there is no ], this is a syntax error
3138 if (!separator_position || separator_position > close_bracket_position) // if no separator, this is either [] or [N]
3142 if (!end || end != close_bracket_position) // if something weird is in our way return an error
3265 if (!end || end != close_bracket_position) // if something weird is in our way return an error