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

12 3 4

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/
pycodegen.py 61 gen = Expression(source, filename)
89 class Expression(AbstractCompileMode):
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Eot/
FvImage.py 163 for Index in range(0, len(Depex.Expression)):
164 Item = Depex.Expression[Index]
167 Guid = gGuidStringFormat % Depex.Expression[Index]
168 if Guid in self.OrderedFfsDict and Depex.Expression[Index + 1] == 0x08:
172 Guid = gGuidStringFormat % Depex.Expression[Index]
173 if Guid in self.OrderedFfsDict and Depex.Expression[Index + 1] == 0x08:
177 Guid = gGuidStringFormat % Depex.Expression[Index]
200 if Index != len(Depex.Expression) - 1:
762 for T in m.Expression:
798 Expression = property(_GetExpression)
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/SetupBrowserDxe/
Expression.c 2 Utility functions for expression evaluation.
218 Push current expression onto the Stack
220 @param Pointer Pointer to current expression.
246 Pop current expression from the Stack
248 @param Pointer Pointer to current expression to be pop.
428 Get the expression list count.
430 @param Level Which type this expression belong to. Form,
433 @retval >=0 The expression count
456 Get the expression Buffer pointer.
458 @param Level Which type this expression belong to. Form,
    [all...]
Setup.c     [all...]
Setup.h 76 // Incremental size of stack for expression
232 UINT8 Type; // Type for this expression
237 EFI_HII_VALUE Result; // Expression evaluation result
242 LIST_ENTRY OpCodeListHead; // OpCodes consist of this expression (EXPRESSION_OPCODE)
252 FORM_EXPRESSION *Expression[1]; // Array[Count] of expressions
370 LIST_ENTRY InconsistentListHead;// nested inconsistent expression list (FORM_EXPRESSION)
371 LIST_ENTRY NoSubmitListHead; // nested nosubmit expression list (FORM_EXPRESSION)
372 LIST_ENTRY WarningListHead; // nested warning expression list (FORM_EXPRESSION)
373 FORM_EXPRESSION_LIST *Expression; // nesting inside of GrayOutIf/DisableIf/SuppressIf
375 FORM_EXPRESSION *ReadExpression; // nested EFI_IFR_READ, provide this question value by read expression.
    [all...]
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/expr/
Expression.java 40 public abstract class Expression extends Node {
43 public Expression() {
51 public Expression(TokenRange tokenRange) {
66 public Expression clone() {
67 return (Expression) accept(new CloneVisitor(), null);
  /external/llvm/include/llvm/ProfileData/Coverage/
CoverageMapping.h 85 enum CounterKind { Zero, CounterValueReference, Expression };
104 bool isExpression() const { return Kind == Expression; }
131 /// addition counter expression.
133 return Counter(Expression, ExpressionId);
137 /// \brief A Counter expression is a value that represents an arithmetic
148 /// \brief A Counter expression builder is used to construct the
154 /// \brief A lookup table for the index of a given expression.
157 /// \brief Return the counter which corresponds to the given expression.
159 /// If the given expression is already stored in the builder, a counter
160 /// that references that expression is returned. Otherwise, the give
    [all...]
  /external/llvm/lib/CodeGen/
LiveDebugVariables.cpp 113 const MDNode *Expression; ///< Any complex address expression.
145 : Variable(var), Expression(expr), offset(o), IsIndirect(i),
162 return Var == Variable && Expr == Expression && dl->getInlinedAt() == IA &&
    [all...]
  /external/python/cpython2/Lib/compiler/
pycodegen.py 61 gen = Expression(source, filename)
89 class Expression(AbstractCompileMode):
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/
LiveDebugVariables.cpp 153 const DIExpression *Expression; ///< Any complex address expression.
185 : Variable(var), Expression(expr), dl(std::move(L)), leader(this),
203 // other things in the expression like stack values.
204 return Var == Variable && Expr == Expression && dl->getInlinedAt() == IA;
    [all...]
  /external/turbine/java/com/google/turbine/tree/
Tree.java 132 /** An expression. */
133 public abstract static class Expression extends Tree {
134 public Expression(int position) {
300 /** A JLS 3.10 literal expression. */
301 public static class Literal extends Expression {
330 /** A JLS 15.16 cast expression. */
331 public static class TypeCast extends Expression {
333 private final Expression expr;
335 public TypeCast(int position, Type ty, Expression expr) {
355 public Expression expr()
    [all...]
  /external/v8/src/torque/
ast.h 129 struct Expression : AstNode {
130 Expression(Kind kind, SourcePosition pos) : AstNode(kind, pos) {}
131 DEFINE_AST_NODE_INNER_BOILERPLATE(Expression)
134 struct LocationExpression : Expression {
135 LocationExpression(Kind kind, SourcePosition pos) : Expression(kind, pos) {}
221 struct CallExpression : Expression {
225 std::vector<Expression*> arguments,
227 : Expression(kKind, pos),
234 std::vector<Expression*> arguments;
238 struct StructExpression : Expression {
350 Expression* expression; member in struct:v8::internal::torque::AssumeTypeImpossibleExpression
394 Expression* expression; member in struct:v8::internal::torque::ExpressionStatement
447 Expression* expression; member in struct:v8::internal::torque::AssertStatement
708 Expression* expression; member in struct:v8::internal::torque::ConstDeclaration
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
Python-ast.h 53 } Expression;
379 #define Expression(a0, a1) _Py_Expression(a0, a1)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
Python-ast.h 53 } Expression;
379 #define Expression(a0, a1) _Py_Expression(a0, a1)
  /external/clang/include/clang/ASTMatchers/
ASTMatchers.h 781 /// \brief Matches a sugar TemplateArgument that refers to a certain expression.
794 if (Node.getKind() == TemplateArgument::Expression)
1066 /// of the sub-expression's evaluation.
1089 /// (if expression have it).
    [all...]
  /external/clang/lib/AST/
ASTDiagnostic.cpp 419 OS << "lambda expression";
464 /// Policy - Used during expression printing.
505 /// Expression difference, this is only when both arguments are
506 /// expressions. If one argument is an expression and the other is
508 Expression,
604 FlatTree[CurrentNode].Kind = Expression;
764 assert(FlatTree[ReadNode].Kind == Expression && "Unexpected kind");
    [all...]
  /external/deqp/framework/randomshaders/
rsgExpression.cpp 273 template <class T> Expression* create (GeneratorState& state, ConstValueRangeAccess valueRange) { return new T(state, valueRange); }
278 Expression* (*create) (GeneratorState& state, ConstValueRangeAccess valueRange);
345 Expression::~Expression (void)
349 Expression* Expression::createRandom (GeneratorState& state, ConstValueRangeAccess valueRange)
354 Expression* Expression::createRandomLValue (GeneratorState& state, ConstValueRangeAccess valueRange)
758 for (vector<Expression*>::iterator i = m_inputExpressions.begin(); i != m_inputExpressions.end(); i++)
762 Expression* ConstructorOp::createNextChild (GeneratorState& state
    [all...]
  /external/llvm/lib/Target/PowerPC/AsmParser/
PPCAsmParser.cpp 178 // Evaluate an expression containing condition register
236 llvm_unreachable("Invalid expression kind!");
323 Expression,
370 case Expression:
410 assert(Kind == Expression && "Invalid access!");
415 assert(Kind == Expression && "Invalid access!");
451 return Kind == Immediate || Kind == Expression;
476 case Expression:
487 case Expression:
496 bool isS16ImmX4() const { return Kind == Expression ||
    [all...]
  /external/llvm/lib/Transforms/Scalar/
GVN.cpp 77 struct llvm::GVN::Expression {
82 Expression(uint32_t o = ~2U) : opcode(o) {}
84 bool operator==(const Expression &other) const {
96 friend hash_code hash_value(const Expression &Value) {
104 template <> struct DenseMapInfo<GVN::Expression> {
105 static inline GVN::Expression getEmptyKey() { return ~0U; }
107 static inline GVN::Expression getTombstoneKey() { return ~1U; }
109 static unsigned getHashValue(const GVN::Expression &e) {
113 static bool isEqual(const GVN::Expression &LHS, const GVN::Expression &RHS)
    [all...]
  /external/python/cpython2/Include/
Python-ast.h 53 } Expression;
379 #define Expression(a0, a1) _Py_Expression(a0, a1)
  /external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
GVN.cpp 65 /// as an efficient mechanism to determine the expression-wise equivalence of
68 struct Expression {
73 Expression(uint32_t o = ~2U) : opcode(o) { }
75 bool operator==(const Expression &other) const {
90 DenseMap<Expression, uint32_t> expressionNumbering;
97 Expression create_expression(Instruction* I);
98 Expression create_extractvalue_expression(ExtractValueInst* EI);
117 template <> struct DenseMapInfo<Expression> {
118 static inline Expression getEmptyKey() {
122 static inline Expression getTombstoneKey()
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ProfileData/Coverage/
CoverageMapping.h 92 enum CounterKind { Zero, CounterValueReference, Expression };
111 bool isExpression() const { return Kind == Expression; }
138 /// expression.
140 return Counter(Expression, ExpressionId);
144 /// A Counter expression is a value that represents an arithmetic operation
155 /// A Counter expression builder is used to construct the counter expressions.
161 /// A lookup table for the index of a given expression.
164 /// Return the counter which corresponds to the given expression.
166 /// If the given expression is already stored in the builder, a counter
167 /// that references that expression is returned. Otherwise, the give
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/
LLVMContextImpl.h     [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/PowerPC/AsmParser/
PPCAsmParser.cpp 198 // Evaluate an expression containing condition register
256 llvm_unreachable("Invalid expression kind!");
340 Expression,
387 case Expression:
431 assert(Kind == Expression && "Invalid access!");
436 assert(Kind == Expression && "Invalid access!");
472 return Kind == Immediate || Kind == Expression;
497 case Expression:
508 case Expression:
517 bool isS16ImmX4() const { return Kind == Expression ||
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/
GVN.cpp 106 struct llvm::GVN::Expression {
112 Expression(uint32_t o = ~2U) : opcode(o) {}
114 bool operator==(const Expression &other) const {
126 friend hash_code hash_value(const Expression &Value) {
135 template <> struct DenseMapInfo<GVN::Expression> {
136 static inline GVN::Expression getEmptyKey() { return ~0U; }
137 static inline GVN::Expression getTombstoneKey() { return ~1U; }
139 static unsigned getHashValue(const GVN::Expression &e) {
145 static bool isEqual(const GVN::Expression &LHS, const GVN::Expression &RHS)
    [all...]

Completed in 1860 milliseconds

12 3 4