HomeSort by relevance Sort by last modified time
    Searched refs:qualifiedName (Results 1 - 25 of 128) sorted by null

1 2 3 4 5 6

  /build/tools/droiddoc/src/
ContainerInfo.java 19 public String qualifiedName();
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
DocumentTypeImpl.java 36 private String qualifiedName;
42 public DocumentTypeImpl(DocumentImpl document, String qualifiedName,
46 if (qualifiedName == null || "".equals(qualifiedName)) {
47 throw new DOMException(DOMException.NAMESPACE_ERR, qualifiedName);
50 int prefixSeparator = qualifiedName.lastIndexOf(":");
52 String prefix = qualifiedName.substring(0, prefixSeparator);
53 String localName = qualifiedName.substring(prefixSeparator + 1);
56 throw new DOMException(DOMException.NAMESPACE_ERR, qualifiedName);
60 throw new DOMException(DOMException.INVALID_CHARACTER_ERR, qualifiedName);
    [all...]
DOMImplementationImpl.java 42 public Document createDocument(String namespaceURI, String qualifiedName,
44 return new DocumentImpl(this, namespaceURI, qualifiedName, doctype, null);
47 public DocumentType createDocumentType(String qualifiedName,
49 return new DocumentTypeImpl(null, qualifiedName, publicId, systemId);
  /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...]
  /build/tools/apicheck/src/com/android/apicheck/
MethodInfo.java 62 public String qualifiedName() {
64 ? (mClass.qualifiedName() + ".")
77 return qualifiedName() + '(' + params + ')';
99 "Method " + mInfo.qualifiedName() + " has changed return type from "
106 "Method " + mInfo.qualifiedName() + " has changed 'abstract' qualifier");
112 "Method " + mInfo.qualifiedName() + " has changed 'native' qualifier");
124 "Method " + mInfo.qualifiedName() + " has changed 'final' qualifier");
132 "Method " + mInfo.qualifiedName() + " has changed 'static' qualifier");
138 "Method " + mInfo.qualifiedName() + " changed scope from "
144 "Method " + mInfo.qualifiedName() + " has changed deprecation state")
    [all...]
ConstructorInfo.java 78 public String qualifiedName() {
80 ? (mClass.qualifiedName() + ".")
93 return qualifiedName() + '(' + params + ')';
104 "Constructor " + mInfo.qualifiedName() + " has changed 'final' qualifier");
110 "Constructor " + mInfo.qualifiedName() + " has changed 'static' qualifier");
116 "Constructor " + mInfo.qualifiedName() + " changed scope from "
123 "Constructor " + mInfo.qualifiedName() + " has changed deprecation state");
129 "Constructor " + mInfo.qualifiedName() + " no longer throws exception "
138 "Constructor " + mInfo.qualifiedName() + " added thrown exception "
FieldInfo.java 62 public String qualifiedName() {
64 ? (mClass.qualifiedName() + ".")
109 "Field " + fInfo.qualifiedName() + " has changed type");
115 "Field " + fInfo.qualifiedName() + " has changed value from "
122 "Method " + fInfo.qualifiedName() + " changed scope from "
129 "Field " + fInfo.qualifiedName() + " has changed 'static' qualifier");
135 "Field " + fInfo.qualifiedName() + " has changed 'final' qualifier");
141 "Field " + fInfo.qualifiedName() + " has changed 'transient' qualifier");
147 "Field " + fInfo.qualifiedName() + " has changed 'volatile' qualifier");
153 "Field " + fInfo.qualifiedName() + " has changed deprecation state")
    [all...]
  /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);
createElementNS05.java 34 * The "createElementNS(namespaceURI,qualifiedName)" method for a
38 * Invoke method createElementNS(namespaceURI,qualifiedName on this document
39 * with namespaceURI as "http://www.nist.gov" and qualifiedName as "gov:faculty".
68 String qualifiedName = "gov:faculty";
73 newElement = doc.createElementNS(namespaceURI, qualifiedName);
75 assertEquals("throw_Equals", qualifiedName, elementName);
createAttributeNS02.java 34 * The "createAttributeNS(namespaceURI,qualifiedName)" method for a
36 * if qualifiedName has a prefix and namespaceURI is null.
38 * Invoke method createAttributeNS(namespaceURI,qualifiedName) on this document
39 * with namespaceURI being null and qualifiedName contains the prefix "person".
71 String qualifiedName = "prefix:local";
79 newAttr = doc.createAttributeNS(namespaceURI, qualifiedName);
createAttributeNS04.java 34 * The "createAttributeNS(namespaceURI,qualifiedName)" method for a
36 * if qualifiedName has the "xml" prefix and namespaceURI is different
39 * Invoke method createAttributeNS(namespaceURI,qualifiedName) on this document
40 * with qualifiedName being "xml:attr1 and namespaceURI equals
73 String qualifiedName = "xml:attr1";
81 newAttr = doc.createAttributeNS(namespaceURI, qualifiedName);
createDocument02.java 34 * The "createDocument(namespaceURI,qualifiedName,doctype)" method for a
36 * if qualifiedName has a prefix and namespaceURI is null.
38 * Invoke method createDocument(namespaceURI,qualifiedName,doctype) on
39 * this domimplementation with namespaceURI being null and qualifiedName
71 String qualifiedName = "k:local";
83 aNewDoc = domImpl.createDocument(namespaceURI, qualifiedName, docType);
createDocument03.java 34 * The "createDocument(namespaceURI,qualifiedName,doctype)" method for a
38 * Invoke method createDocument(namespaceURI,qualifiedName,doctype) on
70 String qualifiedName = "namespaceURI:x";
82 aNewDoc = domImpl.createDocument(namespaceURI, qualifiedName, docType);
createDocument06.java 34 * The "createDocument(namespaceURI,qualifiedName,doctype)" method for a
36 * if qualifiedName has the "xml" prefix and namespaceURI different from
39 * Invoke method createDocument(namespaceURI,qualifiedName,doctype) on
40 * this domimplementation with qualifiedName "xml:local"
74 String qualifiedName = "xml:local";
86 aNewDoc = domImpl.createDocument(namespaceURI, qualifiedName, docType);
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);
createElementNS02.java 34 * The "createElementNS(namespaceURI,qualifiedName)" method for a
36 * qualifiedName has a prefix and namespaceURI is null.
38 * Invoke method createElementNS(namespaceURI,qualifiedName) on this document
39 * with namespaceURI being null and qualifiedName being "elem:attr1".
71 String qualifiedName = "prefix:local";
79 newElement = doc.createElementNS(namespaceURI, qualifiedName);
createElementNS04.java 34 * The "createElementNS(namespaceURI,qualifiedName") method for
36 * qualifiedName has an "xml" prefix and the namespaceURI is different
39 * Invoke method createElementNS(namespaceURI,qualifiedName) on this document
40 * with qualifiedName being "xml:element1" and namespaceURI equals the string
73 String qualifiedName = "xml:element1";
81 newElement = doc.createElementNS(namespaceURI, qualifiedName);
documentcreateattributeNS01.java 37 * namespaceURI, and a qualifiedName without a prefix. This should return a valid Attr
70 String qualifiedName = "test";
75 attribute = doc.createAttributeNS(namespaceURI, qualifiedName);
documentcreateattributeNS07.java 47 * The method createAttributeNS raises a NAMESPACE_ERR if the qualifiedName is xmlns and
51 * the qualifiedName as xmlns and namespaceURI as http://www.W3.org/2000/xmlns.
83 String qualifiedName = "xmlns";
89 attribute = doc.createAttributeNS(namespaceURI, qualifiedName);
documentcreateelementNS02.java 47 * The method createElementNS creates an element of the given valid qualifiedName and NamespaceURI.
50 * and a qualifiedName with an invalid character and check if an INVALID_CHARACTER_ERR is thrown.
82 String qualifiedName = "^^";
88 element = doc.createElementNS(namespaceURI, qualifiedName);
  /external/webkit/WebCore/bindings/objc/
DOMImplementationFront.cpp 57 PassRefPtr<DocumentType> DOMImplementationFront::createDocumentType(const String& qualifiedName, const String& publicId, const String& systemId, ExceptionCode& ec)
59 return reinterpret_cast<DOMImplementation*>(this)->createDocumentType(qualifiedName, publicId, systemId, ec);
62 PassRefPtr<Document> DOMImplementationFront::createDocument(const String& namespaceURI, const String& qualifiedName, DocumentType* type, ExceptionCode& ec)
64 return reinterpret_cast<DOMImplementation*>(this)->createDocument(namespaceURI, qualifiedName, type, ec);
DOMImplementationFront.h 49 PassRefPtr<DocumentType> createDocumentType(const String& qualifiedName, const String& publicId, const String& systemId, ExceptionCode&);
50 PassRefPtr<Document> createDocument(const String& namespaceURI, const String& qualifiedName, DocumentType*, ExceptionCode&);
  /external/webkit/WebCore/dom/
DOMImplementation.idl 32 [OldStyleObjC] DocumentType createDocumentType(in [ConvertUndefinedOrNullToNullString] DOMString qualifiedName,
37 in [ConvertNullToNullString] DOMString qualifiedName,
  /libcore/luni/src/test/java/tests/org/w3c/dom/
DocumentCreateAttributeNS.java 45 * namespaceURI, and a qualifiedName without a prefix. This should return a
96 String qualifiedName = "test";
101 attribute = doc.createAttributeNS(namespaceURI, qualifiedName);
169 String qualifiedName;
183 qualifiedName = (String) qualifiedNames.get(indexN1005A);
188 doc.createAttributeNS(namespaceURI, qualifiedName);
206 String qualifiedName;
216 qualifiedName = (String) qualifiedNames.get(indexN1004E);
223 doc.createAttributeNS(namespaceURI, qualifiedName);
246 String qualifiedName = "abc:def"
    [all...]
  /libcore/dom/src/test/java/org/w3c/domts/
JTidyDOMImplementation.java 57 * @param qualifiedName The qualified name of the document type to be
66 * <br>NAMESPACE_ERR: Raised if the <code>qualifiedName</code> is
76 public DocumentType createDocumentType(String qualifiedName,
87 * @param qualifiedName The qualified name of the document element to be
97 * <br>NAMESPACE_ERR: Raised if the <code>qualifiedName</code> is
98 * malformed, if the <code>qualifiedName</code> has a prefix and the
100 * <code>qualifiedName</code> has a prefix that is "xml" and the
118 String qualifiedName,

Completed in 599 milliseconds

1 2 3 4 5 6