HomeSort by relevance Sort by last modified time
    Searched full:nodename (Results 451 - 475 of 637) sorted by null

<<11121314151617181920>>

  /libcore/luni/src/main/java/org/w3c/dom/
Entity.java 18 * <p>The <code>nodeName</code> attribute that is inherited from
Document.java 77 * <code>nodeName</code> attribute set to <code>tagName</code>, and
148 * @return A new <code>Attr</code> object with the <code>nodeName</code>
208 * node's <code>nodeName</code> and <code>nodeType</code>, plus the
332 * <td valign='top' rowspan='1' colspan='1'><code>Node.nodeName</code></td>
397 * <td valign='top' rowspan='1' colspan='1'><code>Node.nodeName</code></td>
    [all...]
Node.java 23 * <p>The attributes <code>nodeName</code>, <code>nodeValue</code> and
32 * <p>The values of <code>nodeName</code>,
38 * <th>nodeName</th>
498 * <code>nodeName</code> attribute, which holds the qualified name, as
520 * <code>nodeName</code> attribute, which holds the qualified name, as
    [all...]
Element.java 103 * @param name The name (<code>nodeName</code>) of the attribute to
106 * <code>nodeName</code>) or <code>null</code> if there is no such
113 * <code>nodeName</code>) is already present in the element, it is
  /libcore/luni/src/test/java/tests/org/w3c/dom/
ElementSetAttributeNS.java 19 * checking the nodeName and nodeValue of the returned nodes.
SetAttributeNodeNS.java 180 assertEquals("nodeName", "emp:domestic", newName);
NodeSetPrefix.java 39 * setting this attribute, when permitted, changes the nodeName attribute, which
  /external/webkit/Source/WebCore/inspector/
InspectorDOMAgent.cpp 1011 String nodeName;
1029 nodeName = node->nodeName();
1036 value->setString("nodeName", nodeName);
    [all...]
  /external/clang/utils/OptionalTests/Extra/Runtime/
darwin-clang_rt.c 240 fprintf(stderr, " nodename: %s\n", name.nodename);
  /external/webkit/Source/WebCore/dom/
Element.h 189 String tagName() const { return nodeName(); }
202 virtual String nodeName() const;
ProcessingInstruction.cpp 75 String ProcessingInstruction::nodeName() const
Node.cpp 1084 void Node::removeCachedNameNodeList(NameNodeList* list, const String& nodeName)
1091 ASSERT_UNUSED(list, list == data->m_nameNodeListCache.get(nodeName));
1092 data->m_nameNodeListCache.remove(nodeName);
    [all...]
  /external/webkit/Source/WebKit/qt/WebCoreSupport/
EditorClientQt.cpp 62 QString str = node->nodeName();
67 str.append(parent->nodeName());
  /external/webkit/Source/WebKit/win/Interfaces/
DOMCore.idl 98 - (NSString *)nodeName;
100 HRESULT nodeName([out, retval] BSTR* result);
  /frameworks/base/core/java/android/accessibilityservice/
AccessibilityServiceInfo.java 227 String nodeName = parser.getName();
228 if (!TAG_ACCESSIBILITY_SERVICE.equals(nodeName)) {
  /frameworks/base/core/java/android/app/admin/
DeviceAdminInfo.java 242 String nodeName = parser.getName();
243 if (!"device-admin".equals(nodeName)) {
  /frameworks/base/core/java/android/content/pm/
RegisteredServicesCache.java 387 String nodeName = parser.getName();
388 if (!mAttributesName.equals(nodeName)) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/xml/
Hyperlinks.java 384 String nodeName = node.getNodeName();
385 if (NODE_SERVICE.equals(nodeName) && ATTRIBUTE_NAME.equals(attribute.getLocalName())
426 String nodeName = node.getNodeName();
427 if ((USES_PERMISSION.equals(nodeName) || PERMISSION.equals(nodeName))
445 String nodeName = node.getNodeName();
446 if ((ACTION.equals(nodeName) || CATEGORY.equals(nodeName))
    [all...]
  /external/chromium/chrome/common/
libxml_utils.h 68 std::string NodeName() {
  /external/libvpx/examples/includes/geshi/geshi/
actionscript.php 104 'nextScene', 'nextSibling', 'nodeName', 'nodeType', 'nodeValue', 'not', 'Number', 'Object',
  /external/webkit/Source/WebCore/editing/
VisibleSelection.cpp 590 fprintf(stderr, "pos: %s ", m_start.anchorNode()->nodeName().utf8().data());
593 fprintf(stderr, "start: %s ", m_start.anchorNode()->nodeName().utf8().data());
595 fprintf(stderr, "end: %s ", m_end.anchorNode()->nodeName().utf8().data());
  /external/webkit/Source/WebKit/chromium/src/
WebPageSerializerImpl.cpp 308 result += "<" + element->nodeName().lower();
378 result += element->nodeName().lower();
388 result += element->nodeName().lower();
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/formatting/
XmlPrettyPrinterTest.java 69 private Node findNode(Node node, String nodeName) {
70 if (node.getNodeName().equals(nodeName)) {
77 Node result = findNode(child, nodeName);
  /external/apache-xml/src/main/java/org/apache/xml/utils/
DOMHelper.java 650 String nodeName = n.getNodeName();
651 int indexOfNSSep = nodeName.indexOf(':');
658 prefix = nodeName.substring(0, indexOfNSSep);
671 ? nodeName.substring(0, indexOfNSSep) : "";
    [all...]
  /frameworks/base/core/java/android/preference/
PreferenceActivity.java 750 String nodeName = parser.getName();
751 if (!"preference-headers".equals(nodeName)) {
754 + nodeName + " at " + parser.getPositionDescription());
766 nodeName = parser.getName();
767 if ("header".equals(nodeName)) {
    [all...]

Completed in 543 milliseconds

<<11121314151617181920>>