HomeSort by relevance Sort by last modified time
    Searched refs:Expression (Results 201 - 225 of 504) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/v8/src/full-codegen/ppc/
full-codegen-ppc.cc 613 void FullCodeGenerator::DoTest(Expression* condition, Label* if_true,
685 void FullCodeGenerator::PrepareForBailoutBeforeSplit(Expression* expr,
856 // Compile the label expression.
1167 Expression* expression = (property == NULL) ? NULL : property->value(); local
    [all...]
  /external/v8/src/full-codegen/s390/
full-codegen-s390.cc 595 void FullCodeGenerator::DoTest(Expression* condition, Label* if_true,
661 void FullCodeGenerator::PrepareForBailoutBeforeSplit(Expression* expr,
825 // Compile the label expression.
1133 Expression* expression = (property == NULL) ? NULL : property->value(); local
    [all...]
  /external/v8/src/full-codegen/x64/
full-codegen-x64.cc 605 void FullCodeGenerator::DoTest(Expression* condition,
684 void FullCodeGenerator::PrepareForBailoutBeforeSplit(Expression* expr,
856 // Compile the label expression.
1156 Expression* expression = (property == NULL) ? NULL : property->value(); local
    [all...]
  /external/v8/src/full-codegen/x87/
full-codegen-x87.cc 584 void FullCodeGenerator::DoTest(Expression* condition,
663 void FullCodeGenerator::PrepareForBailoutBeforeSplit(Expression* expr,
829 // Compile the label expression.
1114 Expression* expression = (property == NULL) ? NULL : property->value(); local
    [all...]
  /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...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Xml/
PcdXml.py 49 self.Expression = ''
58 self.Expression = XmlElement(Item, '%s/Expression' % Key)
70 Error.SetExpression(self.Expression)
77 if self.Expression:
95 NodeList.append(['Expression', PcdError.GetExpression()])
107 if self.Expression:
163 if self.Expression:
249 = %s Expression = %s ErrorNumber = %s %s" % \
251 self.Expression, self.ErrorNumber, self.ErrorMessage)
    [all...]
  /external/v8/src/crankshaft/
hydrogen.h 636 // environment is the outer environment but the top expression stack
715 // True if index is included in the expression stack part of the environment.
756 bool IsEffect() const { return kind_ == Expression::kEffect; }
757 bool IsValue() const { return kind_ == Expression::kValue; }
758 bool IsTest() const { return kind_ == Expression::kTest; }
788 AstContext(HOptimizedGraphBuilder* owner, Expression::Context kind);
803 Expression::Context kind_;
812 : AstContext(owner, Expression::kEffect) {
827 : AstContext(owner, Expression::kValue), flag_(flag) {
847 Expression* condition
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/SetupBrowserDxe/
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...]
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseLib/
SafeString.c 24 #define SAFE_STRING_CONSTRAINT_CHECK(Expression, Status) \
26 ASSERT (Expression); \
27 if (!(Expression)) { \
    [all...]
  /external/skia/src/sksl/
SkSLContext.h 275 // dummy expression used to mark that a variable has a value during dataflow analysis (when it
277 // specific expression)
278 const std::unique_ptr<Expression> fDefined_Expression;
281 class Defined : public Expression {
294 typedef Expression INHERITED;
SkSLSPIRVCodeGenerator.h 116 std::vector<SpvId> getAccessChain(const Expression& expr, OutputStream& out);
140 std::unique_ptr<LValue> getLValue(const Expression& value, OutputStream& out);
142 SpvId writeExpression(const Expression& expr, OutputStream& out);
159 * Writes a matrix with the diagonal entries all equal to the provided expression, and all other
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Ecc/MetaFileWorkspace/
MetaFileParser.py 31 from Common.Expression import *
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/
RangeExpression.py 2 # This file is used to parse and evaluate range expression in Pcd declaration.
20 ERR_STRING_EXPR = 'This operator cannot be used in string expression: [%s].'
21 ERR_SNYTAX = 'Syntax error, the rest of expression cannot be evaluated: [%s].'
28 ERR_EXPR_TYPE = 'Different types found in expression.'
31 WRN_BOOL_EXPR = 'Operand of boolean type cannot be used in arithmetic expression.'
38 ERR_EMPTY_EXPR = 'Empty expression is not allowed.'
369 def __init__(self, Expression, PcdDataType, SymbolTable = {}):
371 if type(Expression) != type(''):
372 self._Expr = Expression
376 self._Expr = Expression.strip()
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/
XPathException.java 40 /** The home of the expression that caused the error.
91 * Get the XSLT ElemVariable that this sub-expression references. In order for
109 * Get the first non-Expression parent of this node.
110 * @return null or first ancestor that is not an Expression.
115 while((null != parent) && (parent instanceof Expression))
  /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/v8/src/interpreter/
bytecode-generator.cc 408 // Scoped base class for determining how the result of an expression will be
412 ExpressionResultScope(BytecodeGenerator* generator, Expression::Context kind)
424 bool IsEffect() const { return kind_ == Expression::kEffect; }
425 bool IsValue() const { return kind_ == Expression::kValue; }
426 bool IsTest() const { return kind_ == Expression::kTest; }
435 Expression::Context kind_;
442 // Scoped class used when the result of the current expression is not
448 : ExpressionResultScope(generator, Expression::kEffect) {}
451 // Scoped class used when the result of the current expression to be
456 : ExpressionResultScope(generator, Expression::kValue) {
    [all...]
  /frameworks/compile/mclinker/include/mcld/Script/
ScriptFile.h 42 Expression, // --defsym
  /system/tools/hidl/c2hal/
Type.cpp 43 void Type::setArrays(std::vector<Expression*> *arrays) {
  /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...]
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/clang/include/clang/ASTMatchers/
ASTMatchers.h 847 /// \brief Matches a sugar TemplateArgument that refers to a certain expression.
860 if (Node.getKind() == TemplateArgument::Expression)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/clang/include/clang/ASTMatchers/
ASTMatchers.h 847 /// \brief Matches a sugar TemplateArgument that refers to a certain expression.
860 if (Node.getKind() == TemplateArgument::Expression)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/clang/include/clang/ASTMatchers/
ASTMatchers.h 847 /// \brief Matches a sugar TemplateArgument that refers to a certain expression.
860 if (Node.getKind() == TemplateArgument::Expression)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/ASTMatchers/
ASTMatchers.h 847 /// \brief Matches a sugar TemplateArgument that refers to a certain expression.
860 if (Node.getKind() == TemplateArgument::Expression)
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/clang/include/clang/ASTMatchers/
ASTMatchers.h 847 /// \brief Matches a sugar TemplateArgument that refers to a certain expression.
860 if (Node.getKind() == TemplateArgument::Expression)
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/clang/include/clang/ASTMatchers/
ASTMatchers.h 847 /// \brief Matches a sugar TemplateArgument that refers to a certain expression.
860 if (Node.getKind() == TemplateArgument::Expression)
    [all...]

Completed in 1453 milliseconds

1 2 3 4 5 6 7 891011>>