Lines Matching refs:getDeclarationName

924     public function getDeclarationName(): string;  function
976 public function getDeclarationName(): string function in ConstName
1002 public function getDeclarationName(): string function in ClassConstName
1023 public function getDeclarationName(): string function in PropertyName
1061 public function getDeclarationName(): string { function in FunctionName
1070 return "ZEND_FUNCTION({$this->getDeclarationName()});\n";
1464 …tionName = $this->alias ? $this->alias->getNonNamespacedName() : $this->name->getDeclarationName();
2609 …e.constants." . strtolower(str_replace(["__", "_"], ["", "-"], $this->name->getDeclarationName()));
2762 $constName = $this->name->getDeclarationName();
2790 … $template = "\tzend_class_constant *const_" . $this->name->getDeclarationName() . " = ";
2810 … $template = "\tzend_class_constant *const_" . $this->name->getDeclarationName() . " = ";
3051 …sName.props." . strtolower(str_replace(["__", "_"], ["", "-"], $this->name->getDeclarationName()));
3056 return $this->name->getDeclarationName();
3076 $propertyName = $this->name->getDeclarationName();
3108 … $template = "\tzend_property_info *property_" . $this->name->getDeclarationName() . " = ";
5413 … "zend_add_class_constant_attribute(class_entry, const_" . $constInfo->name->getDeclarationName(),
5414 "const_" . $constInfo->name->getDeclarationName() . "_$key",
5439 … "zend_add_property_attribute(class_entry, property_" . $propertyInfo->name->getDeclarationName(),
5440 "property_" . $propertyInfo->name->getDeclarationName() . "_" . $key,