HomeSort by relevance Sort by last modified time
    Searched refs:CompoundAssignOperator (Results 1 - 19 of 19) 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/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/lib/AST/
StmtDumper.cpp 149 void VisitCompoundAssignOperator(CompoundAssignOperator *Node);
498 void StmtDumper::VisitCompoundAssignOperator(CompoundAssignOperator *Node) {
StmtProfile.cpp 385 StmtProfiler::VisitCompoundAssignOperator(const CompoundAssignOperator *S) {
ASTImporter.cpp 172 Expr *VisitCompoundAssignOperator(CompoundAssignOperator *E);
    [all...]
StmtPrinter.cpp 995 void StmtPrinter::VisitCompoundAssignOperator(CompoundAssignOperator *Node) {
    [all...]
  /external/clang/lib/Sema/
SemaPseudoObject.cpp 368 new (S.Context) CompoundAssignOperator(syntacticLHS, capturedRHS, opcode,
    [all...]
SemaExpr.cpp     [all...]
SemaOverload.cpp     [all...]
TreeTransform.h     [all...]
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngineC.cpp 106 cast<CompoundAssignOperator>(B)->getComputationResultType();
110 cast<CompoundAssignOperator>(B)->getComputationLHSType();
  /external/clang/lib/Serialization/
ASTReaderStmt.cpp 561 void ASTStmtReader::VisitCompoundAssignOperator(CompoundAssignOperator *E) {
    [all...]
ASTWriterStmt.cpp 534 void ASTStmtWriter::VisitCompoundAssignOperator(CompoundAssignOperator *E) {
    [all...]

Completed in 794 milliseconds