OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:qualifiedname
(Results
126 - 150
of
605
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/chromium_org/third_party/WebKit/Source/core/svg/
SVGFEMorphologyElement.cpp
78
bool SVGFEMorphologyElement::isSupportedAttribute(const
QualifiedName
& attrName)
80
DEFINE_STATIC_LOCAL(HashSet<
QualifiedName
>, supportedAttributes, ());
89
void SVGFEMorphologyElement::parseAttribute(const
QualifiedName
& name, const AtomicString& value)
120
bool SVGFEMorphologyElement::setFilterEffectAttribute(FilterEffect* effect, const
QualifiedName
& attrName)
136
void SVGFEMorphologyElement::svgAttributeChanged(const
QualifiedName
& attrName)
SVGPolyElement.cpp
68
SVGPolyElement::SVGPolyElement(const
QualifiedName
& tagName, Document& document)
74
bool SVGPolyElement::isSupportedAttribute(const
QualifiedName
& attrName)
76
DEFINE_STATIC_LOCAL(HashSet<
QualifiedName
>, supportedAttributes, ());
84
void SVGPolyElement::parseAttribute(const
QualifiedName
& name, const AtomicString& value)
109
void SVGPolyElement::svgAttributeChanged(const
QualifiedName
& attrName)
SVGTextPositioningElement.cpp
50
SVGTextPositioningElement::SVGTextPositioningElement(const
QualifiedName
& tagName, Document& document)
57
bool SVGTextPositioningElement::isSupportedAttribute(const
QualifiedName
& attrName)
59
DEFINE_STATIC_LOCAL(HashSet<
QualifiedName
>, supportedAttributes, ());
70
void SVGTextPositioningElement::parseAttribute(const
QualifiedName
& name, const AtomicString& value)
120
void SVGTextPositioningElement::svgAttributeChanged(const
QualifiedName
& attrName)
SVGFilterPrimitiveStandardAttributes.cpp
50
SVGFilterPrimitiveStandardAttributes::SVGFilterPrimitiveStandardAttributes(const
QualifiedName
& tagName, Document& document)
62
bool SVGFilterPrimitiveStandardAttributes::isSupportedAttribute(const
QualifiedName
& attrName)
64
DEFINE_STATIC_LOCAL(HashSet<
QualifiedName
>, supportedAttributes, ());
75
void SVGFilterPrimitiveStandardAttributes::parseAttribute(const
QualifiedName
& name, const AtomicString& value)
97
bool SVGFilterPrimitiveStandardAttributes::setFilterEffectAttribute(FilterEffect*, const
QualifiedName
&)
104
void SVGFilterPrimitiveStandardAttributes::svgAttributeChanged(const
QualifiedName
& attrName)
152
void SVGFilterPrimitiveStandardAttributes::primitiveAttributeChanged(const
QualifiedName
& attribute)
SVGAElement.h
46
bool isSupportedAttribute(const
QualifiedName
&);
47
virtual void parseAttribute(const
QualifiedName
&, const AtomicString&) OVERRIDE;
48
virtual void svgAttributeChanged(const
QualifiedName
&);
SVGAnimateTransformElement.cpp
56
bool SVGAnimateTransformElement::isSupportedAttribute(const
QualifiedName
& attrName)
58
DEFINE_STATIC_LOCAL(HashSet<
QualifiedName
>, supportedAttributes, ());
64
void SVGAnimateTransformElement::parseAttribute(const
QualifiedName
& name, const AtomicString& value)
SVGFEComponentTransferElement.cpp
55
bool SVGFEComponentTransferElement::isSupportedAttribute(const
QualifiedName
& attrName)
57
DEFINE_STATIC_LOCAL(HashSet<
QualifiedName
>, supportedAttributes, ());
63
void SVGFEComponentTransferElement::parseAttribute(const
QualifiedName
& name, const AtomicString& value)
SVGFilterElement.h
53
bool isSupportedAttribute(const
QualifiedName
&);
54
virtual void parseAttribute(const
QualifiedName
&, const AtomicString&) OVERRIDE;
55
virtual void svgAttributeChanged(const
QualifiedName
&);
SVGMaskElement.h
46
bool isSupportedAttribute(const
QualifiedName
&);
47
virtual void parseAttribute(const
QualifiedName
&, const AtomicString&) OVERRIDE;
48
virtual void svgAttributeChanged(const
QualifiedName
&);
/libcore/dom/src/test/java/org/w3c/domts/level2/core/
createAttributeNS05.java
34
* The "createAttributeNS(namespaceURI,
qualifiedName
)" method for a
38
* Invoke method createAttributeNS(namespaceURI,
qualifiedName
) on this document with
68
String
qualifiedName
= "econm:local";
73
newAttr = doc.createAttributeNS(namespaceURI,
qualifiedName
);
75
assertEquals("throw_Equals",
qualifiedName
, attrName);
createDocument07.java
34
* The "createDocument(namespaceURI,
qualifiedName
,doctype)" method for a
39
* Invoke method createDocument(namespaceURI,
qualifiedName
,doctype) on
41
*
qualifiedName
is "y:x" and doctype is null.
70
String
qualifiedName
= "y:x";
80
aNewDoc = domImpl.createDocument(namespaceURI,
qualifiedName
, docType);
setAttributeNS02.java
34
* The "setAttributeNS(namespaceURI,
qualifiedName
,value)" method raises a
36
*
qualifiedName
if malformed.
39
* An exception should be raised since the "
qualifiedName
" is malformed.
69
String
qualifiedName
= "emp:";
81
((Element) /*Node */testAddr).setAttributeNS(namespaceURI,
qualifiedName
, "newValue");
createAttributeNS03.java
34
* The "createAttributeNS(namespaceURI,
qualifiedName
)" method for a
36
* if
qualifiedName
contains an illegal character.
38
* Invoke method createAttributeNS(namespaceURI,
qualifiedName
) on this document
39
* with
qualifiedName
containing an illegal character from illegalChars[].
70
String
qualifiedName
;
104
qualifiedName
= (String) illegalQNames.get(indexN10090);
109
newAttr = doc.createAttributeNS(namespaceURI,
qualifiedName
);
createDocumentType02.java
34
* The "createDocumentType(
qualifiedName
,publicId,systemId)" method for a
36
*
qualifiedName
contains an illegal character.
38
* Invoke method createDocumentType(
qualifiedName
,publicId,systemId) on
39
* this domimplementation with
qualifiedName
containing an illegal character
71
String
qualifiedName
;
107
qualifiedName
= (String) illegalQNames.get(indexN1009A);
113
docType = domImpl.createDocumentType(
qualifiedName
, publicId, systemId);
createElementNS03.java
34
* The "createElementNS(namespaceURI,
qualifiedName
)" method for a
36
*
qualifiedName
contains an illegal character.
38
* Invoke method createElementNS(namespaceURI,
qualifiedName
) on this document
39
* with
qualifiedName
containing an illegal character from illegalChars[].
70
String
qualifiedName
;
106
qualifiedName
= (String) illegalQNames.get(indexN10098);
111
newElement = doc.createElementNS(namespaceURI,
qualifiedName
);
/libcore/luni/src/main/java/org/w3c/dom/
DOMImplementation.java
37
* @param
qualifiedName
The qualified name of the document type to be
46
* <br>NAMESPACE_ERR: Raised if the <code>
qualifiedName
</code> is
53
public DocumentType createDocumentType(String
qualifiedName
,
73
* @param
qualifiedName
The qualified name of the document element to be
80
* If the <code>NamespaceURI</code>, <code>
qualifiedName
</code>, and
86
* <br>NAMESPACE_ERR: Raised if the <code>
qualifiedName
</code> is
87
* malformed, if the <code>
qualifiedName
</code> has a prefix and the
89
* <code>
qualifiedName
</code> is <code>null</code> and the
91
* if the <code>
qualifiedName
</code> has a prefix that is "xml" and
106
String
qualifiedName
,
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLElementStack.h
42
class
QualifiedName
;
118
void popUntilPopped(const
QualifiedName
& tagName) { popUntilPopped(tagName.localName()); }
141
bool inScope(const
QualifiedName
&) const;
143
bool inListItemScope(const
QualifiedName
&) const;
145
bool inTableScope(const
QualifiedName
&) const;
147
bool inButtonScope(const
QualifiedName
&) const;
149
bool inSelectScope(const
QualifiedName
&) const;
/external/chromium_org/third_party/WebKit/Source/core/svg/animation/
SVGSMILElement.h
46
SVGSMILElement(const
QualifiedName
&, Document&);
49
bool isSupportedAttribute(const
QualifiedName
&);
50
virtual void parseAttribute(const
QualifiedName
&, const AtomicString&) OVERRIDE;
51
virtual void svgAttributeChanged(const
QualifiedName
&) OVERRIDE;
62
const
QualifiedName
& attributeName() const { return m_attributeName; }
128
virtual void setAttributeName(const
QualifiedName
&);
194
QualifiedName
m_attributeName;
/external/chromium_org/third_party/WebKit/Source/core/svg/properties/
SVGAttributeToPropertyMap.cpp
38
const
QualifiedName
& attributeName = firstProperty->attributeName;
64
void SVGAttributeToPropertyMap::animatedPropertiesForAttribute(SVGElement* ownerType, const
QualifiedName
& attributeName, Vector<RefPtr<SVGAnimatedProperty> >& properties)
77
void SVGAttributeToPropertyMap::animatedPropertyTypeForAttribute(const
QualifiedName
& attributeName, Vector<AnimatedPropertyType>& propertyTypes)
103
bool SVGAttributeToPropertyMap::synchronizeProperty(SVGElement* contextElement, const
QualifiedName
& attributeName)
117
SVGAttributeToPropertyMap::PropertiesVector* SVGAttributeToPropertyMap::getOrCreatePropertiesVector(const
QualifiedName
& attributeName)
131
void SVGAttributeToPropertyMap::synchronizeProperty(SVGElement* contextElement, const
QualifiedName
& attributeName, const SVGPropertyInfo* info)
139
PassRefPtr<SVGAnimatedProperty> SVGAttributeToPropertyMap::animatedProperty(SVGElement* contextElement, const
QualifiedName
& attributeName, const SVGPropertyInfo* info)
/libcore/luni/src/test/java/tests/org/w3c/dom/
SetAttributeNodeNS.java
38
* "createAttributeNS(namespaceURI,
qualifiedName
)" and
84
String
qualifiedName
= "emp:newAttr";
97
newAttr = doc.createAttributeNS(namespaceURI,
qualifiedName
);
150
String
qualifiedName
= "emp:newAttr";
160
newAttr = doc.createAttributeNS(namespaceURI,
qualifiedName
);
184
String
qualifiedName
= "emp:newAttr";
193
newAttr = doc2.createAttributeNS(namespaceURI,
qualifiedName
);
/external/jmdns/src/javax/jmdns/impl/
ListenerStatus.java
58
String
qualifiedName
= event.getName() + "." + event.getType();
59
if (null == _addedServices.putIfAbsent(
qualifiedName
, event.getInfo().clone())) {
77
String
qualifiedName
= event.getName() + "." + event.getType();
78
if (_addedServices.remove(
qualifiedName
, _addedServices.get(
qualifiedName
))) {
95
String
qualifiedName
= event.getName() + "." + event.getType();
96
ServiceInfo previousServiceInfo = _addedServices.get(
qualifiedName
);
99
if (null == _addedServices.putIfAbsent(
qualifiedName
, info.clone())) {
103
if (_addedServices.replace(
qualifiedName
, previousServiceInfo, info.clone())) {
/external/chromium_org/third_party/WebKit/Source/build/scripts/templates/
ElementFactory.cpp.tmpl
61
static void addTag(const
QualifiedName
& tag, ConstructorFunction func)
89
RefPtr<Element> element = document.registrationContext()->createCustomTagElement(document,
QualifiedName
(nullAtom, localName, {{namespace_prefix}}NamespaceURI));
94
return {{fallback_interface}}::create(
QualifiedName
(nullAtom, localName, {{namespace_prefix}}NamespaceURI), document);
/external/chromium_org/third_party/WebKit/Source/core/dom/
MutationObserverInterestGroup.h
37
#include "core/dom/
QualifiedName
.h"
62
static PassOwnPtr<MutationObserverInterestGroup> createForAttributesMutation(Node& target, const
QualifiedName
& attributeName)
74
static PassOwnPtr<MutationObserverInterestGroup> createIfNeeded(Node& target, MutationObserver::MutationType, MutationRecordDeliveryOptions oldValueFlag, const
QualifiedName
* attributeName = 0);
/external/chromium_org/third_party/WebKit/Source/core/html/
HTMLFrameSetElement.h
63
virtual void parseAttribute(const
QualifiedName
&, const AtomicString&) OVERRIDE;
64
virtual bool isPresentationAttribute(const
QualifiedName
&) const OVERRIDE;
65
virtual void collectStyleForPresentationAttribute(const
QualifiedName
&, const AtomicString&, MutableStylePropertySet*) OVERRIDE;
HTMLOListElement.cpp
51
bool HTMLOListElement::isPresentationAttribute(const
QualifiedName
& name) const
58
void HTMLOListElement::collectStyleForPresentationAttribute(const
QualifiedName
& name, const AtomicString& value, MutableStylePropertySet* style)
75
void HTMLOListElement::parseAttribute(const
QualifiedName
& name, const AtomicString& value)
Completed in 643 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>