Lines Matching refs:conds
3582 function handlePreprocessorConditions(array &$conds, Stmt $stmt): ?string { argument
3586 $conds[] = $matches[1];
3588 $conds[] = "defined($matches[1])";
3590 $conds[] = "!defined($matches[1])";
3592 if (empty($conds)) {
3595 $cond = array_pop($conds);
3596 $conds[] = "!($cond)";
3598 if (empty($conds)) {
3601 array_pop($conds);
3607 return empty($conds) ? null : implode(' && ', $conds);
3628 $conds = [];
3639 $cond = handlePreprocessorConditions($conds, $stmt);
3676 $cond = handlePreprocessorConditions($conds, $classStmt);