Lines Matching refs:getDeclarationName
932 public function getDeclarationName(): string; function
984 public function getDeclarationName(): string function in ConstName
1010 public function getDeclarationName(): string function in ClassConstName
1031 public function getDeclarationName(): string function in PropertyName
1069 public function getDeclarationName(): string { function in FunctionName
1078 return "ZEND_FUNCTION({$this->getDeclarationName()});\n";
1469 …tionName = $this->alias ? $this->alias->getNonNamespacedName() : $this->name->getDeclarationName();
2614 …e.constants." . strtolower(str_replace(["__", "_"], ["", "-"], $this->name->getDeclarationName()));
2767 $constName = $this->name->getDeclarationName();
2795 … $template = "\tzend_class_constant *const_" . $this->name->getDeclarationName() . " = ";
2815 … $template = "\tzend_class_constant *const_" . $this->name->getDeclarationName() . " = ";
2962 …sName.props." . strtolower(str_replace(["__", "_"], ["", "-"], $this->name->getDeclarationName()));
2967 return $this->name->getDeclarationName();
2987 $propertyName = $this->name->getDeclarationName();
3019 … $template = "\tzend_property_info *property_" . $this->name->getDeclarationName() . " = ";
5274 … "zend_add_class_constant_attribute(class_entry, const_" . $constInfo->name->getDeclarationName(),
5275 "const_" . $constInfo->name->getDeclarationName() . "_$key",
5300 … "zend_add_property_attribute(class_entry, property_" . $propertyInfo->name->getDeclarationName(),
5301 "property_" . $propertyInfo->name->getDeclarationName() . "_" . $key,