HomeSort by relevance Sort by last modified time
    Searched defs:Expression (Results 1 - 25 of 78) sorted by null

1 2 3 4

  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/expr/
Expression.java 30 public abstract class Expression extends Node {
32 public Expression() {
35 public Expression(Range range) {
  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/proper_source/com/github/javaparser/ast/expr/
Expression.java 29 public abstract class Expression extends Node {
31 public Expression() {
34 public Expression(final int beginLine, final int beginColumn, final int endLine, final int endColumn) {
  /art/libelffile/dwarf/
expression.h 33 class Expression : private Writer<> {
114 explicit Expression(std::vector<uint8_t>* buffer) : Writer<>(buffer) {
debug_frame_opcode_writer.h 261 void ALWAYS_INLINE Expression(Reg reg, uint8_t* expr, int expr_size) {
  /build/blueprint/parser/
ast.go 42 Value Expression
43 OrigValue Expression
94 Value Expression
110 // An Expression is a Value in a Property or Assignment. It can be a literal (String or Bool), a
113 type Expression interface {
115 // Copy returns a copy of the Expression that will not affect the original if mutated
116 Copy() Expression
118 // Type returns the underlying Type enum of the Expression if it were to be evalutated
120 // Eval returns an expression that is fully evaluated to a simple type (List, Map, String, or
122 Eval() Expression
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/compiler/
astgen.py 276 class Expression(Node):
277 # Expression is an artificial node class to support "eval"
278 nodes["expression"] = "Expression"
289 return "Expression(%s)" % (repr(self.node))
  /external/fonttools/Lib/fontTools/voltLib/
ast.py 14 class Expression(object):
79 class GlyphName(Expression):
82 Expression.__init__(self, location)
89 class Enum(Expression):
92 Expression.__init__(self, location)
109 class GroupName(Expression):
112 Expression.__init__(self, location)
127 class Range(Expression):
130 Expression.__init__(self, location)
  /external/llvm/lib/CodeGen/AsmPrinter/
DebugLocEntry.h 34 : Expression(Expr), EntryKind(E_Integer) {
38 : Expression(Expr), EntryKind(E_ConstantFP) {
42 : Expression(Expr), EntryKind(E_ConstantInt) {
46 : Expression(Expr), EntryKind(E_Location), Loc(Loc) {
50 /// Any complex address location expression for this Value.
51 const DIExpression *Expression;
76 const DIExpression *getExpression() const { return Expression; }
90 if (Expression)
91 Expression->dump();
148 /// \brief Lower this entry into a DWARF expression
    [all...]
  /external/mesa3d/src/compiler/nir/
nir_algebraic.py 69 return Expression(val, name_base, varset)
70 elif isinstance(val, Expression):
87 % elif isinstance(val, Expression):
115 Expression=Expression)
190 class Expression(Value):
192 Value.__init__(self, name_base, "expression")
207 return srcs + super(Expression, self).render()
274 32-bit result so it could end up replacing a 64-bit expression with one
276 example, consider this expression
    [all...]
  /external/python/cpython2/Tools/compiler/
astgen.py 276 class Expression(Node):
277 # Expression is an artificial node class to support "eval"
278 nodes["expression"] = "Expression"
289 return "Expression(%s)" % (repr(self.node))
  /external/skia/src/sksl/ir/
SkSLExpression.h 18 struct Expression;
21 typedef std::unordered_map<const Variable*, std::unique_ptr<Expression>*> DefinitionMap;
26 struct Expression : public IRNode {
49 Expression(int offset, Kind kind, const Type& type)
55 * Returns true if this expression is constant. compareConstant must be implemented for all
63 * Compares this constant expression against another constant expression of the same type. It is
67 virtual bool compareConstant(const Context& context, const Expression& other) const {
72 * For an expression which evaluates to a constant int, returns the value. Otherwise calls
80 * For an expression which evaluates to a constant float, returns the value. Otherwise call
    [all...]
  /external/skqp/src/sksl/ir/
SkSLExpression.h 18 struct Expression;
21 typedef std::unordered_map<const Variable*, std::unique_ptr<Expression>*> DefinitionMap;
26 struct Expression : public IRNode {
48 Expression(int offset, Kind kind, const Type& type)
54 * Returns true if this expression is constant. compareConstant must be implemented for all
62 * Compares this constant expression against another constant expression of the same type. It is
66 virtual bool compareConstant(const Context& context, const Expression& other) const {
71 * For an expression which evaluates to a constant int, returns the value. Otherwise calls
79 * For an expression which evaluates to a constant float, returns the value. Otherwise call
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/AsmPrinter/
DebugLocEntry.h 35 : Expression(Expr), EntryKind(E_Integer) {
39 : Expression(Expr), EntryKind(E_ConstantFP) {
43 : Expression(Expr), EntryKind(E_ConstantInt) {
47 : Expression(Expr), EntryKind(E_Location), Loc(Loc) {
51 /// Any complex address location expression for this Value.
52 const DIExpression *Expression;
77 const DIExpression *getExpression() const { return Expression; }
92 if (Expression)
93 Expression->dump();
151 /// Lower this entry into a DWARF expression
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/
Expression.java 19 * $Id: Expression.java 468655 2006-10-28 07:12:06Z minchau $
37 * This abstract class serves as the base for all expression objects. An
38 * Expression can be executed to return a {@link org.apache.xpath.objects.XObject},
45 public abstract class Expression implements java.io.Serializable, ExpressionNode, XPathVisitable
49 * The location where this expression was built from. Need for diagnostic
56 * Tell if this expression or it's subexpressions can traverse outside
67 // * Set the location where this expression was built from.
70 // * @param locator the location where this expression was built from, may be
79 * Execute an expression in the XPath runtime context, and return the
80 * result of the expression
    [all...]
  /external/clang/include/clang/Sema/
TemplateDeduction.h 53 Expression(nullptr) {}
165 /// \brief The expression which caused a deduction failure.
170 Expr *Expression;
227 /// \brief Return the expression this deduction failure refers to,
  /external/deqp/framework/randomshaders/
rsgExpression.hpp 50 class Expression
53 virtual ~Expression (void);
56 virtual Expression* createNextChild (GeneratorState& state) = DE_NULL;
62 virtual ExecValueAccess getLValue (void) const { DE_ASSERT(DE_FALSE); throw Exception("Expression::getLValue(): not L-value node"); }
64 static Expression* createRandom (GeneratorState& state, ConstValueRangeAccess valueRange);
65 static Expression* createRandomLValue (GeneratorState& state, ConstValueRangeAccess valueRange);
68 class VariableAccess : public Expression
73 Expression* createNextChild (GeneratorState& state) { DE_UNREF(state); return DE_NULL; }
106 class FloatLiteral : public Expression
113 Expression* createNextChild (GeneratorState& state) { DE_UNREF(state); return DE_NULL;
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Transforms/Scalar/
GVNExpression.h 1 //===- GVNExpression.h - GVN Expression classes -----------------*- C++ -*-===//
12 /// The header file for the GVN pass that contains expression handling
61 class Expression {
68 Expression(ExpressionType ET = ET_Base, unsigned O = ~2U)
70 Expression(const Expression &) = delete;
71 Expression &operator=(const Expression &) = delete;
72 virtual ~Expression();
77 bool operator!=(const Expression &Other) const { return !(*this == Other);
    [all...]
  /external/fonttools/Lib/fontTools/feaLib/
ast.py 27 'Expression',
140 class Expression(Element):
153 class GlyphName(Expression):
156 Expression.__init__(self, location)
166 class GlyphClass(Expression):
169 Expression.__init__(self, location)
214 class GlyphClassName(Expression):
217 Expression.__init__(self, location)
228 class MarkClassName(Expression):
231 Expression.__init__(self, location
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/DWARF/
DWARFDebugFrame.h 39 /// operands. If it refers to an expression, then this expression has its own
46 // Associated DWARF expression in case this instruction refers to one
47 Optional<DWARFExpression> Expression;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/
ast.py 38 class Expression(Node):
39 # Expression is an artificial node class to support "eval"
40 nodes["expression"] = "Expression"
51 return "Expression(%s)" % (repr(self.node))
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/SetupBrowserDxe/
IfrParse.c 73 Statement->Expression = (FORM_EXPRESSION_LIST *) AllocatePool(
75 ASSERT (Statement->Expression != NULL);
76 Statement->Expression->Count = (UINTN) ConditionalExprCount;
77 Statement->Expression->Signature = FORM_EXPRESSION_LIST_SIGNATURE;
78 CopyMem (Statement->Expression->Expression, GetConditionalExpressionList(ExpressStatement), (UINTN) (sizeof (FORM_EXPRESSION *) * ConditionalExprCount));
288 @param Form The Form associated with this Expression
300 FORM_EXPRESSION *Expression;
302 Expression = AllocateZeroPool (sizeof (FORM_EXPRESSION));
303 ASSERT (Expression != NULL);
    [all...]
Presentation.c 35 @retval EFI_SUCCESS The expression evaluated successfuly
46 FORM_EXPRESSION *Expression;
50 Expression = FORM_EXPRESSION_FROM_LINK (Link);
53 if (Expression->Type == EFI_HII_EXPRESSION_INCONSISTENT_IF ||
54 Expression->Type == EFI_HII_EXPRESSION_NO_SUBMIT_IF ||
55 Expression->Type == EFI_HII_EXPRESSION_WARNING_IF ||
56 Expression->Type == EFI_HII_EXPRESSION_WRITE ||
57 (Expression->Type == EFI_HII_EXPRESSION_READ && Form->FormType != STANDARD_MAP_FORM_TYPE)) {
64 Status = EvaluateExpression (FormSet, Form, Expression);
302 if ((EvaluateExpressionList(Statement->Expression, FALSE, NULL, NULL) == ExpressGrayOut) || Statement->Locked) {
    [all...]
  /external/clang/include/clang/AST/
TemplateBase.h 64 /// The template argument is an expression, and we've not resolved it to one
68 /// __uuidof expression (a Microsoft extension).
69 Expression,
188 /// \brief Construct a template argument that is an expression.
191 /// lists used for dependent types and for expression; it will not
194 TypeOrValue.Kind = Expression;
304 /// \brief Retrieve the template argument as an expression.
306 assert(getKind() == Expression && "Unexpected kind");
382 Expr *Expression;
391 TemplateArgumentLocInfo(Expr *E) : Expression(E) {
    [all...]
  /external/python/cpython2/Lib/compiler/
ast.py 38 class Expression(Node):
39 # Expression is an artificial node class to support "eval"
40 nodes["expression"] = "Expression"
51 return "Expression(%s)" % (repr(self.node))
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AVR/AsmParser/
AVRAsmParser.cpp 390 // Parse (potentially inner) expression
391 MCExpr const *Expression;
392 if (getParser().parseExpression(Expression))
396 Operands.push_back(AVROperand::CreateImm(Expression, S, E));
471 // If we have a modifier wrap the inner expression
475 MCExpr const *Expression = AVRMCExpr::create(ModifierKind, InnerExpression,
479 Operands.push_back(AVROperand::CreateImm(Expression, S, E));
533 MCExpr const *Expression;
549 if (getParser().parseExpression(Expression))
555 Operands.push_back(AVROperand::CreateMemri(RegNo, Expression, S, E))
    [all...]

Completed in 597 milliseconds

1 2 3 4