Searched refs:Text (Results 1 - 25 of 491) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DCDATASection.idl20 interface CDATASection : Text {
H A DText.idl22 ] interface Text : CharacterData {
25 [RaisesException] Text splitText(unsigned long offset);
29 [MeasureAs=TextReplaceWholeText] Text replaceWholeText(DOMString content); // Removed from DOM4.
H A DText.h33 class Text : public CharacterData { class in namespace:blink
38 static PassRefPtrWillBeRawPtr<Text> create(Document&, const String&);
39 static PassRefPtrWillBeRawPtr<Text> createEditingText(Document&, const String&);
46 PassRefPtrWillBeRawPtr<Text> splitText(unsigned offset, ExceptionState&);
51 PassRefPtrWillBeRawPtr<Text> replaceWholeText(const String&);
53 void recalcTextStyle(StyleRecalcChange, Text* nextTextSibling);
64 Text(TreeScope& treeScope, const String& data, ConstructionType type) function in class:blink::Text
75 virtual PassRefPtrWillBeRawPtr<Text> cloneWithData(const String&);
82 DEFINE_NODE_TYPE_CASTS(Text, isTextNode());
H A DText.cpp23 #include "core/dom/Text.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()
72 RefPtrWillBeRawPtr<Text> nextText = toText(nextSibling);
105 PassRefPtrWillBeRawPtr<Text> Tex
[all...]
H A DCDATASection.cpp30 : Text(document, data, CreateText)
49 PassRefPtrWillBeRawPtr<Text> CDATASection::cloneWithData(const String& data)
H A DCDATASection.h26 #include "core/dom/Text.h"
30 class CDATASection FINAL : public Text {
40 virtual PassRefPtrWillBeRawPtr<Text> cloneWithData(const String&) OVERRIDE;
/external/markdown/tests/misc/
H A Dheaders.txt13 Text
/external/clang/lib/Format/
H A DEncoding.h32 /// \brief Detects encoding of the Text. If the Text can be decoded using UTF-8,
34 inline Encoding detectEncoding(StringRef Text) { argument
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) { argument
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 specified
52 inline unsigned getCodePointCount(StringRef Text, Encodin argument
64 columnWidth(StringRef Text, Encoding Encoding) argument
80 columnWidthWithTabs(StringRef Text, unsigned StartColumn, unsigned TabWidth, Encoding Encoding) argument
115 getEscapeSequenceLength(StringRef Text) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DHTMLInterchange.h33 class Text;
43 String convertHTMLTextToInterchangeFormat(const String&, const Text&);
H A DSplitTextNodeCommand.h33 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;
H A DSplitTextNodeContainingElementCommand.h35 static PassRefPtrWillBeRawPtr<SplitTextNodeContainingElementCommand> create(PassRefPtrWillBeRawPtr<Text> node, int offset)
43 SplitTextNodeContainingElementCommand(PassRefPtrWillBeRawPtr<Text>, int offset);
47 RefPtrWillBeMember<Text> m_text;
H A DDeleteFromTextNodeCommand.h33 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;
H A DInsertIntoTextNodeCommand.h33 class Text;
37 static PassRefPtrWillBeRawPtr<InsertIntoTextNodeCommand> create(PassRefPtrWillBeRawPtr<Text> node, unsigned offset, const String& text)
45 InsertIntoTextNodeCommand(PassRefPtrWillBeRawPtr<Text> node, unsigned offset, const String& text);
50 RefPtrWillBeMember<Text> m_node;
/external/llvm/lib/Support/
H A DLocale.cpp8 int columnWidth(StringRef Text) { argument
10 return Text.size();
12 return llvm::sys::unicode::columnWidthUTF8(Text);
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/
H A DTextControlActionsManager.java15 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) {
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DIToken.cs37 string Text { property in interface:Antlr.Runtime.IToken
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DIToken.cs39 string Text property in interface:Antlr.Runtime.IToken
/external/llvm/include/llvm/Support/
H A DUnicode.h47 /// 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/chromium_org/tools/stats_viewer/
H A DOpenDialog.cs10 using System.Text;
28 return this.name_box_.Text;
/external/emma/core/java12/com/vladium/emma/report/html/doc/
H A DText.java7 * $Id: Text.java,v 1.1.1.1 2004/05/09 16:57:42 vlad_r Exp $
18 final class Text implements IContent class in inherits:IContent
22 public Text (final String text, final boolean nbsp) method in class:Text
/external/chromium_org/tools/code_coverage/
H A Dcroc_html.py54 def Text(self, text): member in class:HtmlElement
58 text: Text to add.
136 f.head.E('title').Text(title)
161 hdr.Text('Coverage for ')
166 '../' * (num_dirs - i - 2) + 'index.html')).Text(dirs[i] + '/')
167 hdr.Text(dirs[-1])
178 hdr.Text('Coverage for ')
183 '../' * (num_dirs - i - 1) + 'index.html')).Text(dirs[i] + '/')
184 hdr.Text(dirs[-1] + '/')
197 table.E('tr').E('th', e_class='secdesc', colspan=8).Text(captio
[all...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
H A DCommonErrorNode.cs67 public override string Text { property in class:Antlr.Runtime.Tree.CommonErrorNode
106 ", resync=" + Text + ">";
108 return "<mismatched token: " + trappedException.Token + ", resync=" + Text + ">";
111 ", resync=" + Text + ">";
113 return "<error: " + Text + ">";
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
H A DCommonErrorNode.cs73 public override string Text property in class:Antlr.Runtime.Tree.CommonErrorNode
128 ", resync=" + Text + ">";
132 return "<mismatched token: " + trappedException.Token + ", resync=" + Text + ">";
137 ", resync=" + Text + ">";
139 return "<error: " + Text + ">";
/external/clang/lib/Sema/
H A DCodeCompleteConsumer.cpp81 CodeCompletionString::Chunk::Chunk(ChunkKind Kind, const char *Text) argument
82 : Kind(Kind), Text("")
91 this->Text = Text;
98 this->Text = "(";
102 this->Text = ")";
106 this->Text = "[";
110 this->Text = "]";
114 this->Text = "{";
118 this->Text
156 CreateText(const char *Text) argument
345 AddTypedTextChunk(const char *Text) argument
349 AddTextChunk(const char *Text) argument
361 AddInformativeChunk(const char *Text) argument
374 AddChunk(CodeCompletionString::ChunkKind CK, const char *Text) argument
[all...]
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
H A DANTLRTokenRewriteStream.h54 + (ANTLRRewriteOperation *) newANTLRRewriteOperation:(NSInteger)index Text:(NSString *)text;
56 - (id) initWithIndex:(NSInteger)anIndex Text:(NSString *)theText;
70 + (ANTLRInsertBeforeOp *) newANTLRInsertBeforeOp:(NSInteger)anIndex Text:(NSString *)theText;
71 - (id) initWithIndex:(NSInteger)anIndex Text:(NSString *)theText;
84 + (ANTLRReplaceOp *) newANTLRReplaceOp:(NSInteger)from ToIndex:(NSInteger)to Text:(NSString*)theText;
85 - (id) initWithIndex:(NSInteger)from ToIndex:(NSInteger)to Text:(NSString *)theText;
132 - (void) insertAfterToken:(id<ANTLRToken>)t Text:(NSString *)theText;
133 - (void) insertAfterIndex:(NSInteger)anIndex Text:(NSString *)theText;
134 - (void) insertAfterProgNam:(NSString *)programName Index:(NSInteger)anIndex Text:(NSString *)theText;
137 - (void) insertBeforeToken:(id<ANTLRToken>)t Text
[all...]

Completed in 787 milliseconds

1234567891011>>