HomeSort by relevance Sort by last modified time
    Searched refs:CompoundAssignOperator (Results 1 - 20 of 20) sorted by null

  /external/clang/include/clang/AST/
StmtVisitor.h 69 case BO_MulAssign: DISPATCH(BinMulAssign, CompoundAssignOperator);
70 case BO_DivAssign: DISPATCH(BinDivAssign, CompoundAssignOperator);
71 case BO_RemAssign: DISPATCH(BinRemAssign, CompoundAssignOperator);
72 case BO_AddAssign: DISPATCH(BinAddAssign, CompoundAssignOperator);
73 case BO_SubAssign: DISPATCH(BinSubAssign, CompoundAssignOperator);
74 case BO_ShlAssign: DISPATCH(BinShlAssign, CompoundAssignOperator);
75 case BO_ShrAssign: DISPATCH(BinShrAssign, CompoundAssignOperator);
76 case BO_AndAssign: DISPATCH(BinAndAssign, CompoundAssignOperator);
77 case BO_OrAssign: DISPATCH(BinOrAssign, CompoundAssignOperator);
78 case BO_XorAssign: DISPATCH(BinXorAssign, CompoundAssignOperator);
    [all...]
RecursiveASTVisitor.h 321 // CompoundAssignOperator) but do have visitors.
323 GENERAL_BINOP_FALLBACK(NAME##Assign, CompoundAssignOperator)
504 DISPATCH_WALK(Bin##NAME##Assign, CompoundAssignOperator, S);
558 DISPATCH(Bin##NAME##Assign, CompoundAssignOperator, S);
    [all...]
Expr.h     [all...]
  /external/clang/lib/CodeGen/
CGExprComplex.cpp 219 LValue EmitCompoundAssignLValue(const CompoundAssignOperator *E,
223 ComplexPairTy EmitCompoundAssign(const CompoundAssignOperator *E,
246 ComplexPairTy VisitBinAddAssign(const CompoundAssignOperator *E) {
249 ComplexPairTy VisitBinSubAssign(const CompoundAssignOperator *E) {
252 ComplexPairTy VisitBinMulAssign(const CompoundAssignOperator *E) {
255 ComplexPairTy VisitBinDivAssign(const CompoundAssignOperator *E) {
632 EmitCompoundAssignLValue(const CompoundAssignOperator *E,
683 EmitCompoundAssign(const CompoundAssignOperator *E,
880 EmitComplexCompoundAssignmentLValue(const CompoundAssignOperator *E) {
    [all...]
CGExprScalar.cpp 454 LValue EmitCompoundAssignLValue(const CompoundAssignOperator *E,
458 Value *EmitCompoundAssign(const CompoundAssignOperator *E,
466 Value *VisitBin ## OP ## Assign(const CompoundAssignOperator *E) { \
    [all...]
CodeGenFunction.h     [all...]
CGExpr.cpp 782 return EmitCompoundAssignmentLValue(cast<CompoundAssignOperator>(E));
783 return EmitComplexCompoundAssignmentLValue(cast<CompoundAssignOperator>(E));
    [all...]
  /external/clang/lib/Analysis/
ReachableCode.cpp 200 const CompoundAssignOperator *CAO = cast<CompoundAssignOperator>(S);
  /external/clang/lib/Sema/
SemaPseudoObject.cpp 428 new (S.Context) CompoundAssignOperator(syntacticLHS, capturedRHS, opcode,
    [all...]
SemaOverload.cpp     [all...]
TreeTransform.h     [all...]
SemaExpr.cpp     [all...]
  /external/clang/lib/AST/
ASTDumper.cpp 267 void VisitCompoundAssignOperator(const CompoundAssignOperator *Node);
    [all...]
StmtProfile.cpp 428 StmtProfiler::VisitCompoundAssignOperator(const CompoundAssignOperator *S) {
    [all...]
ASTImporter.cpp 180 Expr *VisitCompoundAssignOperator(CompoundAssignOperator *E);
    [all...]
ExprConstant.cpp     [all...]
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngineC.cpp 129 cast<CompoundAssignOperator>(B)->getComputationResultType();
133 cast<CompoundAssignOperator>(B)->getComputationLHSType();
    [all...]
  /external/clang/tools/libclang/
RecursiveASTVisitor.h 308 // CompoundAssignOperator) but do have visitors.
310 GENERAL_BINOP_FALLBACK(NAME##Assign, CompoundAssignOperator)
484 DISPATCH_STMT(Bin##NAME##Assign, CompoundAssignOperator, S);
    [all...]
  /external/clang/lib/Serialization/
ASTReaderStmt.cpp 657 void ASTStmtReader::VisitCompoundAssignOperator(CompoundAssignOperator *E) {
    [all...]
ASTWriterStmt.cpp 610 void ASTStmtWriter::VisitCompoundAssignOperator(CompoundAssignOperator *E) {
    [all...]

Completed in 877 milliseconds