Lines Matching refs:conds
2495 function handlePreprocessorConditions(array &$conds, Stmt $stmt): ?string { argument
2499 $conds[] = $matches[1];
2501 $conds[] = "defined($matches[1])";
2503 $conds[] = "!defined($matches[1])";
2505 if (empty($conds)) {
2508 $cond = array_pop($conds);
2509 $conds[] = "!($cond)";
2511 if (empty($conds)) {
2514 array_pop($conds);
2520 return empty($conds) ? null : implode(' && ', $conds);
2541 $conds = [];
2552 $cond = handlePreprocessorConditions($conds, $stmt);
2571 $cond = handlePreprocessorConditions($conds, $classStmt);