Lines Matching defs:string
45 %token T_EXPR_STRING "string expression"
58 %token T_STR_BEGIN "start of string"
59 %token T_STR_END "end of string"
72 %token T_OP_STR_EQ "string equal"
73 %token T_OP_STR_NE "string not equal"
74 %token T_OP_STR_LT "string less than"
75 %token T_OP_STR_LE "string less or equal"
76 %token T_OP_STR_GT "string greater than"
77 %token T_OP_STR_GE "string greater or equal"
78 %token T_OP_CONCAT "string concatenation"
97 %type <exVal> string
113 | T_EXPR_STRING string { ctx->expr = $2; }
154 string : string strpart { $$ = ap_expr_make(op_Concat, $1, $2, ctx); }
165 | T_VAR_BEGIN T_ID ':' string T_VAR_END { $$ = ap_expr_str_func_make($2, $4, ctx); }
173 | T_STR_BEGIN string T_STR_END { $$ = $2; }