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

1234567891011>>

/external/webkit/Source/WebCore/dom/
H A DCDATASection.idl22 interface CDATASection : Text {
H A DText.idl22 interface Text : CharacterData {
26 Text splitText(in [IsIndex] unsigned long offset)
31 Text replaceWholeText(in DOMString content)
H A DText.cpp23 #include "Text.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)
87 t = static_cast<const Text*>(
[all...]
H A DText.h30 class Text : public CharacterData { class in namespace:WebCore
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) function in class:WebCore::Text
61 virtual PassRefPtr<Text> virtualCreate(const String&);
H A DCDATASection.h26 #include "Text.h"
30 class CDATASection : public Text {
41 virtual PassRefPtr<Text> virtualCreate(const String&);
/external/webkit/Source/WebCore/editing/
H A DJoinTextNodesCommand.h33 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;
H A DSplitTextNodeContainingElementCommand.h35 static PassRefPtr<SplitTextNodeContainingElementCommand> create(PassRefPtr<Text> node, int offset)
41 SplitTextNodeContainingElementCommand(PassRefPtr<Text>, int offset);
45 RefPtr<Text> m_text;
H A DSplitTextNodeCommand.h33 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;
H A DDeleteFromTextNodeCommand.h33 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;
H A DInsertIntoTextNodeCommand.h33 class Text;
37 static PassRefPtr<InsertIntoTextNodeCommand> create(PassRefPtr<Text> node, unsigned offset, const String& text)
43 InsertIntoTextNodeCommand(PassRefPtr<Text> node, unsigned offset, const String& text);
48 RefPtr<Text> m_node;
H A DHTMLInterchange.h33 class Text;
43 String convertHTMLTextToInterchangeFormat(const String&, const Text*);
/external/markdown/tests/misc/
H A Dheaders.txt13 Text
/external/webkit/Source/WebCore/bindings/js/
H A DJSTextCustom.cpp29 #include "Text.h"
35 JSValue toJSNewlyCreated(ExecState* exec, JSDOMGlobalObject* globalObject, Text* text)
40 return CREATE_DOM_NODE_WRAPPER(exec, globalObject, Text, 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/lib/MC/
H A DMCAtom.cpp24 Text.push_back(std::make_pair(Address, I));
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());
85 std::vector<std::pair<uint64_t, MCInst> >::iterator I = Text.begin();
87 while (I != Text
[all...]
/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/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.cpp82 CodeCompletionString::Chunk::Chunk(ChunkKind Kind, const char *Text) argument
83 : Kind(Kind), Text("")
92 this->Text = Text;
99 this->Text = "(";
103 this->Text = ")";
107 this->Text = "[";
111 this->Text = "]";
115 this->Text = "{";
119 this->Text
157 CreateText(const char *Text) argument
347 AddTypedTextChunk(const char *Text) argument
351 AddTextChunk(const char *Text) argument
363 AddInformativeChunk(const char *Text) argument
376 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...]
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/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...]
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/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...]
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRTokenRewriteStream.h54 + (ANTLRRewriteOperation *) newANTLRRewriteOperation:(NSInteger)anIndex 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 866 milliseconds

1234567891011>>