Home | History | Annotate | Download | only in Reactor

Lines Matching defs:For

12 // See the License for the specific language governing permissions and
2224 // Specialized for function types
2722 for(Type *type : types)
2905 #define For(init, cond, inc) \
2906 for(ForData for__ = true; for__; for__ = false) \
2907 for(init; for__.setup() && for__.test(cond); inc, for__.end())
2909 #define While(cond) For((void)0, cond, (void)0)
2926 for(IfElseData ifElse__(cond); ifElse__ < IFELSE_NUM__; ++ifElse__) \