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

1 2 3 4 5 6 7 8 91011>>

  /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/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/markdown/tests/misc/
headers.txt 13 Text
15 Some other text
  /external/llvm/lib/Support/
Locale.cpp 9 int columnWidth(StringRef Text) {
11 return Text.size();
13 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);
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/sparc/
v9branch2.s 0 # Text for relocation overflow diagnostic
2 .text
v9branch3.s 0 # Text for relocation overflow diagnostic
2 .text
v9branch4.s 0 # Text for relocation overflow diagnostic
2 .text
v9branch5.s 0 # Text for relocation overflow diagnostic
2 .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/clang/lib/Sema/
CodeCompleteConsumer.cpp 81 CodeCompletionString::Chunk::Chunk(ChunkKind Kind, const char *Text)
82 : Kind(Kind), Text("")
91 this->Text = Text;
95 llvm_unreachable("Optional strings cannot be created from text");
98 this->Text = "(";
102 this->Text = ")";
106 this->Text = "[";
110 this->Text = "]";
114 this->Text = "{"
    [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();
textsplittextfour.java 31 * The "splitText(offset)" method returns the new Text node.
35 * The method should return the new Text node. The offset
69 Text textNode;
70 Text splitNode;
75 textNode = (Text) addressNode.getFirstChild();
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
70 Text textNode;
71 Text splitNode;
77 textNode = (Text) nameNode.getFirstChild();
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
71 Text textNode;
72 Text splitNode;
77 textNode = (Text) nameNode.getFirstChild();
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
70 Text textNode;
71 Text splitNode;
76 textNode = (Text) nameNode.getFirstChild();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/export/
ExportFieldsPart.java 22 import org.eclipse.swt.widgets.Text;
46 Text packageField = createLabelAndText(table, toolkit,
51 Text projectsField = createLabelAndText(table, toolkit,
56 Text versionCodeField = createLabelAndText(table, toolkit,
61 Text keyStoreField = createLabelAndText(table, toolkit,
66 Text keyAliasField = createLabelAndText(table, toolkit,
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRTokenRewriteStream.h 47 NSString *text; variable
52 @property (retain, getter=getText, setter=setText:) NSString *text; variable
54 + (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
    [all...]

Completed in 1896 milliseconds

1 2 3 4 5 6 7 8 91011>>