HomeSort by relevance Sort by last modified time
    Searched refs:nodeValue (Results 251 - 275 of 309) sorted by null

<<111213

  /external/webkit/LayoutTests/dom/xhtml/level3/core/
normalizecharacters04.js 128 textValue = text.nodeValue;
normalizecharacters05.js 122 textValue = text.nodeValue;
normalizecharacters06.js 128 textValue = text.nodeValue;
normalizecharacters07.js 122 textValue = text.nodeValue;
normalizecharacters08.js 128 textValue = text.nodeValue;
documentadoptnode06.js 159 adoptedTextNodeValue = adoptText.nodeValue;
  /external/webkit/Source/WebCore/dom/
Node.idl 54 attribute [ConvertNullStringTo=Null, ConvertNullToNullString] DOMString nodeValue
  /external/webkit/Source/WebCore/inspector/front-end/
TextPrompt.js 325 if (node.nodeType === Node.TEXT_NODE && selectionRange.startOffset < node.nodeValue.length)
330 if (node.nodeType === Node.TEXT_NODE && node.nodeValue.length) {
DOMAgent.js 39 this._nodeValue = payload.nodeValue;
113 nodeValue: function()
  /external/webkit/Source/WebKit/android/WebCoreSupport/autofill/
FormManagerAndroid.cpp 129 string16 node_text = WTFStringToString16(node->nodeValue());
167 inferred_label = WTFStringToString16(previous->nodeValue());
197 inferred_label = WTFStringToString16(previous->nodeValue());
214 inferred_label = WTFStringToString16(previous->nodeValue());
518 // label.firstChild().nodeValue() of the label element.
    [all...]
  /external/webkit/Source/WebKit/win/
DOMHTMLClasses.h 210 virtual HRESULT STDMETHODCALLTYPE nodeValue(
211 /* [retval][out] */ BSTR *result) { return DOMDocument::nodeValue(result); }
484 virtual HRESULT STDMETHODCALLTYPE nodeValue(
485 /* [retval][out] */ BSTR *result) { return DOMElement::nodeValue(result); }
    [all...]
  /packages/apps/Mms/src/com/android/mms/dom/
NodeImpl.java 197 public void setNodeValue(String nodeValue) throws DOMException {
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/mock/
MockXmlNode.java 300 public void setNodeValue(String nodeValue) throws DOMException {
  /external/webkit/Source/WebCore/inspector/
InspectorDOMAgent.cpp 1013 String nodeValue;
1019 nodeValue = node->nodeValue();
1038 value->setString("nodeValue", nodeValue);
    [all...]
  /external/webkit/Source/WebCore/page/mac/
FrameMac.mm 180 String nodeString = n->nodeValue();
  /external/apache-xml/src/main/java/org/apache/xml/serializer/dom3/
DOM3TreeWalker.java     [all...]
  /external/chromium/chrome/common/extensions/docs/examples/extensions/news/javascript/
feed.js 166 itemDesc = itemDesc.childNodes[0].nodeValue;
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/generators/
TestResultsGenerator.java 327 String nodeValue = idNode.getNodeValue();
328 if (ForbiddenReferenceID.equals(nodeValue)) {
330 } else if (DiscouragedReferenceID.equals(nodeValue)) {
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
AndroidContentAssist.java 269 String nodeValue = currentNode.getNodeValue();
271 int lineEnd = nodeValue.indexOf('\n', relativeOffset);
273 lineEnd = nodeValue.length();
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/formatting/
XmlPrettyPrinter.java 267 String nodeValue = node.getNodeValue();
268 boolean separateLine = nodeValue.indexOf('\n') != -1;
273 mOut.append(nodeValue);
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/sax2dtm/
SAX2DTM2.java     [all...]
  /external/clang/tools/scan-build/
sorttable.js 228 return node.nodeValue.replace(/^\s+|\s+$/g, '');
  /frameworks/base/tools/preload/
sorttable.js 228 return node.nodeValue.replace(/^\s+|\s+$/g, '');
  /external/webkit/Source/WebCore/editing/
markup.cpp 228 return node->nodeValue();
230 String str = node->nodeValue();
    [all...]
  /external/webkit/Source/WebCore/page/
Frame.cpp 378 String nodeString = n->nodeValue();
437 String nodeString = n->nodeValue();
    [all...]

Completed in 1106 milliseconds

<<111213