HomeSort by relevance Sort by last modified time
    Searched defs:attributeName (Results 1 - 25 of 56) sorted by null

1 2 3

  /external/proguard/src/proguard/classfile/editor/
NamedAttributeDeleter.java 36 private final String attributeName;
39 public NamedAttributeDeleter(String attributeName)
41 this.attributeName = attributeName;
52 new AttributesEditor(programClass, false).deleteAttribute(attributeName);
  /external/webkit/Source/WebCore/svg/properties/
SVGAnimatedProperty.h 37 const QualifiedName& attributeName() const { return m_attributeName; }
65 static PassRefPtr<TearOffType> lookupOrCreateWrapper(SVGElement* element, const QualifiedName& attributeName, const AtomicString& attributeIdentifier, PropertyType& property)
70 wrapper = TearOffType::create(element, attributeName, property);
85 SVGAnimatedProperty(SVGElement* contextElement, const QualifiedName& attributeName)
87 , m_attributeName(attributeName)
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
SetScrollViewSizeFix.java 57 String attributeName = isHorizontal ? ATTR_LAYOUT_WIDTH : ATTR_LAYOUT_HEIGHT;
58 element.setAttributeNS(ANDROID_URI, attributeName, VALUE_WRAP_CONTENT);
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/res/
ResourceReferenceResolver.java 38 private void resolveUnresolvedReferences(String attributeName, T value) {
39 List<String> references = unresolvedReferences.remove(attributeName);
48 private void addUnresolvedReference(String valuePointer, String attributeName) {
49 List<String> references = unresolvedReferences.get(attributeName);
52 unresolvedReferences.put(attributeName, references);
58 String attributeName = rawValue.substring(1);
59 T value = attributeNamesToValues.get(attributeName);
61 addUnresolvedReference(valuePointer, attributeName);
  /external/webkit/Source/WebKit/chromium/src/
WebPageSerializer.cpp 63 const QualifiedName* attributeName = 0;
65 attributeName = &HTMLNames::srcAttr;
69 attributeName = &HTMLNames::srcAttr;
74 attributeName = &HTMLNames::backgroundAttr;
79 attributeName = &HTMLNames::citeAttr;
85 attributeName = &HTMLNames::hrefAttr;
88 attributeName = &HTMLNames::dataAttr;
90 attributeName = &HTMLNames::srcAttr;
92 if (!attributeName)
95 String value = element->getAttribute(*attributeName);
    [all...]
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
hc_elementretrieveallattributes.java 66 String attributeName;
82 attributeName = attribute.getNodeName();
83 actual.add(attributeName);
hc_nodecloneattributescopied.java 68 String attributeName;
87 attributeName = attributeNode.getNodeName();
88 result.add(attributeName);
nodecloneattributescopied.java 71 String attributeName;
85 attributeName = attributeNode.getNodeName();
86 result.add(attributeName);
  /external/skia/legacy/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
  /external/skia/src/ports/
FontHostConfiguration_android.cpp 82 const char* attributeName = attributes[currentAttributeIndex];
84 int nameLength = strlen(attributeName);
86 if (strncmp(attributeName, "variant", nameLength) == 0) {
92 } else if (strncmp(attributeName, "lang", nameLength) == 0) {
95 //each element is a pair of attributeName/attributeValue string pairs
  /external/webkit/Source/WebCore/svg/animation/
SMILTimeContainer.cpp 200 QualifiedName attributeName = key.second;
202 ASSERT(attributeName != anyQName());
204 if (SVGAnimationElement::isTargetAttributeCSSProperty(targetElement, attributeName))
205 baseValue = computedStyle(targetElement)->getPropertyValue(cssPropertyID(attributeName.localName()));
207 baseValue = targetElement->getAttribute(attributeName);
268 QualifiedName attributeName = animation->attributeName();
269 if (attributeName == anyQName()) {
271 attributeName = SVGNames::animateMotionTag;
277 ElementAttributePair key(targetElement, attributeName);
    [all...]
SVGSMILElement.h 59 const QualifiedName& attributeName() const { return m_attributeName; }
  /libcore/luni/src/main/java/java/net/
HttpCookie.java 287 String attributeName = readAttributeName(true);
288 if (attributeName == null) {
297 || "expires".equals(attributeName) || "port".equals(attributeName)
304 setAttribute(cookie, attributeName, attributeValue);
  /external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/
Shader.cpp 446 int VertexShader::getSemanticIndex(const std::string &attributeName)
448 if (!attributeName.empty())
453 if (attribute->name == attributeName)
474 char attributeName[256];
476 int matches = sscanf(input, "static %255s _%255s", attributeType, attributeName);
483 mAttributes.push_back(Attribute(parseType(attributeType), attributeName));
  /external/webkit/Source/WebCore/inspector/
InspectorCSSAgent.cpp 528 String attributeName = attribute->localName();
530 attrStyleObject->setString("name", attributeName.utf8().data());
  /frameworks/base/services/java/com/android/server/firewall/
StringFilter.java 80 String attributeName = parser.getAttributeName(attributeIndex);
82 switch (attributeName.charAt(0)) {
84 if (!attributeName.equals(ATTR_EQUALS)) {
89 if (!attributeName.equals(ATTR_IS_NULL)) {
94 if (!attributeName.equals(ATTR_STARTS_WITH)) {
100 if (!attributeName.equals(ATTR_CONTAINS)) {
105 if (!attributeName.equals(ATTR_PATTERN)) {
111 if (!attributeName.equals(ATTR_REGEX)) {
  /frameworks/base/tools/layoutlib/bridge/src/android/content/res/
BridgeResources.java 133 String attributeName = resourceInfo.getSecond();
135 return Pair.of(attributeName, mContext.getRenderResources().getFrameworkResource(
136 resourceInfo.getFirst(), attributeName));
145 String attributeName = resourceInfo.getSecond();
147 return Pair.of(attributeName, mContext.getRenderResources().getProjectResource(
148 resourceInfo.getFirst(), 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...]
  /external/webkit/Source/WebCore/editing/
EditingStyle.cpp 187 inline const QualifiedName& attributeName() const { return m_attrName; }
669 if (shouldPreserveWritingDirection == PreserveWritingDirection && equivalent->attributeName() == HTMLNames::dirAttr)
678 conflictingAttributes.append(equivalent->attributeName());
    [all...]
  /external/proguard/src/proguard/classfile/io/
ProgramClassReader.java 773 String attributeName = clazz.getString(u2attributeNameIndex);
775 attributeName.equals(ClassConstants.ATTR_SourceFile) ? (Attribute)new SourceFileAttribute():
776 attributeName.equals(ClassConstants.ATTR_SourceDir) ? (Attribute)new SourceDirAttribute():
777 attributeName.equals(ClassConstants.ATTR_InnerClasses) ? (Attribute)new InnerClassesAttribute():
778 attributeName.equals(ClassConstants.ATTR_EnclosingMethod) ? (Attribute)new EnclosingMethodAttribute():
779 attributeName.equals(ClassConstants.ATTR_Deprecated) ? (Attribute)new DeprecatedAttribute():
780 attributeName.equals(ClassConstants.ATTR_Synthetic) ? (Attribute)new SyntheticAttribute():
781 attributeName.equals(ClassConstants.ATTR_Signature) ? (Attribute)new SignatureAttribute():
782 attributeName.equals(ClassConstants.ATTR_ConstantValue) ? (Attribute)new ConstantValueAttribute():
783 attributeName.equals(ClassConstants.ATTR_Exceptions) ? (Attribute)new ExceptionsAttrib (…)
    [all...]
  /external/smack/src/org/jivesoftware/smack/util/
PacketParserUtils.java     [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/
GLState.java 306 IGLProperty attributeName = new GLStringProperty(GLStateType.ATTRIBUTE_NAME, "");
314 attributeName, attributeType, attributeSize, attributeValue);
  /external/webkit/Source/WebCore/dom/
Element.cpp 666 QualifiedName attributeName(nullAtom, localName, nullAtom);
673 if (isIdAttributeName(old ? old->name() : attributeName))
679 m_attributeMap->addAttribute(createAttribute(attributeName, value));
828 const QualifiedName& attributeName = m_attributeMap->m_attributes[i]->name();
829 if (isEventHandlerAttribute(attributeName)) {
834 if (isAttributeToRemove(attributeName, m_attributeMap->m_attributes[i]->value()))
    [all...]
  /libcore/xml/src/main/java/org/kxml2/io/
KXmlParser.java 806 String attributeName = readName();
861 defineAttributeDefault(elementName, attributeName, value);
866 private void defineAttributeDefault(String elementName, String attributeName, String value) {
875 elementAttributes.put(attributeName, value);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
Hyperlinks.java 349 String attributeName = attribute.getLocalName();
350 return ATTR_CLASS.equals(attributeName) && (VIEW.equals(tag) || VIEW_FRAGMENT.equals(tag))
351 || ATTR_NAME.equals(attributeName) && VIEW_FRAGMENT.equals(tag)
352 || (ATTR_CONTEXT.equals(attributeName)
    [all...]

Completed in 1406 milliseconds

1 2 3