HomeSort by relevance Sort by last modified time
    Searched refs:CompoundAssignOperator (Results 1 - 21 of 21) 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...]
DataRecursiveASTVisitor.h 328 // CompoundAssignOperator) but do have visitors.
330 GENERAL_BINOP_FALLBACK(NAME##Assign, CompoundAssignOperator)
503 DISPATCH_STMT(Bin##NAME##Assign, CompoundAssignOperator, S);
    [all...]
RecursiveASTVisitor.h 330 // CompoundAssignOperator) but do have visitors.
332 GENERAL_BINOP_FALLBACK(NAME##Assign, CompoundAssignOperator)
517 DISPATCH_WALK(Bin##NAME##Assign, CompoundAssignOperator, S);
577 DISPATCH_STMT(Bin##NAME##Assign, CompoundAssignOperator, S);
    [all...]
Expr.h     [all...]
  /external/lldb/include/lldb/Core/
ClangForward.h 48 class CompoundAssignOperator;
  /external/clang/lib/CodeGen/
CGExprComplex.cpp 220 LValue EmitCompoundAssignLValue(const CompoundAssignOperator *E,
224 ComplexPairTy EmitCompoundAssign(const CompoundAssignOperator *E,
247 ComplexPairTy VisitBinAddAssign(const CompoundAssignOperator *E) {
250 ComplexPairTy VisitBinSubAssign(const CompoundAssignOperator *E) {
253 ComplexPairTy VisitBinMulAssign(const CompoundAssignOperator *E) {
256 ComplexPairTy VisitBinDivAssign(const CompoundAssignOperator *E) {
637 EmitCompoundAssignLValue(const CompoundAssignOperator *E,
688 EmitCompoundAssign(const CompoundAssignOperator *E,
    [all...]
CGExprScalar.cpp 457 LValue EmitCompoundAssignLValue(const CompoundAssignOperator *E,
461 Value *EmitCompoundAssign(const CompoundAssignOperator *E,
469 Value *VisitBin ## OP ## Assign(const CompoundAssignOperator *E) { \
    [all...]
CodeGenFunction.h     [all...]
CGExpr.cpp 793 return EmitCompoundAssignmentLValue(cast<CompoundAssignOperator>(E));
794 return EmitComplexCompoundAssignmentLValue(cast<CompoundAssignOperator>(E));
    [all...]
  /external/clang/lib/Analysis/
ReachableCode.cpp 523 const CompoundAssignOperator *CAO = cast<CompoundAssignOperator>(S);
  /external/clang/lib/Sema/
SemaPseudoObject.cpp 434 new (S.Context) CompoundAssignOperator(syntacticLHS, capturedRHS, opcode,
    [all...]
SemaOverload.cpp     [all...]
TreeTransform.h     [all...]
SemaExpr.cpp     [all...]
  /external/clang/lib/AST/
ASTDumper.cpp 324 void VisitCompoundAssignOperator(const CompoundAssignOperator *Node);
    [all...]
StmtProfile.cpp 532 StmtProfiler::VisitCompoundAssignOperator(const CompoundAssignOperator *S) {
    [all...]
ASTImporter.cpp 180 Expr *VisitCompoundAssignOperator(CompoundAssignOperator *E);
    [all...]
ExprConstant.cpp     [all...]
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngineC.cpp 136 cast<CompoundAssignOperator>(B)->getComputationResultType();
140 cast<CompoundAssignOperator>(B)->getComputationLHSType();
    [all...]
  /external/clang/lib/Serialization/
ASTReaderStmt.cpp 655 void ASTStmtReader::VisitCompoundAssignOperator(CompoundAssignOperator *E) {
    [all...]
ASTWriterStmt.cpp 606 void ASTStmtWriter::VisitCompoundAssignOperator(CompoundAssignOperator *E) {
    [all...]

Completed in 528 milliseconds