Lines Matching refs:defaultValue
663 public $defaultValue; variable in ArgInfo
665 …ring $name, int $sendBy, bool $isVariadic, ?Type $type, ?Type $phpDocType, ?string $defaultValue) { argument
670 $this->defaultValue = $defaultValue;
678 && $this->defaultValue === $other->defaultValue;
706 return $this->defaultValue !== null && $this->defaultValue !== "UNKNOWN";
711 return '"' . addslashes($this->defaultValue) . '"';
718 if ($this->defaultValue === null) {
722 switch ($this->defaultValue) {
728 return "&{$this->defaultValue};";
731 return $this->defaultValue;
1049 if ($arg->defaultValue && !$arg->hasProperDefaultValue()) {
1190 $arg->defaultValue = null;
1296 if ($arg->defaultValue !== null) {
1312 $defaultValue = $arg->getDefaultValueAsMethodSynopsisString();
1313 if ($defaultValue !== null) {
1315 if (preg_match('/^[a-zA-Z_][a-zA-Z_0-9]*$/', $defaultValue)) {
1316 $constant = $doc->createElement('constant', $defaultValue);
1319 $initializer->nodeValue = $defaultValue;
1396 public $defaultValue; variable in PropertyInfo
1409 ?Expr $defaultValue, argument
1418 $this->defaultValue = $defaultValue;
1434 if ($this->defaultValue === null) {
1435 $defaultValue = null;
1437 $defaultValue = $this->evaluateDefaultValue($defaultValueConstant);
1482 if ($this->defaultValue === null && $this->type !== null) {
1485 $code .= initializeZval($zvalName, $defaultValue);
1594 return $evaluator->evaluateDirectly($this->defaultValue);
3437 if ($aliasArg->defaultValue !== $aliasedArg->defaultValue) {