Home
last modified time | relevance | path

Searched refs:LiteralExpression (Results 1 – 25 of 96) sorted by relevance

1234

/dports/games/fs2open/fs2open.github.com-release_21_4_1/code/actions/expression/nodes/
H A DLiteralExpression.cpp8 LiteralExpression::LiteralExpression(antlr4::Token* token, Value literalValue) in LiteralExpression() function in actions::expression::nodes::LiteralExpression
12 LiteralExpression::~LiteralExpression() = default;
14 Value LiteralExpression::execute(const ProgramVariables& /*variables*/) const in execute()
18 bool LiteralExpression::validate(antlr4::Parser* /*parser*/, const ParseContext& /*context*/) in validate()
23 ValueType LiteralExpression::determineReturnType() const in determineReturnType()
H A DLiteralExpression.h11 class LiteralExpression : public AbstractExpression {
13 LiteralExpression(antlr4::Token* token, Value literalValue);
14 ~LiteralExpression() override;
/dports/java/springframework31/spring-framework-3.1.4.RELEASE/projects/org.springframework.expression/src/test/java/org/springframework/expression/spel/
H A DLiteralExpressionTests.java24 import org.springframework.expression.common.LiteralExpression;
34 LiteralExpression lEx = new LiteralExpression("somevalue"); in testGetValue()
55 LiteralExpression lEx = new LiteralExpression("somevalue"); in testSetValue()
64 LiteralExpression lEx = new LiteralExpression("somevalue"); in testSetValue()
73 LiteralExpression lEx = new LiteralExpression("somevalue"); in testSetValue()
85 LiteralExpression lEx = new LiteralExpression("somevalue"); in testGetValueType()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/clang/include/clang/Tooling/Syntax/
H A DNodes.h227 class LiteralExpression : public Expression {
229 LiteralExpression(NodeKind K) : Expression(K) {} in LiteralExpression() function
235 class IntegerLiteralExpression final : public LiteralExpression {
238 : LiteralExpression(NodeKind::IntegerLiteralExpression) {} in IntegerLiteralExpression()
254 : LiteralExpression(NodeKind::FloatingLiteralExpression) {} in FloatingLiteralExpression()
259 class StringLiteralExpression final : public LiteralExpression {
262 : LiteralExpression(NodeKind::StringLiteralExpression) {} in StringLiteralExpression()
267 class BoolLiteralExpression final : public LiteralExpression {
270 : LiteralExpression(NodeKind::BoolLiteralExpression) {} in BoolLiteralExpression()
275 class CxxNullPtrExpression final : public LiteralExpression {
[all …]
H A DNodes.td38 def LiteralExpression : External<Expression> {}
39 def IntegerLiteralExpression : External<LiteralExpression> {}
40 def CharacterLiteralExpression : External<LiteralExpression> {}
41 def FloatingLiteralExpression : External<LiteralExpression> {}
42 def StringLiteralExpression : External<LiteralExpression> {}
43 def BoolLiteralExpression : External<LiteralExpression> {}
44 def CxxNullPtrExpression : External<LiteralExpression> {}
45 def UserDefinedLiteralExpression : External<LiteralExpression> {}
/dports/net/cloudquery/cloudquery-0.16.0/vendor/github.com/doug-martin/goqu/v9/
H A Dexpressions.go258 func L(sql string, args ...interface{}) exp.LiteralExpression {
263 func Literal(sql string, args ...interface{}) exp.LiteralExpression {
269 func V(val interface{}) exp.LiteralExpression {
280 func Star() exp.LiteralExpression { return exp.Star() }
283 func Default() exp.LiteralExpression {
/dports/math/geogram/geogram-1.7.7/src/bin/fpg/
H A DSimple_semistatic_filter.cpp172 Add_bound_computation::visit( AST::LiteralExpression* lexp ) { in visit()
291 result_bound = new AST::LiteralExpression(1); in visit()
364 result_bound = new AST::LiteralExpression(1); break; in visit()
378 new AST::LiteralExpression( 67108864.0 ), /* 2^(52/2) */ in visit()
387 new AST::LiteralExpression( 0.0 ), in visit()
405 push_bound( new AST::LiteralExpression(1) ); in visit()
630 new AST::LiteralExpression( in visit()
690 new AST::LiteralExpression( 0.0 ), in visit()
697 new AST::LiteralExpression( in visit()
712 new AST::LiteralExpression( -1 ), in visit()
[all …]
H A DAST.cpp28 LiteralExpression *literal_one = new LiteralExpression( 1 );
29 LiteralExpression *literal_zero = new LiteralExpression( 0 );
229 ACCEPT(LiteralExpression)
259 LiteralExpression*
260 LiteralExpression::clone( Clone_context *context ) { in clone()
262 return update_location( this, new LiteralExpression( *this ) ); in clone()
462 new AST::LiteralExpression( 0 ), in make_fe_condition()
H A DStatic_filter_with_scaling.cpp664 new AST::LiteralExpression( 1 ), in visit()
667 new AST::LiteralExpression( -1 ), in visit()
668 new AST::LiteralExpression( 0 ) in visit()
680 new AST::LiteralExpression( 1 ), in visit()
683 new AST::LiteralExpression( -1 ), in visit()
684 new AST::LiteralExpression( 0 ) in visit()
828 new AST::LiteralExpression( actual_min_input ), in make_max_groups()
860 new AST::LiteralExpression( actual_max_input ), in make_max_groups()
1019 AST::Expression *eps = new AST::LiteralExpression( epsilon ); in visit()
1027 static AST::Expression *plus_one = new AST::LiteralExpression( +1); in visit()
[all …]
/dports/net/cloudquery/cloudquery-0.16.0/vendor/github.com/doug-martin/goqu/v9/exp/
H A Dcte.go5 name LiteralExpression
22 func (ce commonExpr) Name() LiteralExpression { return ce.name }
H A Dliteral.go16 func NewLiteralExpression(sql string, args ...interface{}) LiteralExpression {
21 func Star() LiteralExpression {
26 func Default() LiteralExpression {
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/clang/include/clang/Tooling/Syntax/
H A DNodes.td57 def LiteralExpression : Alternatives<Expression> {
62 def IntegerLiteralExpression : Sequence<LiteralExpression> {
74 def CharacterLiteralExpression : Sequence<LiteralExpression> {
82 def FloatingLiteralExpression : Sequence<LiteralExpression> {
94 def StringLiteralExpression : Sequence<LiteralExpression> {
105 def BoolLiteralExpression : Sequence<LiteralExpression> {
113 def CxxNullPtrExpression : Sequence<LiteralExpression> {
121 def UserDefinedLiteralExpression : Alternatives<LiteralExpression> {
/dports/devel/llvm12/llvm-project-12.0.1.src/clang/include/clang/Tooling/Syntax/
H A DNodes.td57 def LiteralExpression : Alternatives<Expression> {
62 def IntegerLiteralExpression : Sequence<LiteralExpression> {
74 def CharacterLiteralExpression : Sequence<LiteralExpression> {
82 def FloatingLiteralExpression : Sequence<LiteralExpression> {
94 def StringLiteralExpression : Sequence<LiteralExpression> {
105 def BoolLiteralExpression : Sequence<LiteralExpression> {
113 def CxxNullPtrExpression : Sequence<LiteralExpression> {
121 def UserDefinedLiteralExpression : Alternatives<LiteralExpression> {
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/clang/include/clang/Tooling/Syntax/
H A DNodes.td57 def LiteralExpression : Alternatives<Expression> {
62 def IntegerLiteralExpression : Sequence<LiteralExpression> {
74 def CharacterLiteralExpression : Sequence<LiteralExpression> {
82 def FloatingLiteralExpression : Sequence<LiteralExpression> {
94 def StringLiteralExpression : Sequence<LiteralExpression> {
105 def BoolLiteralExpression : Sequence<LiteralExpression> {
113 def CxxNullPtrExpression : Sequence<LiteralExpression> {
121 def UserDefinedLiteralExpression : Alternatives<LiteralExpression> {
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/clang/include/clang/Tooling/Syntax/
H A DNodes.td57 def LiteralExpression : Alternatives<Expression> {
62 def IntegerLiteralExpression : Sequence<LiteralExpression> {
74 def CharacterLiteralExpression : Sequence<LiteralExpression> {
82 def FloatingLiteralExpression : Sequence<LiteralExpression> {
94 def StringLiteralExpression : Sequence<LiteralExpression> {
105 def BoolLiteralExpression : Sequence<LiteralExpression> {
113 def CxxNullPtrExpression : Sequence<LiteralExpression> {
121 def UserDefinedLiteralExpression : Alternatives<LiteralExpression> {
/dports/lang/rust/rustc-1.58.1-src/src/llvm-project/clang/include/clang/Tooling/Syntax/
H A DNodes.td57 def LiteralExpression : Alternatives<Expression> {
62 def IntegerLiteralExpression : Sequence<LiteralExpression> {
74 def CharacterLiteralExpression : Sequence<LiteralExpression> {
82 def FloatingLiteralExpression : Sequence<LiteralExpression> {
94 def StringLiteralExpression : Sequence<LiteralExpression> {
105 def BoolLiteralExpression : Sequence<LiteralExpression> {
113 def CxxNullPtrExpression : Sequence<LiteralExpression> {
121 def UserDefinedLiteralExpression : Alternatives<LiteralExpression> {
/dports/devel/wasi-compiler-rt12/llvm-project-12.0.1.src/clang/include/clang/Tooling/Syntax/
H A DNodes.td57 def LiteralExpression : Alternatives<Expression> {
62 def IntegerLiteralExpression : Sequence<LiteralExpression> {
74 def CharacterLiteralExpression : Sequence<LiteralExpression> {
82 def FloatingLiteralExpression : Sequence<LiteralExpression> {
94 def StringLiteralExpression : Sequence<LiteralExpression> {
105 def BoolLiteralExpression : Sequence<LiteralExpression> {
113 def CxxNullPtrExpression : Sequence<LiteralExpression> {
121 def UserDefinedLiteralExpression : Alternatives<LiteralExpression> {
/dports/devel/llvm13/llvm-project-13.0.1.src/clang/include/clang/Tooling/Syntax/
H A DNodes.td57 def LiteralExpression : Alternatives<Expression> {
62 def IntegerLiteralExpression : Sequence<LiteralExpression> {
74 def CharacterLiteralExpression : Sequence<LiteralExpression> {
82 def FloatingLiteralExpression : Sequence<LiteralExpression> {
94 def StringLiteralExpression : Sequence<LiteralExpression> {
105 def BoolLiteralExpression : Sequence<LiteralExpression> {
113 def CxxNullPtrExpression : Sequence<LiteralExpression> {
121 def UserDefinedLiteralExpression : Alternatives<LiteralExpression> {
/dports/lang/clang-mesa/clang-13.0.1.src/include/clang/Tooling/Syntax/
H A DNodes.td57 def LiteralExpression : Alternatives<Expression> {
62 def IntegerLiteralExpression : Sequence<LiteralExpression> {
74 def CharacterLiteralExpression : Sequence<LiteralExpression> {
82 def FloatingLiteralExpression : Sequence<LiteralExpression> {
94 def StringLiteralExpression : Sequence<LiteralExpression> {
105 def BoolLiteralExpression : Sequence<LiteralExpression> {
113 def CxxNullPtrExpression : Sequence<LiteralExpression> {
121 def UserDefinedLiteralExpression : Alternatives<LiteralExpression> {
/dports/games/fs2open/fs2open.github.com-release_21_4_1/code/actions/expression/
H A DExpressionParser.cpp97 std::shared_ptr<nodes::LiteralExpression> expression; in visitLiteral_expression()
100 expression = std::make_shared<nodes::LiteralExpression>(context->FLOAT()->getSymbol(), in visitLiteral_expression()
103 expression = std::make_shared<nodes::LiteralExpression>(context->INT()->getSymbol(), in visitLiteral_expression()
109 expression = std::make_shared<nodes::LiteralExpression>(context->STRING()->getSymbol(), in visitLiteral_expression()
/dports/databases/py-pycql/pycql-0.0.12/pycql/
H A Dparser.py151 p[1], ast.LiteralExpression(p[4 if not_ else 3]),
240 p[0] = ast.LiteralExpression(p[1])
254 p[0] = ast.LiteralExpression(p[1])
/dports/net-mgmt/icinga2/icinga2-2.13.2/lib/config/
H A Dconfigitembuilder.cpp93 std::unique_ptr<LiteralExpression>(new LiteralExpression(templateArray)), m_DebugInfo)); in Compile()
/dports/databases/py-pycql/pycql-0.0.12/pycql/integrations/sqlalchemy/
H A Devaluate.py14 LiteralExpression,
80 elif isinstance(node, LiteralExpression):
/dports/java/springframework31/spring-framework-3.1.4.RELEASE/projects/org.springframework.expression/src/main/java/org/springframework/expression/common/
H A DLiteralExpression.java33 public class LiteralExpression implements Expression { class
39 public LiteralExpression(String literalValue) { in LiteralExpression() method in LiteralExpression
/dports/databases/py-pycql/pycql-0.0.12/pycql/integrations/django/
H A Devaluate.py36 LiteralExpression, ArithmeticExpressionNode,
107 elif isinstance(node, LiteralExpression):

1234