Lines Matching refs:defaultValue
819 public ?string $defaultValue; variable in ArgInfo
832 ?string $defaultValue, argument
839 $this->defaultValue = $defaultValue;
848 && $this->defaultValue === $other->defaultValue;
876 return $this->defaultValue !== null && $this->defaultValue !== "UNKNOWN";
881 return '"' . addslashes($this->defaultValue) . '"';
888 if ($this->defaultValue === null) {
892 switch ($this->defaultValue) {
898 return "&{$this->defaultValue};";
901 return $this->defaultValue;
1282 if ($arg->defaultValue && !$arg->hasProperDefaultValue()) {
1430 $arg->defaultValue = null;
1533 if ($arg->defaultValue !== null) {
1549 $defaultValue = $arg->getDefaultValueAsMethodSynopsisString();
1550 if ($defaultValue !== null) {
1552 if (preg_match('/^[a-zA-Z_][a-zA-Z_0-9]*$/', $defaultValue)) {
1553 $constant = $doc->createElement('constant', $defaultValue);
1556 $initializer->nodeValue = $defaultValue;
2110 public ?Expr $defaultValue; variable in PropertyInfo
2119 ?Expr $defaultValue, argument
2127 $this->defaultValue = $defaultValue;
2181 if ($this->defaultValue === null) {
2182 $defaultValue = EvaluatedValue::null();
2184 …$defaultValue = EvaluatedValue::createFromExpression($this->defaultValue, null, null, $allConstInf…
2185 …if ($defaultValue->isUnknownConstValue || ($defaultValue->originatingConst && $defaultValue->getCC…
2232 if ($this->defaultValue === null && $this->type !== null) {
2235 $code .= $defaultValue->initializeZval($zvalName, $allConstInfos);
4802 if ($aliasArg->defaultValue !== $aliasedArg->defaultValue) {