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

  /external/webkit/Source/WebCore/bindings/scripts/
CodeGeneratorV8.pm 188 my $svgNativeType;
190 return ($svgPropertyType, $svgListPropertyType, $svgNativeType) if not $implType =~ /SVG/;
192 $svgNativeType = $codeGenerator->GetSVGTypeNeedingTearOff($implType);
193 return ($svgPropertyType, $svgListPropertyType, $svgNativeType) if not $svgNativeType;
195 # Append space to avoid compilation errors when using PassRefPtr<$svgNativeType>
196 $svgNativeType = "$svgNativeType ";
199 if ($svgNativeType =~ /SVGPropertyTearOff/) {
202 } elsif ($svgNativeType =~ /SVGListPropertyTearOff/ or $svgNativeType =~ /SVGStaticListPropertyTearOff/)
    [all...]
CodeGeneratorObjC.pm 647 my $svgNativeType;
649 return ($svgPropertyType, $svgListPropertyType, $svgNativeType) if not $implType =~ /SVG/;
651 $svgNativeType = $codeGenerator->GetSVGTypeNeedingTearOff($implType);
652 return ($svgPropertyType, $svgListPropertyType, $svgNativeType) if not $svgNativeType;
654 # Append space to avoid compilation errors when using PassRefPtr<$svgNativeType>
655 $svgNativeType = "WebCore::$svgNativeType ";
656 $svgNativeType =~ s/</\<WebCore::/ if not $svgNativeType =~ /float/
    [all...]
CodeGeneratorJS.pm 656 my ($svgPropertyType, $svgListPropertyType, $svgNativeType) = GetSVGPropertyTypes($implType);
657 $implType = $svgNativeType if $svgNativeType;
    [all...]

Completed in 26 milliseconds