Home
last modified time | relevance | path

Searched refs:textChild (Results 1 – 2 of 2) sorted by relevance

/external/webkit/WebCore/inspector/front-end/
DElementsTreeOutline.js958 var textChild = onlyTextChild.call(node);
959 …var showInlineText = textChild && textChild.textContent.length < Preferences.maxInlineTextChildLen…
962 …info.title += "<span class=\"webkit-html-text-node\">" + textChild.nodeValue.escapeHTML() + "</spa…
1019 var textChild = onlyTextChild.call(node);
1020 if (textChild && textChild.textContent.length < Preferences.maxInlineTextChildLength)
/external/libxml2/
Dxmlschemas.c26108 xmlNodePtr textChild; in xmlSchemaValidatorPopElem() local
26116 textChild = xmlNewText(BAD_CAST normValue); in xmlSchemaValidatorPopElem()
26119 textChild = xmlNewText(inode->decl->value); in xmlSchemaValidatorPopElem()
26120 if (textChild == NULL) { in xmlSchemaValidatorPopElem()
26125 xmlAddChild(inode->node, textChild); in xmlSchemaValidatorPopElem()