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

1 2

  /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 311 // CompoundAssignOperator) but do have visitors.
313 GENERAL_BINOP_FALLBACK(NAME##Assign, CompoundAssignOperator)
489 DISPATCH_WALK(Bin##NAME##Assign, CompoundAssignOperator, S);
543 DISPATCH(Bin##NAME##Assign, CompoundAssignOperator, S);
    [all...]
Expr.h     [all...]
  /external/clang/test/PCH/
exprs.c 63 // CompoundAssignOperator
exprs.h 63 // CompoundAssignOperator
  /external/clang/lib/CodeGen/
CGExprComplex.cpp 211 LValue EmitCompoundAssignLValue(const CompoundAssignOperator *E,
215 ComplexPairTy EmitCompoundAssign(const CompoundAssignOperator *E,
238 ComplexPairTy VisitBinAddAssign(const CompoundAssignOperator *E) {
241 ComplexPairTy VisitBinSubAssign(const CompoundAssignOperator *E) {
244 ComplexPairTy VisitBinMulAssign(const CompoundAssignOperator *E) {
247 ComplexPairTy VisitBinDivAssign(const CompoundAssignOperator *E) {
605 EmitCompoundAssignLValue(const CompoundAssignOperator *E,
647 EmitCompoundAssign(const CompoundAssignOperator *E,
830 EmitComplexCompoundAssignmentLValue(const CompoundAssignOperator *E) {
CGExprScalar.cpp 450 LValue EmitCompoundAssignLValue(const CompoundAssignOperator *E,
454 Value *EmitCompoundAssign(const CompoundAssignOperator *E,
462 Value *VisitBin ## OP ## Assign(const CompoundAssignOperator *E) { \
    [all...]
CGExpr.cpp     [all...]
CodeGenFunction.h     [all...]
  /external/clang/lib/Analysis/
ReachableCode.cpp 200 const CompoundAssignOperator *CAO = cast<CompoundAssignOperator>(S);
  /external/clang/include/clang/Basic/
StmtNodes.td 68 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 380 new (S.Context) CompoundAssignOperator(syntacticLHS, capturedRHS, opcode,
    [all...]
SemaChecking.cpp     [all...]
TreeTransform.h     [all...]
  /external/clang/tools/libclang/
RecursiveASTVisitor.h 306 // CompoundAssignOperator) but do have visitors.
308 GENERAL_BINOP_FALLBACK(NAME##Assign, CompoundAssignOperator)
477 DISPATCH_STMT(Bin##NAME##Assign, CompoundAssignOperator, S);
    [all...]
CIndex.cpp     [all...]
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngineC.cpp 127 cast<CompoundAssignOperator>(B)->getComputationResultType();
131 cast<CompoundAssignOperator>(B)->getComputationLHSType();
    [all...]
  /external/clang/lib/AST/
ASTDumper.cpp 262 void VisitCompoundAssignOperator(const CompoundAssignOperator *Node);
    [all...]
StmtProfile.cpp 390 StmtProfiler::VisitCompoundAssignOperator(const CompoundAssignOperator *S) {
ASTImporter.cpp 173 Expr *VisitCompoundAssignOperator(CompoundAssignOperator *E);
    [all...]
StmtPrinter.cpp 964 void StmtPrinter::VisitCompoundAssignOperator(CompoundAssignOperator *Node) {
    [all...]
  /external/clang/include/clang/Serialization/
ASTBitCodes.h     [all...]
  /external/clang/lib/Serialization/
ASTReaderStmt.cpp 571 void ASTStmtReader::VisitCompoundAssignOperator(CompoundAssignOperator *E) {
    [all...]
ASTWriterStmt.cpp 542 void ASTStmtWriter::VisitCompoundAssignOperator(CompoundAssignOperator *E) {
    [all...]

Completed in 824 milliseconds

1 2