Searched defs:conditional (Results 1 – 3 of 3) sorted by relevance
14 template <bool b, class T, class U> struct conditional { typedef T type; }; argument15 template <class T, class U> struct conditional<false, T, U> { typedef U type; }; struct
1072 int conditional = 0; in find_next_address() local
26 def conditional(variable, checkvalue, truevalue, falsevalue, d): function