Lines Matching refs:conds
4800 function handlePreprocessorConditions(array &$conds, Stmt $stmt): ?string { argument
4804 $conds[] = $matches[1];
4806 $conds[] = "defined($matches[1])";
4808 $conds[] = "!defined($matches[1])";
4810 if (empty($conds)) {
4813 $cond = array_pop($conds);
4814 $conds[] = "!($cond)";
4816 if (empty($conds)) {
4819 array_pop($conds);
4825 return empty($conds) ? null : implode(' && ', $conds);
4847 $conds = [];
4849 $cond = handlePreprocessorConditions($conds, $stmt);
4899 $cond = handlePreprocessorConditions($conds, $classStmt);
4977 if (!empty($conds)) {