Lines Matching refs:defaultValue
838 public ?string $defaultValue; variable in ArgInfo
851 ?string $defaultValue, argument
858 $this->defaultValue = $defaultValue;
867 && $this->defaultValue === $other->defaultValue;
895 return $this->defaultValue !== null && $this->defaultValue !== "UNKNOWN";
900 return '"' . addslashes($this->defaultValue) . '"';
907 if ($this->defaultValue === null) {
911 switch ($this->defaultValue) {
917 return "&{$this->defaultValue};";
920 return $this->defaultValue;
1344 if ($arg->defaultValue && !$arg->hasProperDefaultValue()) {
1558 $arg->defaultValue = null;
2116 if ($arg->defaultValue !== null) {
2139 $defaultValue = $arg->getDefaultValueAsMethodSynopsisString();
2140 if ($defaultValue !== null) {
2142 if (preg_match('/^[a-zA-Z_][a-zA-Z_0-9]*$/', $defaultValue)) {
2143 $constant = $doc->createElement('constant', $defaultValue);
2146 $initializer->nodeValue = $defaultValue;
2916 public ?Expr $defaultValue; variable in PropertyInfo
2930 ?Expr $defaultValue, argument
2941 $this->defaultValue = $defaultValue;
2989 if ($this->defaultValue === null) {
2990 $defaultValue = EvaluatedValue::null();
2992 …$defaultValue = EvaluatedValue::createFromExpression($this->defaultValue, null, null, $allConstInf…
2993 …if ($defaultValue->isUnknownConstValue || ($defaultValue->originatingConsts && $defaultValue->getC…
3000 if ($this->defaultValue === null && $this->type !== null) {
3003 $code .= $defaultValue->initializeZval($zvalName);
6197 if ($aliasArg->defaultValue !== $aliasedArg->defaultValue) {