/libcore/dom/src/test/java/org/w3c/domts/level1/core/ |
nodenotationnodename.java | 76 assertEquals("nodeName", "notation1", notationName);
|
/libcore/dom/src/test/java/org/w3c/domts/level2/core/ |
attrgetownerelement01.java | 38 * the nodeName of the returned ownerElement is emp:employee.
|
documentimportnode11.java | 40 * node. Verify if the node has been imported correctly by its nodeName atttribute and
|
elementsetattributens01.java | 37 * and checking the nodeName and nodeValue of the returned nodes.
|
elementsetattributens02.java | 38 * getAttributeNodeNS method and checking the nodeName and nodeValue of the returned nodes.
|
elementsetattributens03.java | 39 * and checking the nodeName and nodeValue of the returned nodes.
|
importNode05.java | 94 assertEquals("nodeName", "emp:address", name);
|
importNode06.java | 88 assertEquals("nodeName", "emp:address", name);
|
importNode07.java | 96 assertEquals("nodeName", "emp:employee", name);
|
importNode10.java | 91 assertEquals("nodeName", "entRef1", name);
|
namednodemapgetnameditemns02.java | 39 * has been retreived successfully by checking its nodeName atttribute.
|
namednodemapgetnameditemns03.java | 38 * Verify if the attr node has been retreived successfully by checking its nodeName atttribute.
|
namednodemapgetnameditemns04.java | 40 * Verify if the attr node has been retreived successfully by checking its nodeName atttribute.
|
namednodemapgetnameditemns06.java | 38 * Verify if the attr node has been retreived successfully by checking its nodeName atttribute.
|
namednodemapsetnameditemns01.java | 40 * Verify if the attr node was successfully added by checking the nodeName of the retreived atttribute.
|
namednodemapsetnameditemns02.java | 40 * the nodeName of the retreived atttribute from the list of attribute nodes in this map.
|
nodesetprefix01.java | 35 * when permitted, changes the nodeName attribute, which holds the qualified name, as well as the
|
setAttributeNodeNS04.java | 89 assertEquals("nodeName", "emp:domestic", newName);
|
/packages/apps/Mms/src/com/android/mms/dom/ |
DocumentImpl.java | 142 // The value of nodeName is "#document" when Node is a Document
|
ElementImpl.java | 141 // The value of nodeName is tagName when Node is an Element
|
/frameworks/base/core/java/android/app/ |
WallpaperInfo.java | 110 String nodeName = parser.getName(); 111 if (!"wallpaper".equals(nodeName)) {
|
/frameworks/base/core/java/android/printservice/ |
PrintServiceInfo.java | 120 String nodeName = parser.getName(); 121 if (!TAG_PRINT_SERVICE.equals(nodeName)) {
|
/frameworks/base/core/java/android/view/textservice/ |
SpellCheckerInfo.java | 89 final String nodeName = parser.getName(); 90 if (!"spell-checker".equals(nodeName)) {
|
/packages/apps/Settings/src/com/android/settings/ |
VoiceInputOutputSettings.java | 209 String nodeName = parser.getName(); 210 if (!"recognition-service".equals(nodeName)) {
|
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/dom2dtm/ |
DOM2DTMdefaultNamespaceDeclarationNode.java | 58 String prefix,uri,nodename; field in class:DOM2DTMdefaultNamespaceDeclarationNode 66 this.nodename="xmlns:"+prefix; 68 public String getNodeName() {return nodename;} 69 public String getName() {return nodename;} 199 * attributes are equal: <code>nodeName</code>, <code>localName</code>, 240 // in theory nodeName can't be null but better be careful
|