Searched defs:BinaryOperator (Results 1 - 9 of 9) sorted by last modified time

/external/llvm/include/llvm/IR/
H A DInstrTypes.h135 // BinaryOperator Class
138 class BinaryOperator : public Instruction { class in namespace:llvm
142 BinaryOperator(BinaryOps iType, Value *S1, Value *S2, Type *Ty,
144 BinaryOperator(BinaryOps iType, Value *S1, Value *S2, Type *Ty,
146 BinaryOperator *clone_impl() const override;
161 static BinaryOperator *Create(BinaryOps Op, Value *S1, Value *S2,
169 static BinaryOperator *Create(BinaryOps Op, Value *S1, Value *S2,
176 static BinaryOperator *Create##OPC(Value *V1, Value *V2, \
182 static BinaryOperator *Create##OPC(Value *V1, Value *V2, \
188 static BinaryOperator *Creat
[all...]
/external/llvm/lib/IR/
H A DInstructions.cpp405 AllocSize = BinaryOperator::CreateMul(ArraySize, AllocSize,
408 AllocSize = BinaryOperator::CreateMul(ArraySize, AllocSize,
1741 // BinaryOperator Class
1744 BinaryOperator::BinaryOperator(BinaryOps iType, Value *S1, Value *S2, function in class:BinaryOperator
1748 OperandTraits<BinaryOperator>::op_begin(this),
1749 OperandTraits<BinaryOperator>::operands(this),
1757 BinaryOperator::BinaryOperator(BinaryOps iType, Value *S1, Value *S2, function in class:BinaryOperator
1761 OperandTraits<BinaryOperator>
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.apache.commons.el_1.0.0.v201004212143.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.jdt.debug_3.6.1.v20100715_r361/
H A Djdimodel.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/cmockery/cmockery_0_1_2/src/example/
H A Dcalculator.c80 typedef int (*BinaryOperator)(int a, int b); typedef
85 BinaryOperator function;
123 static BinaryOperator find_operator_function_by_string(
194 const BinaryOperator function = find_operator_function_by_string(
H A Dcalculator_test.c34 typedef int (*BinaryOperator)(int a, int b); typedef
38 BinaryOperator function;
45 extern BinaryOperator find_operator_function_by_string(
163 {"+", (BinaryOperator)0x12345678},
164 {"-", (BinaryOperator)0xDEADBEEF},
165 {"/", (BinaryOperator)0xABADCAFE},
/external/clang/include/clang/AST/
H A DExpr.h2904 /// a C++ template, whether BinaryOperator or CXXOperatorCallExpr is
2907 /// operator resolves to a built-in operation, BinaryOperator will be
2912 class BinaryOperator : public Expr { class in class:clang::StringLiteral::OffsetOfExpr
2930 BinaryOperator(Expr *lhs, Expr *rhs, Opcode opc, QualType ResTy, function in class:clang::StringLiteral::OffsetOfExpr::BinaryOperator
2948 explicit BinaryOperator(EmptyShell Empty) function in class:clang::StringLiteral::OffsetOfExpr::BinaryOperator
3079 BinaryOperator(Expr *lhs, Expr *rhs, Opcode opc, QualType ResTy, function in class:clang::StringLiteral::OffsetOfExpr::BinaryOperator
3094 BinaryOperator(StmtClass SC, EmptyShell Empty) function in class:clang::StringLiteral::OffsetOfExpr::BinaryOperator
3104 class CompoundAssignOperator : public BinaryOperator {
3112 : BinaryOperator(lhs, rhs, opc, ResType, VK, OK, OpLoc, fpContractable,
3122 : BinaryOperator(CompoundAssignOperatorClas
[all...]
/external/clang/include/clang/ASTMatchers/
H A DASTMatchers.h1215 BinaryOperator> binaryOperator;
2565 BinaryOperator, UnaryOperator),
2576 AST_MATCHER_P(BinaryOperator, hasLHS,
2589 AST_MATCHER_P(BinaryOperator, hasRHS,
2598 inline internal::Matcher<BinaryOperator> hasEitherOperand(
2564 AST_POLYMORPHIC_MATCHER_P(hasOperatorName, AST_POLYMORPHIC_SUPPORTED_TYPES_2( BinaryOperator, UnaryOperator), std::string, Name) argument
/external/chromium_org/tools/gn/
H A Dparser.cc53 {NULL, &Parser::BinaryOperator, PRECEDENCE_SUM}, // PLUS
54 {NULL, &Parser::BinaryOperator, PRECEDENCE_SUM}, // MINUS
57 {NULL, &Parser::BinaryOperator, PRECEDENCE_EQUALITY}, // EQUAL_EQUAL
58 {NULL, &Parser::BinaryOperator, PRECEDENCE_EQUALITY}, // NOT_EQUAL
59 {NULL, &Parser::BinaryOperator, PRECEDENCE_RELATION}, // LESS_EQUAL
60 {NULL, &Parser::BinaryOperator, PRECEDENCE_RELATION}, // GREATER_EQUAL
61 {NULL, &Parser::BinaryOperator, PRECEDENCE_RELATION}, // LESS_THAN
62 {NULL, &Parser::BinaryOperator, PRECEDENCE_RELATION}, // GREATER_THAN
63 {NULL, &Parser::BinaryOperator, PRECEDENCE_AND}, // BOOLEAN_AND
64 {NULL, &Parser::BinaryOperator, PRECEDENCE_O
267 scoped_ptr<ParseNode> Parser::BinaryOperator(scoped_ptr<ParseNode> left, function in class:Parser
[all...]

Completed in 811 milliseconds