Home | History | Annotate | Download | only in scripts

Lines Matching refs:svgNativeType

656     my ($svgPropertyType, $svgListPropertyType, $svgNativeType) = GetSVGPropertyTypes($implType);
657 $implType = $svgNativeType if $svgNativeType;
1400 my ($svgPropertyType, $svgListPropertyType, $svgNativeType) = GetSVGPropertyTypes($implType);
1401 $implType = $svgNativeType if $svgNativeType;
2386 my $svgNativeType = $codeGenerator->GetSVGTypeNeedingTearOff($type);
2387 return "${svgNativeType}*" if $svgNativeType;
2400 my $svgNativeType;
2402 return ($svgPropertyType, $svgListPropertyType, $svgNativeType) if not $implType =~ /SVG/;
2404 $svgNativeType = $codeGenerator->GetSVGTypeNeedingTearOff($implType);
2405 return ($svgPropertyType, $svgListPropertyType, $svgNativeType) if not $svgNativeType;
2407 # Append space to avoid compilation errors when using PassRefPtr<$svgNativeType>
2408 $svgNativeType = "$svgNativeType ";
2411 if ($svgNativeType =~ /SVGPropertyTearOff/) {
2415 } elsif ($svgNativeType =~ /SVGListPropertyTearOff/ or $svgNativeType =~ /SVGStaticListPropertyTearOff/) {
2419 } elsif ($svgNativeType =~ /SVGTransformListPropertyTearOff/) {
2424 } elsif ($svgNativeType =~ /SVGPathSegListPropertyTearOff/) {
2431 return ($svgPropertyType, $svgListPropertyType, $svgNativeType);