Lines Matching refs:action

42         String action = "i<3; '<xmltag>'";  in testEscapedLessThanInAction()  local
44 testActions(attributeTemplate, "members", action, expected); in testEscapedLessThanInAction()
45 testActions(attributeTemplate, "init", action, expected); in testEscapedLessThanInAction()
46 testActions(attributeTemplate, "inline", action, expected); in testEscapedLessThanInAction()
47 testActions(attributeTemplate, "finally", action, expected); in testEscapedLessThanInAction()
48 testActions(attributeTemplate, "inline2", action, expected); in testEscapedLessThanInAction()
52 String action = "int \\$n; \"\\$in string\\$\""; in testEscaped$InAction() local
54 testActions(attributeTemplate, "members", action, expected); in testEscaped$InAction()
55 testActions(attributeTemplate, "init", action, expected); in testEscaped$InAction()
56 testActions(attributeTemplate, "inline", action, expected); in testEscaped$InAction()
57 testActions(attributeTemplate, "finally", action, expected); in testEscaped$InAction()
58 testActions(attributeTemplate, "inline2", action, expected); in testEscaped$InAction()
66 String action = "\\$string$"; in testUnescaped$InAction() local
68 testActions(attributeTemplate, "members", action, expected); in testUnescaped$InAction()
69 testActions(attributeTemplate, "init", action, expected); in testUnescaped$InAction()
70 testActions(attributeTemplate, "inline", action, expected); in testUnescaped$InAction()
71 testActions(attributeTemplate, "finally", action, expected); in testUnescaped$InAction()
72 testActions(attributeTemplate, "inline2", action, expected); in testUnescaped$InAction()
76 String action = "x = '\\n';"; // x = '\n'; -> x = '\n'; in testEscapedSlash() local
78 testActions(attributeTemplate, "members", action, expected); in testEscapedSlash()
79 testActions(attributeTemplate, "init", action, expected); in testEscapedSlash()
80 testActions(attributeTemplate, "inline", action, expected); in testEscapedSlash()
81 testActions(attributeTemplate, "finally", action, expected); in testEscapedSlash()
82 testActions(attributeTemplate, "inline2", action, expected); in testEscapedSlash()
86 String action = "x, (*a).foo(21,33), 3.2+1, '\\n', "+ in testComplicatedArgParsing() local
90 testActions(attributeTemplate, "members", action, expected); in testComplicatedArgParsing()
91 testActions(attributeTemplate, "init", action, expected); in testComplicatedArgParsing()
92 testActions(attributeTemplate, "inline", action, expected); in testComplicatedArgParsing()
93 testActions(attributeTemplate, "finally", action, expected); in testComplicatedArgParsing()
94 testActions(attributeTemplate, "inline2", action, expected); in testComplicatedArgParsing()
98 String action = "x, $ID.text+\"3242\", (*$ID).foo(21,33), 3.2+1, '\\n', "+ in testComplicatedArgParsingWithTranslation() local
103 testActions(attributeTemplate, "inline", action, expected); in testComplicatedArgParsingWithTranslation()
107 String action = "$x; $ctx.x"; in testArguments() local
109 testActions(attributeTemplate, "inline", action, expected); in testArguments()
113 String action = "$y; $ctx.y"; in testReturnValue() local
115 testActions(attributeTemplate, "inline", action, expected); in testReturnValue()
119 String action = "$ctx.x1"; in testReturnValueWithNumber() local
121 testActions(attributeTemplate, "inline", action, expected); in testReturnValueWithNumber()
125 String action = "$y; $ctx.y;"; in testReturnValuesCurrentRule() local
127 testActions(attributeTemplate, "inline", action, expected); in testReturnValuesCurrentRule()
131 String action = "$lab.e; $b.e; $y.e = \"\";"; in testReturnValues() local
133 testActions(attributeTemplate, "inline", action, expected); in testReturnValues()
137 String action = "$c.x; $c.y;"; in testReturnWithMultipleRuleRefs() local
139 testActions(attributeTemplate, "inline", action, expected); in testReturnWithMultipleRuleRefs()
143 String action = "$id; $ID; $id.text; $id.getText(); $id.line;"; in testTokenRefs() local
145 testActions(attributeTemplate, "inline", action, expected); in testTokenRefs()
149 String action = "$lab.start; $c.text;"; in testRuleRefs() local
151 testActions(attributeTemplate, "inline", action, expected); in testRuleRefs()
156 String action = "$qqq.text"; in testUnknownAttr() local
158 testActions(attributeTemplate, "inline", action, expected); in testUnknownAttr()
189 String action = "$v = $e.v;"; in testRuleRefsRecursive() local
191 testActions(recursiveTemplate, "inline", action, expected); in testRuleRefsRecursive()
192 testActions(leftRecursiveTemplate, "inline", action, expected); in testRuleRefsRecursive()
194 action = "$v = $e.text.length();"; in testRuleRefsRecursive()
196 testActions(recursiveTemplate, "inline", action, expected); in testRuleRefsRecursive()
197 testActions(leftRecursiveTemplate, "inline", action, expected); in testRuleRefsRecursive()
201 String action = "$ctx.text; $text"; in testRefToTextAttributeForCurrentRule() local
207 testActions(attributeTemplate, "init", action, expected); in testRefToTextAttributeForCurrentRule()
208 testActions(attributeTemplate, "inline", action, expected); in testRefToTextAttributeForCurrentRule()
209 testActions(attributeTemplate, "finally", action, expected); in testRefToTextAttributeForCurrentRule()