Searched refs:attributeType (Results 1 - 7 of 7) sorted by relevance

/external/webkit/Source/WebCore/bindings/scripts/
H A DCodeGeneratorCPP.pm434 my $attributeType = GetCPPType($attribute->signature->type, 0);
439 $property .= " " . $attributeType . ($attributeType =~ /\*$/ ? "" : " ") . $attributeName . "() const";
446 $attributeType = GetCPPType($attribute->signature->type, 1);
452 $property = " void $setterName($attributeType)";
686 my $attributeType = GetCPPType($attribute->signature->type, 0);
692 my $getterSig = "$attributeType $className\:\:$attributeName() const\n";
722 push(@implContent, AddEarlyReturnStatement($attributeType));
727 if ($attributeType =~ /\*$/) {
728 $getterContent = $attributeType
[all...]
H A DCodeGenerator.pm471 my $attributeType = $generator->StripModule($attribute->signature->type);
478 $attributeName = "svgTarget" if $attributeName eq "target" and $attributeType eq "SVGAnimatedString";
482 $attributeName .= "Animated" if $generator->IsSVGAnimatedType($attributeType);
H A DIDLParser.pm265 my $attributeType = (defined($1) ? $1 : die("Parsing error!\nSource:\n$line\n)"));
280 $newDataNode->type($attributeType);
290 print " | |> Attribute; TYPE \"$attributeType\" DATA NAME \"$attributeDataName\" DATA TYPE \"$attributeDataType\" GET EXCEPTION? \"$getterException\" SET EXCEPTION? \"$setterException\"" .
H A DCodeGeneratorObjC.pm776 my $attributeType = GetObjCType($attribute->signature->type);
782 $property .= " " . $attributeType . ($attributeType =~ /\*$/ ? "" : " ") . $attributeName;
827 my $getter = "- (" . $attributeType . ")" . $attributeName . $declarationSuffix;
833 my $setter = "- (void)$setterName(" . $attributeType . ")new" . ucfirst($attributeName) . $declarationSuffix;
1171 my $attributeType = GetObjCType($attribute->signature->type);
1190 my $getterSig = "- ($attributeType)$attributeInterfaceName\n";
1211 my $attributeTypeSansPtr = $attributeType;
1348 if ($attributeType =~ /\*$/) {
1349 $getterContent = $attributeType
[all...]
/external/webkit/Source/WebCore/svg/
H A DSVGAnimationElement.h70 AttributeType attributeType() const;
H A DSVGAnimationElement.cpp252 SVGAnimationElement::AttributeType SVGAnimationElement::attributeType() const function in class:WebCore::SVGAnimationElement
316 // Stop animation, if attributeType is set to CSS by the user, but the attribute itself is not a CSS property.
317 if (!attributeIsCSSProperty && attributeType() == AttributeTypeCSS)
/external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/
H A DShader.cpp473 char attributeType[256]; local
476 int matches = sscanf(input, "static %255s _%255s", attributeType, attributeName);
483 mAttributes.push_back(Attribute(parseType(attributeType), attributeName));

Completed in 403 milliseconds