Searched refs:attributeName (Results 76 - 100 of 155) sorted by relevance

1234567

/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DMutationRecord.h67 virtual const AtomicString& attributeName() { return nullAtom; } function in class:blink::MutationRecord
H A DMutationRecord.cpp127 virtual const AtomicString& attributeName() OVERRIDE { return m_attributeName; }
165 virtual const AtomicString& attributeName() OVERRIDE { return m_record->attributeName(); }
H A DElement.h112 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& attributeName, double fallbackValue = std::numeric_limits<double>::quiet_NaN()) const;
116 void setFloatingPointAttribute(const QualifiedName& attributeName, double value);
718 inline bool Element::isIdAttributeName(const QualifiedName& attributeName) const
724 return attributeName == HTMLNames::idAttr;
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLDocument.cpp267 bool HTMLDocument::isCaseSensitiveAttribute(const QualifiedName& attributeName) argument
270 bool isPossibleHTMLAttr = !attributeName.hasPrefix() && (attributeName.namespaceURI() == nullAtom);
271 return !isPossibleHTMLAttr || !htmlCaseInsensitiveAttributesSet->contains(attributeName.localName().impl());
H A DHTMLLabelElement.cpp278 void HTMLLabelElement::parseAttribute(const QualifiedName& attributeName, const AtomicString& attributeValue) argument
280 if (attributeName == formAttr)
283 HTMLElement::parseAttribute(attributeName, attributeValue);
/external/skia/src/ports/
H A DSkFontConfigParser_android.cpp81 const char* attributeName = attributes[currentAttributeIndex]; local
83 int nameLength = strlen(attributeName);
85 if (strncmp(attributeName, "variant", nameLength) == 0) {
91 } else if (strncmp(attributeName, "lang", nameLength) == 0) {
94 //each element is a pair of attributeName/attributeValue string pairs
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DPrivateScriptRunner.cpp236 v8::Handle<v8::Value> PrivateScriptRunner::runDOMAttributeGetter(ScriptState* scriptState, ScriptState* scriptStateInUserScript, const char* className, const char* attributeName, v8::Handle<v8::Value> holder) argument
239 v8::Handle<v8::Value> descriptor = classObject->GetOwnPropertyDescriptor(v8String(scriptState->isolate(), attributeName));
241 fprintf(stderr, "Private script error: Target DOM attribute getter was not found. (Class name = %s, Attribute name = %s)\n", className, attributeName);
246 fprintf(stderr, "Private script error: Target DOM attribute getter was not found. (Class name = %s, Attribute name = %s)\n", className, attributeName);
253 rethrowExceptionInPrivateScript(scriptState->isolate(), block, scriptStateInUserScript, ExceptionState::GetterContext, attributeName, className);
260 bool PrivateScriptRunner::runDOMAttributeSetter(ScriptState* scriptState, ScriptState* scriptStateInUserScript, const char* className, const char* attributeName, v8::Handle<v8::Value> holder, v8::Handle<v8::Value> v8Value) argument
263 v8::Handle<v8::Value> descriptor = classObject->GetOwnPropertyDescriptor(v8String(scriptState->isolate(), attributeName));
265 fprintf(stderr, "Private script error: Target DOM attribute setter was not found. (Class name = %s, Attribute name = %s)\n", className, attributeName);
270 fprintf(stderr, "Private script error: Target DOM attribute setter was not found. (Class name = %s, Attribute name = %s)\n", className, attributeName);
278 rethrowExceptionInPrivateScript(scriptState->isolate(), block, scriptStateInUserScript, ExceptionState::SetterContext, attributeName, classNam
[all...]
/external/chromium_org/extensions/renderer/resources/
H A Dweb_view.js319 $Array.forEach(AUTO_SIZE_ATTRIBUTES, function(attributeName) {
320 this[attributeName] = this.webviewNode.getAttribute(attributeName);
321 Object.defineProperty(this.webviewNode, attributeName, {
323 return this[attributeName];
326 this.webviewNode.setAttribute(attributeName, value);
424 var newValue = this.webviewNode.getAttribute(mutation.attributeName);
429 mutation.attributeName, oldValue, newValue);
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/injected/
H A Dlive_regions.js188 if (mutation.attributeName == 'class' ||
189 mutation.attributeName == 'style' ||
190 mutation.attributeName == 'hidden') {
191 var attr = mutation.attributeName;
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/
H A DShaderD3D.h42 int getSemanticIndex(const std::string &attributeName) const;
H A DShaderD3D.cpp436 int ShaderD3D::getSemanticIndex(const std::string &attributeName) const
438 if (!attributeName.empty())
445 if (attribute.name == attributeName)
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebPageSerializer.cpp69 const QualifiedName& attributeName = element->subResourceAttributeName(); local
70 if (attributeName == QualifiedName::null())
73 String value = element->getAttribute(attributeName);
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DRuleFeature.cpp345 void RuleFeatureSet::addContentAttr(const AtomicString& attributeName) argument
347 DescendantInvalidationSet& invalidationSet = ensureAttributeInvalidationSet(attributeName);
373 DescendantInvalidationSet& RuleFeatureSet::ensureAttributeInvalidationSet(const AtomicString& attributeName) argument
375 InvalidationSetMap::AddResult addResult = m_attributeInvalidationSets.add(attributeName, nullptr);
525 void RuleFeatureSet::scheduleStyleInvalidationForAttributeChange(const QualifiedName& attributeName, Element& element) argument
528 if (RefPtrWillBeRawPtr<DescendantInvalidationSet> invalidationSet = m_attributeInvalidationSets.get(attributeName.localName()))
/external/chromium_org/remoting/webapp/js_proto/
H A Ddom_proto.js113 MutationRecord.prototype.attributeName;
/external/chromium_org/third_party/WebKit/Source/core/svg/animation/
H A DSMILTimeContainer.cpp77 void SMILTimeContainer::schedule(SVGSMILElement* animation, SVGElement* target, const QualifiedName& attributeName) argument
87 ElementAttributePair key(target, attributeName);
99 void SMILTimeContainer::unschedule(SVGSMILElement* animation, SVGElement* target, const QualifiedName& attributeName) argument
107 ElementAttributePair key(target, attributeName);
H A DSVGSMILElement.cpp267 static inline QualifiedName constructQualifiedName(const SVGElement* svgElement, const AtomicString& attributeName) argument
270 if (attributeName.isEmpty())
272 if (!attributeName.contains(':'))
273 return QualifiedName(nullAtom, attributeName, nullAtom);
277 if (!Document::parseQualifiedName(attributeName, prefix, localName, IGNORE_EXCEPTION))
359 return attributeName() != anyQName();
678 void SVGSMILElement::setAttributeName(const QualifiedName& attributeName) argument
680 if (m_timeContainer && m_targetElement && m_attributeName != attributeName) {
683 m_attributeName = attributeName;
687 m_attributeName = attributeName;
[all...]
/external/owasp/sanitizer/src/main/org/owasp/html/
H A DFilterUrlByProtocolAttributePolicy.java67 String elementName, String attributeName, String s) {
66 apply( String elementName, String attributeName, String s) argument
H A DStylingPolicy.java53 String elementName, String attributeName, String value) {
52 apply( String elementName, String attributeName, String value) argument
/external/chromium_org/third_party/WebKit/Source/core/html/parser/
H A DAtomicHTMLToken.h68 Attribute* getAttributeItem(const QualifiedName& attributeName) argument
71 return findAttributeInVector(m_attributes, attributeName);
H A DHTMLStackItem.h72 Attribute* getAttributeItem(const QualifiedName& attributeName) argument
75 return findAttributeInVector(m_tokenAttributes, attributeName);
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGElement.h97 PassRefPtr<SVGAnimatedPropertyBase> propertyFromAttribute(const QualifiedName& attributeName);
98 static AnimatedPropertyType animatedPropertyTypeForCSSAttribute(const QualifiedName& attributeName);
/external/chromium_org/third_party/WebKit/Source/core/xml/
H A DDocumentXMLTreeViewer.js370 var attributeName = createHTMLElement('span');
371 attributeName.classList.add('html-attribute-name');
372 attributeName.textContent = attributeNode.name;
384 attribute.appendChild(attributeName);
/external/smack/src/org/jivesoftware/smack/
H A DAccountManager.java203 for (String attributeName : getAccountAttributes()) {
204 attributes.put(attributeName, "");
/external/chromium_org/third_party/skia/src/ports/
H A DSkFontConfigParser_android.cpp322 const char* attributeName = attributes[currentAttributeIndex]; local
324 size_t nameLength = strlen(attributeName);
326 if (nameLength == 7 && strncmp(attributeName, "variant", nameLength) == 0) {
340 } else if (nameLength == 4 && strncmp(attributeName, "lang", nameLength) == 0) {
348 } else if (nameLength == 5 && strncmp(attributeName, "index", nameLength) == 0) {
356 //each element is a pair of attributeName/attributeValue string pairs
/external/owasp/sanitizer/distrib/lib/
H A Dowasp-java-html-sanitizer.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/owasp/ org/owasp/html/ org/owasp/html/AbstractTokenStream ...

Completed in 722 milliseconds

1234567