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

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/clang/host/linux-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/linux-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...]
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
FuncDocument.java 37 import org.apache.xpath.Expression;
82 Expression arg1Expr = this.getArg1();
132 // the node in the stylesheet that contains the expression that
455 * Tell if the expression is a nodeset expression.
456 * @return true if the expression can be represented as a nodeset.
TemplateList.java 32 import org.apache.xpath.Expression;
101 Expression matchExpr = matchXPath.getExpression();
396 Expression ex = matchPat.getStepPattern();
476 * assumes the current node and current expression node have already been
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/m68hc11/
malis.s 47 ;; Section 8.2.7.1 Primary Expression
51 ;; Section 8.2.7.2 Absolute Expression
  /frameworks/compile/mclinker/lib/Script/
ScriptScanner.ll 53 %s EXPRESSION
67 case ScriptFile::Expression:
101 <LDSCRIPT,EXPRESSION>"HIDDEN" { return token::HIDDEN; }
102 <LDSCRIPT,EXPRESSION>"PROVIDE" { return token::PROVIDE; }
103 <LDSCRIPT,EXPRESSION>"PROVIDE_HIDDEN" { return token::PROVIDE_HIDDEN; }
111 <EXPRESSION>"ABSOLUTE" { return token::ABSOLUTE; }
112 <EXPRESSION>"ADDR" { return token::ADDR; }
113 <LDSCRIPT,EXPRESSION>"ALIGN" { return token::ALIGN; }
114 <EXPRESSION>"ALIGNOF" { return token::ALIGNOF; }
115 <EXPRESSION>"BLOCK" { return token::BLOCK;
    [all...]
  /system/tools/aidl/
type_java.cpp 35 Expression* NULL_VALUE;
36 Expression* THIS_VALUE;
37 Expression* SUPER_VALUE;
38 Expression* TRUE_VALUE;
39 Expression* FALSE_VALUE;
85 Expression* Type::BuildWriteToParcelFlags(int flags) const {
328 ifpart->expression = new Comparison(v, "!=", NULL_VALUE);
350 ifpart->expression = new Comparison(new LiteralExpression("0"), "!=",
603 ifpart->expression = new Comparison(v, "!=", NULL_VALUE);
624 ifpart->expression = new Comparison(new LiteralExpression("0"), "!="
    [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...]
  /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...]
  /external/v8/src/asmjs/
asm-wasm-builder.cc 222 if (e != nullptr && e->expression()->IsUndefinedLiteral()) {
235 if (expr->expression()->IsAssignment()) {
269 VisitForEffect(stmt->expression());
272 void VisitForEffect(Expression* expr) {
351 RECURSE(Visit(stmt->expression()));
354 RECURSE(Visit(stmt->expression()));
888 void EmitAssignmentLhs(Expression* target, AsmType** atype) {
908 void EmitAssignmentRhs(Expression* target, Expression* value, bool* is_nop) {
    [all...]
  /toolchain/binutils/binutils-2.25/gold/
script.cc 209 // Reading an expression in a linker script.
210 EXPRESSION,
395 // don't know that we are looking at an expression, "~0" is a file
396 // name, and "~ 0" is an expression using bitwise not. We are
438 // that we are parsing an expression.
892 // necessarily evaluate the expression until all ordinary symbols have
1000 // Set the symbol value if the expression yields an absolute value or
1111 bool is_defsym, Expression* value,
1164 Script_options::add_assertion(Expression* check, const char* message,
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Object/POM/
CommonObject.py 741 self.Expression = ''
767 def SetExpression(self, Expression):
768 self.Expression = Expression
771 return self.Expression
  /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...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/syntax/
parser.go 25 xnest int // expression nesting level (for complit ambiguity resolution)
455 // Expression = UnaryExpr | Expression binary_op Expression .
585 p.error(fmt.Sprintf("expression in %s must not be parenthesized", s.Tok))
588 p.error(fmt.Sprintf("expression in %s must be function call", s.Tok))
595 // Operand = Literal | OperandName | MethodExpr | "(" Expression ")" .
636 // Parentheses are also not permitted around the expression
671 p.syntax_error("expecting expression")
692 // Index = "[" Expression "]"
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/syntax/
parser.go 25 xnest int // expression nesting level (for complit ambiguity resolution)
455 // Expression = UnaryExpr | Expression binary_op Expression .
585 p.error(fmt.Sprintf("expression in %s must not be parenthesized", s.Tok))
588 p.error(fmt.Sprintf("expression in %s must be function call", s.Tok))
595 // Operand = Literal | OperandName | MethodExpr | "(" Expression ")" .
636 // Parentheses are also not permitted around the expression
671 p.syntax_error("expecting expression")
692 // Index = "[" Expression "]"
    [all...]
  /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/ProfileData/Coverage/
CoverageMapping.cpp 51 case Counter::Expression:
132 case Counter::Expression: {
162 case Counter::Expression: {
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/ProfileData/Coverage/
CoverageMapping.h 91 enum CounterKind { Zero, CounterValueReference, Expression };
110 bool isExpression() const { return Kind == Expression; }
137 /// addition counter expression.
139 return Counter(Expression, ExpressionId);
143 /// \brief A Counter expression is a value that represents an arithmetic
154 /// \brief A Counter expression builder is used to construct the
161 /// \brief A lookup table for the index of a given expression.
164 /// \brief 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...]
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/ProfileData/Coverage/
CoverageMapping.h 91 enum CounterKind { Zero, CounterValueReference, Expression };
110 bool isExpression() const { return Kind == Expression; }
137 /// addition counter expression.
139 return Counter(Expression, ExpressionId);
143 /// \brief A Counter expression is a value that represents an arithmetic
154 /// \brief A Counter expression builder is used to construct the
161 /// \brief A lookup table for the index of a given expression.
164 /// \brief 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...]
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/ProfileData/Coverage/
CoverageMapping.h 91 enum CounterKind { Zero, CounterValueReference, Expression };
110 bool isExpression() const { return Kind == Expression; }
137 /// addition counter expression.
139 return Counter(Expression, ExpressionId);
143 /// \brief A Counter expression is a value that represents an arithmetic
154 /// \brief A Counter expression builder is used to construct the
161 /// \brief A lookup table for the index of a given expression.
164 /// \brief 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...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ProfileData/Coverage/
CoverageMapping.h 91 enum CounterKind { Zero, CounterValueReference, Expression };
110 bool isExpression() const { return Kind == Expression; }
137 /// addition counter expression.
139 return Counter(Expression, ExpressionId);
143 /// \brief A Counter expression is a value that represents an arithmetic
154 /// \brief A Counter expression builder is used to construct the
161 /// \brief A lookup table for the index of a given expression.
164 /// \brief 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...]
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/ProfileData/Coverage/
CoverageMapping.h 91 enum CounterKind { Zero, CounterValueReference, Expression };
110 bool isExpression() const { return Kind == Expression; }
137 /// addition counter expression.
139 return Counter(Expression, ExpressionId);
143 /// \brief A Counter expression is a value that represents an arithmetic
154 /// \brief A Counter expression builder is used to construct the
161 /// \brief A lookup table for the index of a given expression.
164 /// \brief 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...]
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/ProfileData/Coverage/
CoverageMapping.h 91 enum CounterKind { Zero, CounterValueReference, Expression };
110 bool isExpression() const { return Kind == Expression; }
137 /// addition counter expression.
139 return Counter(Expression, ExpressionId);
143 /// \brief A Counter expression is a value that represents an arithmetic
154 /// \brief A Counter expression builder is used to construct the
161 /// \brief A lookup table for the index of a given expression.
164 /// \brief 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...]
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/ProfileData/Coverage/
CoverageMapping.h 91 enum CounterKind { Zero, CounterValueReference, Expression };
110 bool isExpression() const { return Kind == Expression; }
137 /// addition counter expression.
139 return Counter(Expression, ExpressionId);
143 /// \brief A Counter expression is a value that represents an arithmetic
154 /// \brief A Counter expression builder is used to construct the
161 /// \brief A lookup table for the index of a given expression.
164 /// \brief 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...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ProfileData/Coverage/
CoverageMapping.h 91 enum CounterKind { Zero, CounterValueReference, Expression };
110 bool isExpression() const { return Kind == Expression; }
137 /// addition counter expression.
139 return Counter(Expression, ExpressionId);
143 /// \brief A Counter expression is a value that represents an arithmetic
154 /// \brief A Counter expression builder is used to construct the
161 /// \brief A lookup table for the index of a given expression.
164 /// \brief 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...]

Completed in 702 milliseconds

1 2 3 4 5 6 7 8 91011>>