HomeSort by relevance Sort by last modified time
    Searched refs:Text (Results 201 - 225 of 565) sorted by null

1 2 3 4 5 6 7 891011>>

  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
hc_attrnormalize.java 31 * Appends a text node to an attribute, normalizes the attribute
65 Text textNode;
hc_attrremovechild2.java 31 * Attempts to remove a freshly created text node which should result in a NOT_FOUND_ERR exception.
64 Text textNode;
hc_attrreplacechild1.java 31 * Replaces a text node of an attribute and checks if the value of
65 Text textNode;
hc_attrsetvalue2.java 63 Text textNode;
hc_elementnormalize.java 31 * Append a couple of text nodes to the first sup element, normalize the
65 Text textNode;
hc_elementnormalize2.java 31 * Add an empty text node to an existing attribute node, normalize the containing element
32 * and check that the attribute node has eliminated the empty text.
66 Text emptyText;
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
importNode15.java 36 * The importedNode is of type Text.
38 * Create a text node with value being the string "this is text data" in
40 * this document. Method should return a text node whose value matches
72 Text text; local
80 text = aNewDoc.createTextNode("this is text data");
81 aNode = doc.importNode(text, false);
88 assertEquals("nodeValue", "this is text data", value)
    [all...]
  /libcore/luni/src/main/java/org/w3c/dom/
Document.java 19 * <p>Since elements, text nodes, comments, processing instructions, etc.
95 * Creates a <code>Text</code> node given the specified string.
97 * @return The new <code>Text</code> object.
99 public Text createTextNode(String data);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/
SectionHelper.java 22 import org.eclipse.jface.text.DefaultInformationControl;
33 import org.eclipse.swt.widgets.Text;
59 * methods for creating typically UI (label and text, form text.)
117 * @param tooltip An optional tooltip for the label and text. Can be null.
126 * Creates two widgets: a label and a text field.
133 * @param value The initial value of the text field. Can be null.
134 * @param tooltip An optional tooltip for the label and text. Can be null.
135 * @return The new created Text field (the label is not returned)
137 public Text createLabelAndText(Composite parent, FormToolkit toolkit, String label
247 Text text = toolkit.createText(parent, value); local
346 FormText text = toolkit.createFormText(parent, true \/* track focus *\/); local
    [all...]
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/logcat/
EditFilterDialog.java 38 import org.eclipse.swt.widgets.Text;
165 final Text filterNameText = new Text(nameComposite,
199 final Text tagText = new Text(main, SWT.SINGLE | SWT.BORDER);
223 final Text pidText = new Text(main, SWT.SINGLE | SWT.BORDER);
338 * Validates the content of the 2 text fields and enable/disable "ok", while
  /external/webkit/LayoutTests/dom/xhtml/level3/core/
textreplacewholetext06.js 80 The method replaceWholeText substitutes the a specified text for the text of
81 the current node and all logically-adjacent text nodes. This method raises
82 a NO_MODIFICATION_ALLOWED_ERR if one of the Text nodes being replaced is readonly.
84 Invoke replaceWholeText on an existing text node with newly created text and Entityreference
85 nodes (whose replacement text is a character entity reference) appended as children of its parent element node.
88 descendants that are not EntityReference, Text, or CDATASection nodes, the replaceWholeText
90 an exception and verify the content of the returned text node.
115 textNode = doc.createTextNode("New Text");
    [all...]
nodecomparedocumentposition34.js 78 Create a new Element node, add new Text, Element and Processing Instruction nodes to it.
79 Using compareDocumentPosition, compare the position of the Element with respect to the Text
80 and the Text with respect to the Processing Instruction.
105 txt = doc.createTextNode("TEXT");
nodegettextcontent15.js 80 The method getTextContent returns the text content of this node and its descendants.
82 Invoke the method getTextContent on a new Element node with new Text, EntityReferences
109 txt = doc.createTextNode("Text ");
122 assertEquals("nodegettextcontent15","Text ?CData",textContent);
  /external/webkit/Source/WebCore/editing/
InsertParagraphSeparatorCommand.cpp 36 #include "Text.h"
313 Text* textNode = static_cast<Text*>(leadingWhitespace.deprecatedNode());
318 // Split at pos if in the middle of a text node.
320 Text* textNode = static_cast<Text*>(insertionPosition.deprecatedNode());
376 insertTextIntoNode(static_cast<Text*>(insertionPosition.deprecatedNode()), 0, nonBreakingSpaceString());
DeleteSelectionCommand.cpp 40 #include "Text.h"
273 // A common case is deleting characters that are all from the same text node. In
419 void DeleteSelectionCommand::deleteTextFromNode(PassRefPtr<Text> node, unsigned offset, unsigned count)
442 Text *text = static_cast<Text *>(startNode); local
443 if (text->length() > (unsigned)caretMaxOffset(startNode))
444 deleteTextFromNode(text, caretMaxOffset(startNode), text->length() - caretMaxOffset(startNode));
459 // in a text node that needs to be trimme
460 Text* text = static_cast<Text*>(startNode); local
480 Text *text = static_cast<Text *>(node.get()); local
487 Text* text = static_cast<Text*>(m_upstreamEnd.deprecatedNode()); local
524 Text* text = static_cast<Text*>(m_downstreamEnd.deprecatedNode()); local
    [all...]
  /sdk/ddms/app/src/com/android/ddms/
DeviceCommandDialog.java 42 import org.eclipse.swt.widgets.Text;
71 private Text mText;
111 // Getting weird layout behavior under Linux when Text is added --
112 // looks like text widget has min width of 400 when FILL_HORIZONTAL
133 * Create a text widget to show the output and some buttons to
158 mText = new Text(shell, SWT.MULTI | SWT.H_SCROLL | SWT.V_SCROLL);
224 private Text mText;
229 * Constructor; pass in the text widget that will receive the output.
232 public Gatherer(Shell shell, IDevice device, String command, Text text) {
291 final String text; local
380 String text = mText.getText(); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/model/
UiPackageAttributeNode.java 54 import org.eclipse.swt.widgets.Text;
69 * Represents an XML attribute for a package, that can be modified using a simple text field or
86 * Creates a label widget and an associated text field.
118 // Fixes missing text borders under GTK... also requires adding a 1-pixel margin
119 // for the text field below
122 final Text text = toolkit.createText(composite, getCurrentValue()); local
125 text.setLayoutData(gd);
127 setTextWidget(text);
142 * Adds a validator to the text field that calls managedForm.getMessageManager()
178 Text text = getTextWidget(); local
286 Text text = getTextWidget(); local
    [all...]
  /external/webkit/LayoutTests/dom/html/level1/core/
hc_nodetextnodeattribute.js 78 The "getAttributes()" method invoked on a Text
81 Retrieve the Text node from the last child of the
83 on the Text Node. It should return null.
hc_nodetextnodevalue.js 79 Text Node is the content of the Text node.
81 Retrieve the Text node from the last child of the first
hc_textsplittexttwo.js 78 After the "splitText(offset)" method breaks the Text node
79 into two Text nodes, the original node contains all the
84 The original Text node should contain all the content
hc_textwithnomarkup.js 79 content, then the text is contained in a single object
80 implementing the Text interface that is the only child
84 third employee. That Text node contains a block of
85 multiple text lines without markup, so they should be
86 treated as a single Text node. The "getNodeValue()"
  /external/webkit/LayoutTests/dom/xhtml/level1/core/
hc_nodetextnodeattribute.js 78 The "getAttributes()" method invoked on a Text
81 Retrieve the Text node from the last child of the
83 on the Text Node. It should return null.
hc_nodetextnodevalue.js 79 Text Node is the content of the Text node.
81 Retrieve the Text node from the last child of the first
hc_textsplittexttwo.js 78 After the "splitText(offset)" method breaks the Text node
79 into two Text nodes, the original node contains all the
84 The original Text node should contain all the content
hc_textwithnomarkup.js 79 content, then the text is contained in a single object
80 implementing the Text interface that is the only child
84 third employee. That Text node contains a block of
85 multiple text lines without markup, so they should be
86 treated as a single Text node. The "getNodeValue()"

Completed in 526 milliseconds

1 2 3 4 5 6 7 891011>>