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

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/Source/WebCore/dom/
CDATASection.idl 22 interface CDATASection : Text {
Text.idl 22 interface Text : CharacterData {
26 Text splitText(in [IsIndex] unsigned long offset)
31 Text replaceWholeText(in DOMString content)
Text.h 30 class Text : public CharacterData {
34 static PassRefPtr<Text> create(Document*, const String&);
35 static PassRefPtr<Text> createWithLengthLimit(Document*, const String&, unsigned positionInString, unsigned lengthLimit = defaultLengthLimit);
37 PassRefPtr<Text> splitText(unsigned offset, ExceptionCode&);
42 PassRefPtr<Text> replaceWholeText(const String&, ExceptionCode&);
47 Text(Document* document, const String& data)
61 virtual PassRefPtr<Text> virtualCreate(const String&);
CDATASection.h 26 #include "Text.h"
30 class CDATASection : public Text {
41 virtual PassRefPtr<Text> virtualCreate(const String&);
Text.cpp 23 #include "Text.h"
34 #include <wtf/text/CString.h>
45 PassRefPtr<Text> Text::create(Document* document, const String& data)
47 return adoptRef(new Text(document, data));
50 PassRefPtr<Text> Text::splitText(unsigned offset, ExceptionCode& ec)
62 RefPtr<Text> newText = virtualCreate(oldStr->substring(offset));
81 static const Text* earliestLogicallyAdjacentTextNode(const Text* t
263 String text = data(); local
    [all...]
EditingText.h 24 #include "Text.h"
28 class EditingText : public Text {
  /external/webkit/Source/WebCore/editing/
JoinTextNodesCommand.h 33 class Text;
37 static PassRefPtr<JoinTextNodesCommand> create(PassRefPtr<Text> text1, PassRefPtr<Text> text2)
43 JoinTextNodesCommand(PassRefPtr<Text>, PassRefPtr<Text>);
48 RefPtr<Text> m_text1;
49 RefPtr<Text> m_text2;
SplitTextNodeCommand.h 33 class Text;
37 static PassRefPtr<SplitTextNodeCommand> create(PassRefPtr<Text> node, int offset)
43 SplitTextNodeCommand(PassRefPtr<Text>, int offset);
50 RefPtr<Text> m_text1;
51 RefPtr<Text> m_text2;
HTMLInterchange.h 33 class Text;
43 String convertHTMLTextToInterchangeFormat(const String&, const Text*);
DeleteFromTextNodeCommand.h 33 class Text;
37 static PassRefPtr<DeleteFromTextNodeCommand> create(PassRefPtr<Text> node, unsigned offset, unsigned count)
43 DeleteFromTextNodeCommand(PassRefPtr<Text>, unsigned offset, unsigned count);
48 RefPtr<Text> m_node;
InsertIntoTextNodeCommand.h 33 class Text;
37 static PassRefPtr<InsertIntoTextNodeCommand> create(PassRefPtr<Text> node, unsigned offset, const String& text)
39 return adoptRef(new InsertIntoTextNodeCommand(node, offset, text));
43 InsertIntoTextNodeCommand(PassRefPtr<Text> node, unsigned offset, const String& text);
48 RefPtr<Text> m_node;
SplitTextNodeContainingElementCommand.h 35 static PassRefPtr<SplitTextNodeContainingElementCommand> create(PassRefPtr<Text> node, int offset)
41 SplitTextNodeContainingElementCommand(PassRefPtr<Text>, int offset);
45 RefPtr<Text> m_text;
  /libcore/luni/src/main/java/org/w3c/dom/
CDATASection.java 16 * CDATA sections are used to escape blocks of text containing characters that
22 * <p>The <code>CharacterData.data</code> attribute holds the text that is
28 * <code>CharacterData</code> interface through the <code>Text</code>
47 * any further characters in the text node. Note, however, that some code
53 public interface CDATASection extends Text {
Text.java 16 * The <code>Text</code> interface inherits from <code>CharacterData</code>
18 * markup inside an element's content, the text is contained in a single
19 * object implementing the <code>Text</code> interface that is the only
21 * information items (elements, comments, etc.) and <code>Text</code> nodes
24 * <code>Text</code> node for each block of text. Users may create adjacent
25 * <code>Text</code> nodes that represent the contents of a given element
30 * <code>Text</code> objects into a single node for each block of text.
31 * <p> No lexical check is done on the content of a <code>Text</code> nod
    [all...]
  /external/markdown/tests/misc/
headers.txt 13 Text
15 Some other text
  /external/webkit/Source/WebCore/bindings/js/
JSTextCustom.cpp 29 #include "Text.h"
35 JSValue toJSNewlyCreated(ExecState* exec, JSDOMGlobalObject* globalObject, Text* text)
37 if (!text)
40 return CREATE_DOM_NODE_WRAPPER(exec, globalObject, Text, text);
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/
TextControlActionsManager.java 15 import org.eclipse.swt.widgets.Text;
18 * Manager for installing/unistalling global handlers for {@link Text} actions commands.
25 private final Text m_text;
32 public TextControlActionsManager(final Text text) {
33 super(text);
34 m_text = text;
  /external/llvm/lib/MC/
MCAtom.cpp 17 assert(Type == TextAtom && "Trying to add MCInst to a non-text atom!");
24 Text.push_back(std::make_pair(Address, I));
51 // precise method depends on whether this is a data or a text atom.
60 std::vector<std::pair<uint64_t, MCInst> >::iterator I = Text.begin();
62 while (I != Text.end() && I->first < SplitPt) ++I;
64 assert(I != Text.end() && "Split point not found in disassembly!");
68 std::copy(I, Text.end(), RightAtom->Text.end());
69 Text.erase(I, Text.end())
    [all...]
  /external/emma/core/java12/com/vladium/emma/report/html/doc/
Text.java 7 * $Id: Text.java,v 1.1.1.1 2004/05/09 16:57:42 vlad_r Exp $
18 final class Text implements IContent
22 public Text (final String text, final boolean nbsp)
24 m_text = text;
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
hc_textindexsizeerroffsetoutofbounds.java 33 * greater than the number of characters in the Text node.
38 * is a greater than the number of characters in the Text
71 Text textNode;
72 Text splitNode;
76 textNode = (Text) nameNode.getFirstChild();
hc_textsplittextfour.java 31 * The "splitText(offset)" method returns the new Text node.
35 * The method should return the new Text node. The offset
68 Text textNode;
69 Text splitNode;
74 textNode = (Text) addressNode.getFirstChild();
hc_textsplittextone.java 31 * The "splitText(offset)" method breaks the Text node into
32 * two Text nodes at the specified offset keeping each node
37 * The method splits the Text node into two new sibling
38 * Text nodes keeping both of them in the tree. This test
69 Text textNode;
70 Text splitNode;
76 textNode = (Text) nameNode.getFirstChild();
hc_textsplittextthree.java 31 * After the "splitText(offset)" method breaks the Text node
32 * into two Text nodes, the new Text node contains all the
37 * The new Text node should contain all the content
70 Text textNode;
71 Text splitNode;
76 textNode = (Text) nameNode.getFirstChild();
hc_textsplittexttwo.java 31 * After the "splitText(offset)" method breaks the Text node
32 * into two Text nodes, the original node contains all the
37 * The original Text node should contain all the content
69 Text textNode;
70 Text splitNode;
75 textNode = (Text) nameNode.getFirstChild();
textindexsizeerroffsetoutofbounds.java 33 * greater than the number of characters in the Text node.
38 * is a greater than the number of characters in the Text
72 Text textNode;
73 Text splitNode;
77 textNode = (Text) nameNode.getFirstChild();

Completed in 512 milliseconds

1 2 3 4 5 6 7 8 91011>>