HomeSort by relevance Sort by last modified time
    Searched defs:namespaceUri (Results 1 - 9 of 9) sorted by null

  /sdk/lint/libs/lint_checks/src/com/android/tools/lint/checks/
StateListDetector.java 105 String namespaceUri = attribute.getNamespaceURI();
106 if (namespaceUri != null && namespaceUri.length() > 0 &&
107 !ANDROID_URI.equals(namespaceUri)) {
  /external/webkit/Source/WebKit/qt/Api/
qwebelement.cpp 385 Adds an attribute with the given \a name in \a namespaceUri with \a value.
391 void QWebElement::setAttributeNS(const QString &namespaceUri, const QString &name, const QString &value)
396 m_element->setAttributeNS(namespaceUri, name, value, exception);
416 Returns the attribute with the given \a name in \a namespaceUri. If the
421 QString QWebElement::attributeNS(const QString &namespaceUri, const QString &name, const QString &defaultValue) const
425 if (m_element->hasAttributeNS(namespaceUri, name))
426 return m_element->getAttributeNS(namespaceUri, name);
446 \a namespaceUri; otherwise returns false.
450 bool QWebElement::hasAttributeNS(const QString &namespaceUri, const QString &name) const
454 return m_element->hasAttributeNS(namespaceUri, name)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
ChangeLayoutRefactoring.java 311 String namespaceUri = null;
314 namespaceUri = ANDROID_URI;
317 setAttribute(rootEdit, layout, namespaceUri,
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/uimodel/
UiElementNode.java 333 * <code>namespaceURI</code> parameter for methods if they wish to have
345 String namespaceURI,
348 return element.getAttributeNS(namespaceURI, localName);
    [all...]