HomeSort by relevance Sort by last modified time
    Searched refs:StringExpression (Results 1 - 5 of 5) sorted by null

  /external/jsilver/src/com/google/clearsilver/jsilver/compiler/
VariableTranslator.java 19 import static com.google.clearsilver.jsilver.compiler.JavaExpression.StringExpression;
73 components.add(new StringExpression(node.getWord().getText()));
78 components.add(new StringExpression(node.getDecNumber().getText()));
83 components.add(new StringExpression(node.getHexNumber().getText()));
114 private static final JavaExpression DOT = new StringExpression(".");
130 if (current instanceof StringExpression && last instanceof StringExpression) {
132 StringExpression currentString = (StringExpression) current;
133 StringExpression lastString = (StringExpression) last
    [all...]
JavaExpression.java 244 return new StringExpression(value);
247 public static class StringExpression extends JavaExpression {
251 public StringExpression(String value) {
  /external/webkit/Source/WebCore/xml/
XPathPredicate.h 49 class StringExpression : public Expression {
51 StringExpression(const String&);
XPathPredicate.cpp 54 StringExpression::StringExpression(const String& value)
59 Value StringExpression::evaluate() const
XPathGrammar.y 353 $$ = new StringExpression(*$1);

Completed in 233 milliseconds