Lines Matching refs:conds
1219 function handlePreprocessorConditions(array &$conds, Stmt $stmt): ?string { argument
1223 $conds[] = $matches[1];
1225 $conds[] = "defined($matches[1])";
1227 $conds[] = "!defined($matches[1])";
1229 if (empty($conds)) {
1232 $cond = array_pop($conds);
1233 $conds[] = "!($cond)";
1235 if (empty($conds)) {
1238 array_pop($conds);
1244 return empty($conds) ? null : implode(' && ', $conds);
1265 $conds = [];
1276 $cond = handlePreprocessorConditions($conds, $stmt);
1293 $cond = handlePreprocessorConditions($conds, $classStmt);