Searched defs:QualifiedName (Results 1 - 25 of 28) sorted by path

12

/external/antlr/antlr-3.4/runtime/ActionScript/project/lib/
H A DFlexAntTasks.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/adobe/ com/adobe/ac/ com/adobe/ac/ant/ ...
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DDocument.cpp775 return Element::create(QualifiedName(nullAtom, name, nullAtom), this);
788 element = registrationContext()->createCustomTagElement(*this, QualifiedName(nullAtom, convertLocalName(localName), xhtmlNamespaceURI));
801 static inline QualifiedName createQualifiedName(const AtomicString& namespaceURI, const AtomicString& qualifiedName, ExceptionState& exceptionState)
805 return QualifiedName::null();
807 QualifiedName qName(prefix, localName, namespaceURI);
810 return QualifiedName::null();
818 QualifiedName qName(createQualifiedName(namespaceURI, qualifiedName, exceptionState));
819 if (qName == QualifiedName::null())
827 QualifiedName qName(createQualifiedName(namespaceURI, qualifiedName, exceptionState));
828 if (qName == QualifiedName
5698 shouldInvalidateNodeListCachesForAttr(const HeapHashSet<WeakMember<const LiveNodeListBase> >[], const QualifiedName&) argument
5712 shouldInvalidateNodeListCachesForAttr(const unsigned[], const QualifiedName&) argument
[all...]
H A DElement.h85 static PassRefPtrWillBeRawPtr<Element> create(const QualifiedName&, Document*);
102 bool hasAttribute(const QualifiedName&) const;
103 const AtomicString& getAttribute(const QualifiedName&) const;
106 void setAttribute(const QualifiedName&, const AtomicString& value);
107 void setSynchronizedLazyAttribute(const QualifiedName&, const AtomicString& value);
109 void removeAttribute(const QualifiedName&);
112 int getIntegralAttribute(const QualifiedName& attributeName) const;
113 void setIntegralAttribute(const QualifiedName& attributeName, int value);
114 void setUnsignedIntegralAttribute(const QualifiedName& attributeName, unsigned value);
115 double getFloatingPointAttribute(const QualifiedName
265 collectStyleForPresentationAttribute(const QualifiedName&, const AtomicString&, MutableStylePropertySet*) argument
276 attributeWillChange(const QualifiedName&, const AtomicString& oldValue, const AtomicString& newValue) argument
[all...]
H A DQualifiedName.cpp22 #include "core/dom/QualifiedName.h"
42 COMPILE_ASSERT(sizeof(QualifiedName::QualifiedNameImpl) == sizeof(SameSizeAsQualifiedNameImpl), qualified_name_impl_should_stay_small);
51 struct QualifiedNameHashTraits : public HashTraits<QualifiedName::QualifiedNameImpl*> {
55 typedef HashSet<QualifiedName::QualifiedNameImpl*, QualifiedNameHash, QualifiedNameHashTraits> QualifiedNameCache;
70 static bool equal(QualifiedName::QualifiedNameImpl* name, const QualifiedNameData& data)
76 static void translate(QualifiedName::QualifiedNameImpl*& location, const QualifiedNameData& data, unsigned)
79 location = QualifiedName::QualifiedNameImpl::create(AtomicString(components.m_prefix), AtomicString(components.m_localName), AtomicString(components.m_namespace), data.m_isStatic).leakRef();
83 QualifiedName::QualifiedName(const AtomicString& p, const AtomicString& l, const AtomicString& n) function in class:blink::QualifiedName
90 QualifiedName function in class:blink::QualifiedName
[all...]
H A DQualifiedName.h37 // This struct is used to pass data between QualifiedName and the QNameTranslator.
44 class QualifiedName { class in namespace:blink
94 QualifiedName(const AtomicString& prefix, const AtomicString& localName, const AtomicString& namespaceURI);
95 ~QualifiedName();
97 QualifiedName(const QualifiedName& other) : m_impl(other.m_impl) { } function in class:blink::QualifiedName
98 const QualifiedName& operator=(const QualifiedName& other) { m_impl = other.m_impl; return *this; }
101 QualifiedName(WTF::HashTableDeletedValueType) : m_impl(WTF::HashTableDeletedValue) { } function in class:blink::QualifiedName
104 bool operator==(const QualifiedName
[all...]
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGAngleTearOff.h43 static PassRefPtr<SVGAngleTearOff> create(PassRefPtr<SVGAngle> target, SVGElement* contextElement, PropertyIsAnimValType propertyIsAnimVal, const QualifiedName& attributeName = QualifiedName::null()) argument
73 SVGAngleTearOff(PassRefPtr<SVGAngle>, SVGElement*, PropertyIsAnimValType, const QualifiedName&);
H A DSVGFilterPrimitiveStandardAttributes.cpp33 SVGFilterPrimitiveStandardAttributes::SVGFilterPrimitiveStandardAttributes(const QualifiedName& tagName, Document& document)
56 bool SVGFilterPrimitiveStandardAttributes::isSupportedAttribute(const QualifiedName& attrName)
58 DEFINE_STATIC_LOCAL(HashSet<QualifiedName>, supportedAttributes, ());
69 void SVGFilterPrimitiveStandardAttributes::parseAttribute(const QualifiedName& name, const AtomicString& value)
74 bool SVGFilterPrimitiveStandardAttributes::setFilterEffectAttribute(FilterEffect*, const QualifiedName&) argument
81 void SVGFilterPrimitiveStandardAttributes::svgAttributeChanged(const QualifiedName& attrName)
129 void SVGFilterPrimitiveStandardAttributes::primitiveAttributeChanged(const QualifiedName& attribute)
H A DSVGLengthListTearOff.h44 static PassRefPtr<SVGLengthListTearOff> create(PassRefPtr<SVGLengthList> target, SVGElement* contextElement, PropertyIsAnimValType propertyIsAnimVal, const QualifiedName& attributeName = QualifiedName::null()) argument
50 SVGLengthListTearOff(PassRefPtr<SVGLengthList> target, SVGElement* contextElement, PropertyIsAnimValType propertyIsAnimVal, const QualifiedName& attributeName = QualifiedName::null()) argument
H A DSVGLengthTearOff.h58 static PassRefPtr<SVGLengthTearOff> create(PassRefPtr<SVGLength> target, SVGElement* contextElement, PropertyIsAnimValType propertyIsAnimVal, const QualifiedName& attributeName = QualifiedName::null()) argument
75 SVGLengthTearOff(PassRefPtr<SVGLength>, SVGElement* contextElement, PropertyIsAnimValType, const QualifiedName& attributeName = QualifiedName::null());
H A DSVGNumberListTearOff.h44 static PassRefPtr<SVGNumberListTearOff> create(PassRefPtr<SVGNumberList> target, SVGElement* contextElement, PropertyIsAnimValType propertyIsAnimVal, const QualifiedName& attributeName = QualifiedName::null()) argument
50 SVGNumberListTearOff(PassRefPtr<SVGNumberList> target, SVGElement* contextElement, PropertyIsAnimValType propertyIsAnimVal, const QualifiedName& attributeName = QualifiedName::null()) argument
H A DSVGNumberTearOff.h43 static PassRefPtr<SVGNumberTearOff> create(PassRefPtr<SVGNumber> target, SVGElement* contextElement, PropertyIsAnimValType propertyIsAnimVal, const QualifiedName& attributeName = QualifiedName::null()) argument
52 SVGNumberTearOff(PassRefPtr<SVGNumber>, SVGElement* contextElement, PropertyIsAnimValType, const QualifiedName& attributeName = QualifiedName::null());
H A DSVGPathSegListTearOff.h47 static PassRefPtr<ItemPropertyType> getValueForInsertionFromTearOff(PassRefPtr<ItemTearOffType> passNewItem, SVGElement* contextElement, const QualifiedName& attributeName)
55 static PassRefPtr<ItemTearOffType> createTearOff(PassRefPtr<ItemPropertyType> passValue, SVGElement* contextElement, PropertyIsAnimValType, const QualifiedName&) argument
68 static PassRefPtr<SVGPathSegListTearOff> create(PassRefPtr<SVGPathSegList> target, SVGElement* contextElement, PropertyIsAnimValType propertyIsAnimVal, const QualifiedName& attributeName = QualifiedName::null()) argument
74 SVGPathSegListTearOff(PassRefPtr<SVGPathSegList> target, SVGElement* contextElement, PropertyIsAnimValType propertyIsAnimVal, const QualifiedName& attributeName = QualifiedName::null()) argument
H A DSVGPointListTearOff.h44 static PassRefPtr<SVGPointListTearOff> create(PassRefPtr<SVGPointList> target, SVGElement* contextElement, PropertyIsAnimValType propertyIsAnimVal, const QualifiedName& attributeName = QualifiedName::null()) argument
50 SVGPointListTearOff(PassRefPtr<SVGPointList> target, SVGElement* contextElement, PropertyIsAnimValType propertyIsAnimVal, const QualifiedName& attributeName = QualifiedName::null()) argument
H A DSVGPointTearOff.h45 static PassRefPtr<SVGPointTearOff> create(PassRefPtr<SVGPoint> target, SVGElement* contextElement, PropertyIsAnimValType propertyIsAnimVal, const QualifiedName& attributeName = QualifiedName::null()) argument
58 SVGPointTearOff(PassRefPtr<SVGPoint>, SVGElement* contextElement, PropertyIsAnimValType, const QualifiedName& attributeName = QualifiedName::null());
H A DSVGPreserveAspectRatioTearOff.h63 static PassRefPtr<SVGPreserveAspectRatioTearOff> create(PassRefPtr<SVGPreserveAspectRatio> target, SVGElement* contextElement, PropertyIsAnimValType propertyIsAnimVal, const QualifiedName& attributeName = QualifiedName::null()) argument
74 SVGPreserveAspectRatioTearOff(PassRefPtr<SVGPreserveAspectRatio>, SVGElement* contextElement, PropertyIsAnimValType, const QualifiedName& attributeName = QualifiedName::null());
H A DSVGRectTearOff.h43 static PassRefPtr<SVGRectTearOff> create(PassRefPtr<SVGRect> target, SVGElement* contextElement, PropertyIsAnimValType propertyIsAnimVal, const QualifiedName& attributeName = QualifiedName::null()) argument
58 SVGRectTearOff(PassRefPtr<SVGRect>, SVGElement* contextElement, PropertyIsAnimValType, const QualifiedName& attributeName = QualifiedName::null());
H A DSVGStringListTearOff.h43 static PassRefPtr<SVGStringListTearOff> create(PassRefPtr<SVGStringList> target, SVGElement* contextElement, PropertyIsAnimValType propertyIsAnimVal, const QualifiedName& attributeName = QualifiedName::null()) argument
144 SVGStringListTearOff(PassRefPtr<SVGStringList>, SVGElement*, PropertyIsAnimValType, const QualifiedName&);
H A DSVGTransformListTearOff.cpp40 SVGTransformListTearOff::SVGTransformListTearOff(PassRefPtr<SVGTransformList> target, SVGElement* contextElement, PropertyIsAnimValType propertyIsAnimVal, const QualifiedName& attributeName = QualifiedName::null()) argument
H A DSVGTransformListTearOff.h45 static PassRefPtr<SVGTransformListTearOff> create(PassRefPtr<SVGTransformList> target, SVGElement* contextElement, PropertyIsAnimValType propertyIsAnimVal, const QualifiedName& attributeName = QualifiedName::null()) argument
56 SVGTransformListTearOff(PassRefPtr<SVGTransformList>, SVGElement*, PropertyIsAnimValType, const QualifiedName&);
H A DSVGTransformTearOff.h54 static PassRefPtr<SVGTransformTearOff> create(PassRefPtr<SVGTransform> target, SVGElement* contextElement, PropertyIsAnimValType propertyIsAnimVal, const QualifiedName& attributeName = QualifiedName::null()) argument
73 SVGTransformTearOff(PassRefPtr<SVGTransform>, SVGElement* contextElement, PropertyIsAnimValType, const QualifiedName& attributeName);
/external/chromium_org/third_party/WebKit/Source/core/svg/properties/
H A DSVGListPropertyTearOffHelper.h47 static PassRefPtr<ItemPropertyType> getValueForInsertionFromTearOff(PassRefPtr<ItemTearOffType> passNewItem, SVGElement* contextElement, const QualifiedName& attributeName)
68 static PassRefPtr<ItemTearOffType> createTearOff(PassRefPtr<ItemPropertyType> value, SVGElement* contextElement, PropertyIsAnimValType propertyIsAnimVal, const QualifiedName& attributeName)
201 SVGListPropertyTearOffHelper(PassRefPtr<ListPropertyType> target, SVGElement* contextElement, PropertyIsAnimValType propertyIsAnimVal, const QualifiedName& attributeName = QualifiedName::null()) argument
219 return ItemTraits::createTearOff(value, 0, PropertyIsNotAnimVal, QualifiedName::null());
H A DSVGPropertyTearOff.h34 #include "core/dom/QualifiedName.h"
81 const QualifiedName& attributeName()
86 void attachToSVGElementAttribute(SVGElement* contextElement, const QualifiedName& attributeName)
90 ASSERT(attributeName != QualifiedName::null());
98 SVGPropertyTearOffBase(SVGElement* contextElement, PropertyIsAnimValType propertyIsAnimVal, const QualifiedName& attributeName = QualifiedName::null()) argument
112 QualifiedName m_attributeName;
134 SVGPropertyTearOff(PassRefPtr<Property> target, SVGElement* contextElement, PropertyIsAnimValType propertyIsAnimVal, const QualifiedName& attributeName = QualifiedName::null()) argument
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/javascript/ com/google/javascript/jscomp/ ...
/external/chromium_org/third_party/closure_compiler/compiler/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.apache.commons.el_1.0.0.v201004212143.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 345 milliseconds

12