HomeSort by relevance Sort by last modified time
    Searched refs:headerContent (Results 1 - 4 of 4) sorted by null

  /external/webkit/Source/WebCore/bindings/scripts/
CodeGeneratorJS.pm 33 my @headerContent = ();
306 push(@headerContent, "typedef JSC::$jscType $type;\n\n");
315 push(@headerContent, "class $implClassName;\n\n");
667 push(@headerContent, "\nnamespace WebCore {\n\n");
679 push(@headerContent, "class $className : public $parentClassName {\n");
680 push(@headerContent, " typedef $parentClassName Base;\n");
681 push(@headerContent, "public:\n");
685 push(@headerContent, " $className(JSC::JSGlobalData&, JSC::Structure*, PassRefPtr<$implType>, JSDOMWindowShell*);\n");
687 push(@headerContent, " $className(JSC::JSGlobalData&, JSC::Structure*, PassRefPtr<$implType>);\n");
689 push(@headerContent, " $className(JSC::Structure*, JSDOMGlobalObject*, PassRefPtr<$implType>);\n")
    [all...]
CodeGeneratorCPP.pm 33 my @headerContent = ();
378 push(@headerContent, "class $className");
379 push(@headerContent, " : public $parentName") if $parentName;
380 push(@headerContent, " {\n");
381 push(@headerContent, "public:\n");
384 push(@headerContent, " $className();\n");
385 push(@headerContent, " explicit $className($implClassNameWithNamespace*);\n");
389 push(@headerContent, " $className(const $className&);\n");
390 push(@headerContent, " ${className}& operator=(const $className&);\n");
395 push(@headerContent, " virtual ~$className();\n")
    [all...]
CodeGeneratorV8.pm 35 my @headerContent = ();
238 push(@headerContent, GenerateHeaderContentHeader($dataNode));
251 push(@headerContent, "#include \<${headerInclude}\>\n");
253 push(@headerContent, "#include \"${headerInclude}\"\n");
257 push(@headerContent, "#include <v8.h>\n");
258 push(@headerContent, "#include <wtf/HashMap.h>\n");
260 push(@headerContent, "\nnamespace WebCore {\n");
261 push(@headerContent, "\ntemplate<typename PropertyType> class SVGPropertyTearOff;\n") if $svgPropertyType;
264 push(@headerContent, "\ntemplate<typename PropertyType> class SVGStaticListPropertyTearOff;\n");
266 push(@headerContent, "\ntemplate<typename PropertyType> class SVGListPropertyTearOff;\n")
    [all...]
CodeGeneratorObjC.pm 40 my @headerContent = ();
748 push(@headerContent, "enum {\n");
749 push(@headerContent, $combinedConstants);
750 push(@headerContent, "\n};\n\n");
758 push(@headerContent, $interfaceDeclaration);
845 push(@headerContent, @headerAttributes) if @headerAttributes > 0;
    [all...]

Completed in 138 milliseconds