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

1 2 3 4 5 6 7 8 9

  /system/tools/hidl/test/hidl_test/
static_test.cpp 3 #include <android/hardware/tests/expression/1.0/IExpression.h>
10 using ::android::hardware::tests::expression::V1_0::IExpression;
259 struct Expression : public IExpression {
  /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) {
  /system/tools/hidl/c2hal/
Expression.h 30 struct Expression {
31 Expression() {}
32 virtual ~Expression() {}
69 static Expression *parenthesize(Expression *inner);
70 static Expression *atom(Type type, const std::string &value, bool isId = false);
71 static Expression *unary(std::string op, Expression *rhs);
72 static Expression *binary(Expression *lhs, std::string op, Expression *rhs)
    [all...]
  /art/compiler/debug/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) {
  /toolchain/binutils/binutils-2.27/gold/
script.h 63 // This class represents an expression in a linker script.
65 class Expression
69 Expression()
73 virtual ~Expression()
76 // Return the value of the expression which is not permitted to
82 // Return the value of an expression which is permitted to refer to
94 // this is an ALIGN expression. If IS_SECTION_DOT_ASSIGMENT is true,
104 // Return the value of an expression which may or may not be
118 // Print the expression to the FILE. This is for debugging.
126 // Compute the value of the expression (implemented by child class)
258 const Version_expression* expression; member in struct:gold::Version_script_info::Version_tree_match
281 const Version_expression* expression; member in struct:gold::Version_script_info::Glob
    [all...]
  /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/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 70 return Expression(val, name_base, varset)
71 elif isinstance(val, Expression):
89 % elif isinstance(val, Expression):
117 Expression=Expression)
192 class Expression(Value):
194 Value.__init__(self, name_base, "expression")
209 return srcs + super(Expression, self).render()
276 32-bit result so it could end up replacing a 64-bit expression with one
278 example, consider this expression
    [all...]
  /external/mesa3d/src/gallium/drivers/swr/rasterizer/scripts/mako/
parsetree.py 168 class Expression(Node):
169 """defines an inline expression.
176 super(Expression, self).__init__(**kwargs)
194 return "Expression(%r, %r, %r)" % (
521 self.expression = attributes['expr']
522 self.code = ast.PythonCode(self.expression, **self.exception_kwargs)
544 self.expression = "%s.%s(%s)" % (
551 self.code = ast.PythonCode(self.expression, **self.exception_kwargs)
  /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 {
47 Expression(int offset, Kind kind, const Type& type)
53 * Returns true if this expression is constant. compareConstant must be implemented for all
61 * Compares this constant expression against another constant expression of the same type. It is
65 virtual bool compareConstant(const Context& context, const Expression& other) const {
70 * For an expression which evaluates to a constant int, returns the value. Otherwise calls
78 * 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 {
47 Expression(int offset, Kind kind, const Type& type)
53 * Returns true if this expression is constant. compareConstant must be implemented for all
61 * Compares this constant expression against another constant expression of the same type. It is
65 virtual bool compareConstant(const Context& context, const Expression& other) const {
70 * For an expression which evaluates to a constant int, returns the value. Otherwise calls
78 * For an expression which evaluates to a constant float, returns the value. Otherwise call
    [all...]
  /frameworks/compile/mclinker/include/mcld/Script/
ScriptFile.h 42 Expression, // --defsym
  /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
112 Expression* createNextChild (GeneratorState& state) { DE_UNREF(state); return DE_NULL;
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Transforms/Scalar/
GVNExpression.h 1 //======- GVNExpression.h - GVN Expression classes --------------*- C++ -*-===//
11 /// The header file for the GVN pass that contains expression handling
56 class Expression {
62 Expression(ExpressionType ET = ET_Base, unsigned O = ~2U)
64 Expression(const Expression &) = delete;
65 Expression &operator=(const Expression &) = delete;
66 virtual ~Expression();
70 bool operator!=(const Expression &Other) const { return !(*this == Other);
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/Transforms/Scalar/
GVNExpression.h 1 //======- GVNExpression.h - GVN Expression classes --------------*- C++ -*-===//
11 /// The header file for the GVN pass that contains expression handling
57 class Expression {
64 Expression(ExpressionType ET = ET_Base, unsigned O = ~2U)
66 Expression(const Expression &) = delete;
67 Expression &operator=(const Expression &) = delete;
68 virtual ~Expression();
72 bool operator!=(const Expression &Other) const { return !(*this == Other);
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/Transforms/Scalar/
GVNExpression.h 1 //======- GVNExpression.h - GVN Expression classes --------------*- C++ -*-===//
11 /// The header file for the GVN pass that contains expression handling
57 class Expression {
64 Expression(ExpressionType ET = ET_Base, unsigned O = ~2U)
66 Expression(const Expression &) = delete;
67 Expression &operator=(const Expression &) = delete;
68 virtual ~Expression();
72 bool operator!=(const Expression &Other) const { return !(*this == Other);
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4579689/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...]
  /prebuilts/clang/host/darwin-x86/clang-4630689/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...]
  /prebuilts/clang/host/darwin-x86/clang-4639204/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...]

Completed in 1724 milliseconds

1 2 3 4 5 6 7 8 9