Home | History | Annotate | Download | only in scripts

Lines Matching refs:functionContent

819             my @functionContent = ();
826 push(@functionContent, " $exceptionInit\n");
827 push(@functionContent, " $content;\n");
828 push(@functionContent, " $exceptionRaiseOnError\n");
830 push(@functionContent, " $content;\n");
839 push(@functionContent, " $exceptionInit\n");
840 push(@functionContent, " if ($content)\n");
841 push(@functionContent, " return $toReturn;\n");
842 push(@functionContent, " $exceptionRaiseOnError\n");
843 push(@functionContent, " return $className();\n");
845 push(@functionContent, " if ($content)\n");
846 push(@functionContent, " return $toReturn;\n");
847 push(@functionContent, " return NULL;\n");
863 push(@functionContent, " $exceptionInit\n");
864 push(@functionContent, " $content;\n");
865 push(@functionContent
866 push(@functionContent, " return result;\n");
868 push(@functionContent, " return $content;\n");
875 push(@implContent, @functionContent);