HomeSort by relevance Sort by last modified time
    Searched full:attributename (Results 51 - 75 of 120) sorted by null

1 23 4 5

  /external/webkit/Source/WebCore/dom/
DatasetDOMStringMap.cpp 73 static bool propertyNameMatchesAttributeName(const String& propertyName, const String& attributeName)
75 if (!attributeName.startsWith("data-"))
79 const UChar* attribute = attributeName.characters();
81 unsigned attributeLength = attributeName.length();
Element.h 117 int getIntegralAttribute(const QualifiedName& attributeName) const;
118 void setIntegralAttribute(const QualifiedName& attributeName, int value);
119 unsigned getUnsignedIntegralAttribute(const QualifiedName& attributeName) const;
120 void setUnsignedIntegralAttribute(const QualifiedName& attributeName, unsigned value);
512 inline bool Element::isIdAttributeName(const QualifiedName& attributeName) const
518 return attributeName == document()->idAttributeName();
  /external/webkit/Source/WebCore/html/parser/
HTMLMetaCharsetParser.cpp 112 AtomicString attributeName(iter->m_name.data(), iter->m_name.size());
115 if (attributeName == http_equivAttr) {
119 if (attributeName == charsetAttr) {
122 } else if (attributeName == contentAttr) {
XSSFilter.cpp 417 bool XSSFilter::eraseAttributeIfInjected(HTMLToken& token, const QualifiedName& attributeName, const String& replacementValue)
420 if (findAttributeWithName(token, attributeName, indexOfAttribute)) {
423 if (attributeName == srcAttr && isSameOriginResource(String(attribute.m_value.data(), attribute.m_value.size())))
425 if (attributeName == http_equivAttr && !isDangerousHTTPEquiv(String(attribute.m_value.data(), attribute.m_value.size())))
  /external/webkit/Source/WebCore/manual-tests/
svg-animation-parseValues.svg 11 <animateTransform attributeName="transform" type="rotate" values="450;450;" dur="1s"/>
  /packages/apps/Mms/src/org/w3c/dom/smil/
ElementTargetAttributes.java 23 public void setAttributeName(String attributeName);
  /external/webkit/Source/WebCore/svg/
SVGAnimationElement.cpp 293 bool SVGAnimationElement::isTargetAttributeCSSProperty(SVGElement* targetElement, const QualifiedName& attributeName)
299 return SVGStyledElement::isAnimatableCSSProperty(attributeName);
307 QualifiedName attributeName = this->attributeName();
308 if (!targetElement || attributeName == anyQName() || value.isNull())
315 bool attributeIsCSSProperty = isTargetAttributeCSSProperty(targetElement, attributeName);
324 targetElement->style()->setProperty(attributeName.localName(), value, "", ec);
328 targetElement->setAttribute(attributeName, value, ec);
342 shadowTreeElement->style()->setProperty(attributeName.localName(), value, "", ec);
344 shadowTreeElement->setAttribute(attributeName, value, ec)
    [all...]
svgattrs.in 15 attributeName
  /external/skia/src/ports/
FontHostConfiguration_android.cpp 92 const char* attributeName = attributes[currentAttributeIndex];
94 int nameLength = strlen(attributeName);
96 if (strncmp(attributeName, "variant", nameLength) == 0) {
102 } else if (strncmp(attributeName, "lang", nameLength) == 0) {
105 //each element is a pair of attributeName/attributeValue string pairs
  /cts/tools/cts-xml-generator/src/com/android/cts/xmlgenerator/
CtsXmlGenerator.java 117 String attributeName) {
121 return element.getAttribute(attributeName);
  /tools/motodev/src/plugins/android.codeutils/src/com/motorola/studio/android/model/resources/types/
ResourcesNode.java 57 protected boolean isAttributeValid(String attributeName)
UnknownNode.java 77 protected boolean isAttributeValid(String attributeName)
  /tools/motodev/src/plugins/preflighting.checkers/src/com/motorolamobility/preflighting/checkers/androidmarketfilters/
MissingMinSdkCondition.java 99 NamedNodeMap map, String attributeName) throws PreflightingCheckerException
101 Node atr = map.getNamedItem(attributeName);
127 attributeName), e);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/
AndroidTargetData.java 264 * @param attributeName the name of the attribute
268 public String[] getAttributeValues(String elementName, String attributeName) {
269 String key = String.format("(%1$s,%2$s)", elementName, attributeName); //$NON-NLS-1$
282 * @param attributeName the name of the attribute
287 public String[] getAttributeValues(String elementName, String attributeName,
291 greatGrandParentElementName, elementName, attributeName);
298 return getAttributeValues(elementName, attributeName);
  /external/webkit/Source/WebCore/bindings/scripts/
CodeGeneratorObjC.pm 766 my $attributeName = $attribute->signature->name;
768 if ($attributeName eq "id" or $attributeName eq "hash" or $attributeName eq "description") {
770 $attributeName .= "Name";
771 } elsif ($attributeName eq "frame") {
773 $attributeName .= "Borders";
781 $attributeName =~ s/operator/_operator/ if ($attributeName =~ /operator/);
782 $property .= " " . $attributeType . ($attributeType =~ /\*$/ ? "" : " ") . $attributeName;
    [all...]
CodeGenerator.pm 445 my ($object, $interfaceName, $attributeName) = @_;
446 return "SVGNames" if $interfaceName =~ /^SVG/ && !$svgAttributesInHTMLHash{$attributeName};
470 my $attributeName = $attribute->signature->name;
474 $attributeName = "_operator" if $attributeName eq "operator";
478 $attributeName = "svgTarget" if $attributeName eq "target" and $attributeType eq "SVGAnimatedString";
482 $attributeName .= "Animated" if $generator->IsSVGAnimatedType($attributeType);
484 return $attributeName;
CodeGeneratorCPP.pm 433 my $attributeName = $attribute->signature->name;
439 $property .= " " . $attributeType . ($attributeType =~ /\*$/ ? "" : " ") . $attributeName . "() const";
447 my $setterName = "set" . ucfirst($attributeName);
685 my $attributeName = $attribute->signature->name;
689 $attributeNames{$attributeName} = 1;
692 my $getterSig = "$attributeType $className\:\:$attributeName() const\n";
747 my $coreSetterName = "set" . $codeGenerator->WK_ucfirst($attributeName);
748 my $setterName = "set" . ucfirst($attributeName);
749 my $argName = "new" . ucfirst($attributeName);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
VisualRefactoring.java 373 String attributeName = ""; //$NON-NLS-1$
378 attributeName = region.getText(subRegion);
381 if (!attributeName.startsWith(namePrefix)) {
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/values/
ValuesContentAssist.java 74 String parentTagName, String attributeName, Node node, String wordPrefix,
76 super.computeAttributeValues(proposals, offset, parentTagName, attributeName, node,
79 if (parentTagName.equals(TAG_ITEM) && ATTR_NAME.equals(attributeName)) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactoring/changes/
AndroidLayoutChange.java 253 * @param attributeName the attribute
258 private Attr findAttribute(IDOMDocument xmlDoc, String element, String attributeName,
265 Attr attribute = RefactoringUtil.findAndroidAttributes(attributes, attributeName);
  /external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/
Shader.h 132 int getSemanticIndex(const std::string &attributeName);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/junit/
AndroidJUnitLaunchConfigDelegate.java 257 * @param attributeName name of the launch attribute
261 private String getStringLaunchAttribute(String attributeName,
264 String attrValue = configuration.getAttribute(attributeName, EMPTY_STRING);
271 attributeName));
  /external/webkit/Tools/iExploder/iexploder-1.7.2/src/html-attrs/
mozilla 68 attributeName
69 attributename
  /external/chromium/chrome/browser/resources/shared/js/
i18n_template.js 55 * attributename:key;
  /external/webkit/Source/WebCore/xml/
XMLViewer.js 344 var attributeName = createHTMLElement('span');
345 attributeName.classList.add('webkit-html-attribute-name');
346 attributeName.textContent = attributeNode.name;
358 attribute.appendChild(attributeName);

Completed in 3129 milliseconds

1 23 4 5