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

  /external/webkit/WebCore/bindings/scripts/
CodeGeneratorJS.pm 33 my @headerContent = ();
220 push(@headerContent, "class $implClassName;\n\n") unless $codeGenerator->IsSVGAnimatedType($implClassName);
537 push(@headerContent, "\nnamespace WebCore {\n\n");
544 push(@headerContent, "class $className : public $parentClassName {\n");
545 push(@headerContent, " typedef $parentClassName Base;\n");
546 push(@headerContent, "public:\n");
550 push(@headerContent, " $className(NonNullPassRefPtr<JSC::Structure>, PassRefPtr<$implType>, JSDOMWindowShell*);\n");
552 push(@headerContent, " $className(NonNullPassRefPtr<JSC::Structure>, PassRefPtr<$implType>);\n");
554 push(@headerContent, " $className(NonNullPassRefPtr<JSC::Structure>, JSDOMGlobalObject*, PassRefPtr<$implType>);\n");
558 push(@headerContent, " virtual ~$className();\n") if (!$hasParent or $eventTarget or $interfaceName eq "DOMWindow")
    [all...]
CodeGeneratorV8.pm 34 my @headerContent = ();
211 push(@headerContent, "class $implClassName;\n\n") unless $codeGenerator->IsSVGAnimatedType($implClassName);
243 @headerContent = split("\r", $headerTemplate);
245 push(@headerContent, "\n#if ${conditionalString}\n\n") if $conditionalString;
246 push(@headerContent, "\n#ifndef $className" . "_H");
247 push(@headerContent, "\n#define $className" . "_H\n\n");
252 push(@headerContent, "#include \"$podType.h\"\n") if $podType and ($podType ne "double" and $podType ne "float" and $podType ne "RGBA32");
254 push(@headerContent, "#include <v8.h>\n");
255 push(@headerContent, "#include <wtf/HashMap.h>\n");
256 push(@headerContent, "#include \"StringHash.h\"\n")
    [all...]
CodeGeneratorObjC.pm 40 my @headerContent = ();
697 push(@headerContent, "enum {\n");
698 push(@headerContent, $combinedConstants);
699 push(@headerContent, "\n};\n\n");
707 push(@headerContent, $interfaceDeclaration);
783 push(@headerContent, @headerAttributes) if @headerAttributes > 0;
    [all...]

Completed in 2442 milliseconds