Lines Matching refs:defaultValue
830 public ?string $defaultValue; variable in ArgInfo
843 ?string $defaultValue, argument
850 $this->defaultValue = $defaultValue;
859 && $this->defaultValue === $other->defaultValue;
887 return $this->defaultValue !== null && $this->defaultValue !== "UNKNOWN";
892 return '"' . addslashes($this->defaultValue) . '"';
899 if ($this->defaultValue === null) {
903 switch ($this->defaultValue) {
909 return "&{$this->defaultValue};";
912 return $this->defaultValue;
1339 if ($arg->defaultValue && !$arg->hasProperDefaultValue()) {
1553 $arg->defaultValue = null;
2111 if ($arg->defaultValue !== null) {
2134 $defaultValue = $arg->getDefaultValueAsMethodSynopsisString();
2135 if ($defaultValue !== null) {
2137 if (preg_match('/^[a-zA-Z_][a-zA-Z_0-9]*$/', $defaultValue)) {
2138 $constant = $doc->createElement('constant', $defaultValue);
2141 $initializer->nodeValue = $defaultValue;
2911 public ?Expr $defaultValue; variable in PropertyInfo
3019 ?Expr $defaultValue, argument
3030 $this->defaultValue = $defaultValue;
3078 if ($this->defaultValue === null) {
3079 $defaultValue = EvaluatedValue::null();
3081 …$defaultValue = EvaluatedValue::createFromExpression($this->defaultValue, null, null, $allConstInf…
3082 …if ($defaultValue->isUnknownConstValue || ($defaultValue->originatingConsts && $defaultValue->getC…
3089 if ($this->defaultValue === null && $this->type !== null) {
3092 $code .= $defaultValue->initializeZval($zvalName);
6336 if ($aliasArg->defaultValue !== $aliasedArg->defaultValue) {