Lines Matching refs:SubExprs
720 SubExprs[ELEM] = Elem; in ObjCForCollectionStmt()
721 SubExprs[COLLECTION] = reinterpret_cast<Stmt*>(Collect); in ObjCForCollectionStmt()
722 SubExprs[BODY] = Body; in ObjCForCollectionStmt()
803 SubExprs[RANGE] = Range; in CXXForRangeStmt()
804 SubExprs[BEGINEND] = BeginEndStmt; in CXXForRangeStmt()
805 SubExprs[COND] = reinterpret_cast<Stmt*>(Cond); in CXXForRangeStmt()
806 SubExprs[INC] = reinterpret_cast<Stmt*>(Inc); in CXXForRangeStmt()
807 SubExprs[LOOPVAR] = LoopVar; in CXXForRangeStmt()
808 SubExprs[BODY] = Body; in CXXForRangeStmt()
837 SubExprs[COND] = reinterpret_cast<Stmt*>(cond); in IfStmt()
838 SubExprs[THEN] = then; in IfStmt()
839 SubExprs[ELSE] = elsev; in IfStmt()
843 if (!SubExprs[VAR]) in getConditionVariable()
846 DeclStmt *DS = cast<DeclStmt>(SubExprs[VAR]); in getConditionVariable()
852 SubExprs[VAR] = 0; in setConditionVariable()
857 SubExprs[VAR] = new (C) DeclStmt(DeclGroupRef(V), VarRange.getBegin(), in setConditionVariable()
866 SubExprs[INIT] = Init; in ForStmt()
868 SubExprs[COND] = reinterpret_cast<Stmt*>(Cond); in ForStmt()
869 SubExprs[INC] = reinterpret_cast<Stmt*>(Inc); in ForStmt()
870 SubExprs[BODY] = Body; in ForStmt()
874 if (!SubExprs[CONDVAR]) in getConditionVariable()
877 DeclStmt *DS = cast<DeclStmt>(SubExprs[CONDVAR]); in getConditionVariable()
883 SubExprs[CONDVAR] = 0; in setConditionVariable()
888 SubExprs[CONDVAR] = new (C) DeclStmt(DeclGroupRef(V), VarRange.getBegin(), in setConditionVariable()
896 SubExprs[COND] = reinterpret_cast<Stmt*>(cond); in SwitchStmt()
897 SubExprs[BODY] = NULL; in SwitchStmt()
901 if (!SubExprs[VAR]) in getConditionVariable()
904 DeclStmt *DS = cast<DeclStmt>(SubExprs[VAR]); in getConditionVariable()
910 SubExprs[VAR] = 0; in setConditionVariable()
915 SubExprs[VAR] = new (C) DeclStmt(DeclGroupRef(V), VarRange.getBegin(), in setConditionVariable()
929 SubExprs[COND] = reinterpret_cast<Stmt*>(cond); in WhileStmt()
930 SubExprs[BODY] = body; in WhileStmt()
935 if (!SubExprs[VAR]) in getConditionVariable()
938 DeclStmt *DS = cast<DeclStmt>(SubExprs[VAR]); in getConditionVariable()
944 SubExprs[VAR] = 0; in setConditionVariable()
949 SubExprs[VAR] = new (C) DeclStmt(DeclGroupRef(V), VarRange.getBegin(), in setConditionVariable()