HomeSort by relevance Sort by last modified time
    Searched full:compoundassignoperator (Results 1 - 25 of 25) sorted by null

  /external/clang/include/clang/AST/
StmtVisitor.h 68 case BO_MulAssign: DISPATCH(BinMulAssign, CompoundAssignOperator);
69 case BO_DivAssign: DISPATCH(BinDivAssign, CompoundAssignOperator);
70 case BO_RemAssign: DISPATCH(BinRemAssign, CompoundAssignOperator);
71 case BO_AddAssign: DISPATCH(BinAddAssign, CompoundAssignOperator);
72 case BO_SubAssign: DISPATCH(BinSubAssign, CompoundAssignOperator);
73 case BO_ShlAssign: DISPATCH(BinShlAssign, CompoundAssignOperator);
74 case BO_ShrAssign: DISPATCH(BinShrAssign, CompoundAssignOperator);
75 case BO_AndAssign: DISPATCH(BinAndAssign, CompoundAssignOperator);
76 case BO_OrAssign: DISPATCH(BinOrAssign, CompoundAssignOperator);
77 case BO_XorAssign: DISPATCH(BinXorAssign, CompoundAssignOperator);
    [all...]
RecursiveASTVisitor.h 306 // CompoundAssignOperator) but do have visitors.
308 GENERAL_BINOP_FALLBACK(NAME##Assign, CompoundAssignOperator)
473 DISPATCH_WALK(Bin##NAME##Assign, CompoundAssignOperator, S);
527 DISPATCH(Bin##NAME##Assign, CompoundAssignOperator, S);
    [all...]
Expr.h     [all...]
  /external/clang/test/PCH/
exprs.c 59 // CompoundAssignOperator
exprs.h 63 // CompoundAssignOperator
  /external/clang/lib/CodeGen/
CGExprComplex.cpp 216 LValue EmitCompoundAssignLValue(const CompoundAssignOperator *E,
220 ComplexPairTy EmitCompoundAssign(const CompoundAssignOperator *E,
243 ComplexPairTy VisitBinAddAssign(const CompoundAssignOperator *E) {
246 ComplexPairTy VisitBinSubAssign(const CompoundAssignOperator *E) {
249 ComplexPairTy VisitBinMulAssign(const CompoundAssignOperator *E) {
252 ComplexPairTy VisitBinDivAssign(const CompoundAssignOperator *E) {
595 EmitCompoundAssignLValue(const CompoundAssignOperator *E,
637 EmitCompoundAssign(const CompoundAssignOperator *E,
825 EmitComplexCompoundAssignmentLValue(const CompoundAssignOperator *E) {
CGExprScalar.cpp 442 LValue EmitCompoundAssignLValue(const CompoundAssignOperator *E,
446 Value *EmitCompoundAssign(const CompoundAssignOperator *E,
454 Value *VisitBin ## OP ## Assign(const CompoundAssignOperator *E) { \
    [all...]
CodeGenFunction.h     [all...]
CGExpr.cpp 655 return EmitCompoundAssignmentLValue(cast<CompoundAssignOperator>(E));
656 return EmitComplexCompoundAssignmentLValue(cast<CompoundAssignOperator>(E));
    [all...]
  /external/clang/lib/Analysis/
ReachableCode.cpp 200 const CompoundAssignOperator *CAO = cast<CompoundAssignOperator>(S);
  /external/clang/include/clang/Basic/
StmtNodes.td 66 def CompoundAssignOperator : DStmt<BinaryOperator>;
  /frameworks/compile/slang/
slang_rs_object_ref_count.h 143 // We believe that RS objects are never involved in CompoundAssignOperator.
  /external/clang/lib/Sema/
SemaPseudoObject.cpp 368 new (S.Context) CompoundAssignOperator(syntacticLHS, capturedRHS, opcode,
    [all...]
TreeTransform.h     [all...]
SemaExpr.cpp     [all...]
SemaOverload.cpp     [all...]