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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/core/dom/
CDATASection.idl 20 interface CDATASection : Text {
Text.idl 23 ] interface Text : CharacterData {
26 [RaisesException] Text splitText(unsigned long offset);
30 [MeasureAs=TextReplaceWholeText] Text replaceWholeText(DOMString content); // Removed from DOM4.
Text.h 34 class Text : public CharacterData {
38 static PassRefPtrWillBeRawPtr<Text> create(Document&, const String&);
39 static PassRefPtrWillBeRawPtr<Text> createEditingText(Document&, const String&);
44 PassRefPtrWillBeRawPtr<Text> splitText(unsigned offset, ExceptionState&);
49 PassRefPtrWillBeRawPtr<Text> replaceWholeText(const String&);
51 void recalcTextStyle(StyleRecalcChange, Text* nextTextSibling);
62 Text(TreeScope& treeScope, const String& data, ConstructionType type)
74 virtual PassRefPtrWillBeRawPtr<Text> cloneWithData(const String&);
81 DEFINE_NODE_TYPE_CASTS(Text, isTextNode());
CDATASection.h 26 #include "core/dom/Text.h"
30 class CDATASection FINAL : public Text {
39 virtual PassRefPtrWillBeRawPtr<Text> cloneWithData(const String&) OVERRIDE;
Text.cpp 23 #include "core/dom/Text.h"
40 #include "wtf/text/CString.h"
41 #include "wtf/text/StringBuilder.h"
45 PassRefPtrWillBeRawPtr<Text> Text::create(Document& document, const String& data)
47 return adoptRefWillBeNoop(new Text(document, data, CreateText));
50 PassRefPtrWillBeRawPtr<Text> Text::createEditingText(Document& document, const String& data)
52 return adoptRefWillBeNoop(new Text(document, data, CreateEditingText));
55 PassRefPtrWillBeRawPtr<Node> Text::mergeNextSiblingNodesIfPossible(
    [all...]
  /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/clang/lib/Format/
Encoding.h 11 /// \brief Contains functions for text encoding manipulation. Supports UTF-8,
32 /// \brief Detects encoding of the Text. If the Text can be decoded using UTF-8,
34 inline Encoding detectEncoding(StringRef Text) {
35 const UTF8 *Ptr = reinterpret_cast<const UTF8 *>(Text.begin());
36 const UTF8 *BufEnd = reinterpret_cast<const UTF8 *>(Text.end());
42 inline unsigned getCodePointCountUTF8(StringRef Text) {
44 for (size_t i = 0, e = Text.size(); i < e; i += getNumBytesForUTF8(Text[i])) {
50 /// \brief Gets the number of code points in the Text using the specifie
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/editing/
SplitTextNodeCommand.h 33 class Text;
37 static PassRefPtrWillBeRawPtr<SplitTextNodeCommand> create(PassRefPtrWillBeRawPtr<Text> node, int offset)
45 SplitTextNodeCommand(PassRefPtrWillBeRawPtr<Text>, int offset);
52 RefPtrWillBeMember<Text> m_text1;
53 RefPtrWillBeMember<Text> m_text2;
HTMLInterchange.h 33 class Text;
43 String convertHTMLTextToInterchangeFormat(const String&, const Text&);
DeleteFromTextNodeCommand.h 33 class Text;
37 static PassRefPtrWillBeRawPtr<DeleteFromTextNodeCommand> create(PassRefPtrWillBeRawPtr<Text> node, unsigned offset, unsigned count)
45 DeleteFromTextNodeCommand(PassRefPtrWillBeRawPtr<Text>, unsigned offset, unsigned count);
50 RefPtrWillBeMember<Text> m_node;
InsertIntoTextNodeCommand.h 33 class Text;
37 static PassRefPtrWillBeRawPtr<InsertIntoTextNodeCommand> create(PassRefPtrWillBeRawPtr<Text> node, unsigned offset, const String& text)
39 return adoptRefWillBeNoop(new InsertIntoTextNodeCommand(node, offset, text));
45 InsertIntoTextNodeCommand(PassRefPtrWillBeRawPtr<Text> node, unsigned offset, const String& text);
50 RefPtrWillBeMember<Text> m_node;
SplitTextNodeContainingElementCommand.h 35 static PassRefPtrWillBeRawPtr<SplitTextNodeContainingElementCommand> create(PassRefPtrWillBeRawPtr<Text> node, int offset)
43 SplitTextNodeContainingElementCommand(PassRefPtrWillBeRawPtr<Text>, int offset);
47 RefPtrWillBeMember<Text> m_text;
  /external/llvm/lib/Support/
Locale.cpp 8 int columnWidth(StringRef Text) {
10 return Text.size();
12 return llvm::sys::unicode::columnWidthUTF8(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/include/llvm/Support/
Unicode.h 47 /// Gets the number of positions the UTF8-encoded \p Text is likely to occupy
56 /// * ErrorNonPrintableCharacter (-1) if \p Text contains non-printable
61 int columnWidthUTF8(StringRef Text);
  /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;
  /external/chromium_org/tools/code_coverage/
croc_html.py 54 def Text(self, text):
55 """Adds a text node.
58 text: Text to add.
63 t = self.doc.createTextNode(str(text))
136 f.head.E('title').Text(title)
147 f.head.E('link', rel='stylesheet', type='text/css', href=css_href)
161 hdr.Text('Coverage for ')
166 '../' * (num_dirs - i - 2) + 'index.html')).Text(dirs[i] + '/'
    [all...]
  /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 291 milliseconds

1 2 3 4 5 6 7 8 91011>>