HomeSort by relevance Sort by last modified time
    Searched defs:TEXT (Results 1 - 25 of 35) sorted by null

1 2

  /dalvik/libcore/xml/src/main/java/org/apache/xml/serializer/
Method.java 30 * <li>TEXT
71 * The output method type for text documents: <tt>text</tt>.
73 public static final String TEXT = "text";
  /frameworks/base/services/java/com/android/server/status/
IconData.java 23 * Indicates ths item represents a piece of text.
25 public static final int TEXT = 1;
33 * The type of this item. One of TEXT, ICON, or LEVEL_ICON.
64 * The text associated with the icon. Valid if this is a TEXT type.
66 public CharSequence text; field in class:IconData
83 public static IconData makeText(String slot, CharSequence text) {
85 data.type = TEXT;
87 data.text = text;
    [all...]
  /build/tools/droiddoc/src/
AttrTagInfo.java 28 private static final Pattern TEXT = Pattern.compile("(\\S+)\\s*(.*)", Pattern.DOTALL);
45 AttrTagInfo(String name, String kind, String text, ContainerInfo base,
48 super(name, kind, text, position);
51 parse(text, base, position);
54 void parse(String text, ContainerInfo base, SourcePositionInfo position) {
57 m = TEXT.matcher(text);
59 Errors.error(Errors.BAD_ATTR_TAG, position, "Bad @attr tag: " + text);
SampleTagInfo.java 28 * SampleTagInfo copies text from a given file into the javadoc comment.
30 * The @include tag copies the text verbatim from the given file.
32 * The @sample tag copies the text from the given file, stripping leading and
33 * trailing whitespace, and reducing the indent level of the text to the indent
54 static final Pattern TEXT = Pattern.compile(
72 SampleTagInfo(String name, String kind, String text, ContainerInfo base,
75 super(name, kind, text, position);
78 Matcher m = TEXT.matcher(text);
81 + text);
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
PaintFlagsDrawFilterTest.java 39 private static final String TEXT = "Test";
70 mTextWidth = p.measureText(TEXT);
75 c.drawText(TEXT, TEXT_X, TEXT_Y, p);
114 // underline is roughly the same length at the text (5% tolerance)
116 // underline is under the text or at least at the bottom of it
  /frameworks/base/core/tests/coretests/src/android/view/accessibility/
RecycleAccessibilityEventTest.java 29 private static final String TEXT = "Some stuff";
50 first.getText().add(TEXT);
  /dalvik/libcore/text/src/test/java/org/apache/harmony/text/tests/java/text/
BreakIteratorTest.java 18 package org.apache.harmony.text.tests.java.text;
27 import java.text.BreakIterator;
28 import java.text.CharacterIterator;
29 import java.text.StringCharacterIterator;
35 private static final String TEXT = "a\u0308abc def, gh-12i?jkl.mno?";
126 iterator.setText(TEXT);
131 * @tests java.text.BreakIterator#BreakIterator() Test of method
132 * java.text.BreakIterator#BreakIterator().
155 iterator.setText(TEXT);
    [all...]
  /build/tools/atree/
files.cpp 65 enum { WHITE, TEXT } state = WHITE;
76 state = TEXT;
79 case TEXT:
90 if (state == TEXT) {
  /cts/tests/tests/text/src/android/text/cts/
DynamicLayoutTest.java 17 package android.text.cts;
21 import android.text.DynamicLayout;
22 import android.text.Layout;
23 import android.text.TextPaint;
24 import android.text.TextUtils;
38 protected static final String[] TEXT = {"CharSequence\n", "Char\tSequence\n", "CharSequence"};
39 protected static final CharSequence MULTLINE_CHAR_SEQUENCE = TEXT[0] + TEXT[1] + TEXT[2];
71 android.text.TextPaint.class, int.class, android.text.Layout.Alignment.class
    [all...]
  /dalvik/libcore/xml/src/main/java/org/apache/xml/dtm/ref/
ExpandedNameTable.java 54 public static final int TEXT = ((int)DTM.TEXT_NODE) ;
  /dalvik/libcore/xml/src/main/java/org/kxml2/kdom/
Node.java 33 public static final int TEXT = 4;
107 given index is a text node, null is returned */
152 /** returns the text content if the element has text-only
164 throw new RuntimeException("not text-only content!");
171 /** Returns the text node with the given index or null if the node
172 with the given index is not a text node. */
179 types are ELEMENT, TEXT, COMMENT, and PROCESSING_INSTRUCTION */
216 return t == TEXT || t == IGNORABLE_WHITESPACE || t == CDSECT;
259 type == XmlPullParser.ENTITY_REF ? TEXT : type
    [all...]
  /dalvik/libcore/xml/src/main/java/org/xmlpull/v1/
XmlPullParser.java 47 * <dt><a href="#TEXT">TEXT</a><dd> Text content was read;
48 * the text content can be retrieved using the getText() method.
101 * } else if(eventType == XmlPullParser.TEXT) {
102 * System.out.println("Text "+xpp.<a href="#getText()">getText()</a>);
114 * Text Hello World!
133 * @see #TEXT
217 * events into one TEXT event, skipping IGNORABLE_WHITESPACE,
220 * text when any other event is observed
    [all...]
  /external/icu4c/test/cintltst/
usrchdat.c 27 const char *text; member in struct:SearchData
122 /* to see that it doesn't go into an infinite loop if the start of text
135 /* totally ignorable text */
185 static const SearchData TEXT[] = {
337 * it's at the start of the text.
462 /* to see that it doesn't go into an infinite loop if the start of text
475 /* totally ignorable text */
525 /* first one matches only because it's at the start of the text */
  /external/webkit/WebKitTools/Scripts/webkitpy/style/
checker.py 45 from processors.text import TextProcessor
589 TEXT = 3
647 return FileType.TEXT
658 elif file_type == FileType.TEXT:
662 "are %(NONE)s, %(CPP)s, and %(TEXT)s."
666 "TEXT": FileType.TEXT})
  /frameworks/base/core/tests/coretests/src/android/accessibilityservice/
AccessibilityTestService.java 30 * This class text the accessibility framework end to end.
44 private static final String TEXT = "Some stuff";
98 assert(TEXT.equals(event.getText().get(0)));
136 event.getText().add(TEXT);
  /frameworks/base/tools/localize/
XMLHandler.h 63 TEXT = 1
68 static XMLNode* NewText(const SourcePos& pos, const string& text, int pretty);
99 // text
100 inline string Text() const { return m_text; }
121 // text
142 virtual int OnText(const SourcePos& pos, const string& text);
143 virtual int OnComment(const SourcePos& pos, const string& text);
147 static bool ParseString(const string& filename, const string& text, XMLHandler* handler);
158 virtual int OnText(const SourcePos& pos, const string& text);
177 virtual int OnText(const SourcePos& pos, const string& text);
    [all...]
  /hardware/ti/omap3/dspbridge/inc/
dbtype.h 194 #define TEXT(x) x
  /hardware/ti/omap3/dspbridge/libbridge/inc/
dbtype.h 194 #define TEXT(x) x
  /packages/apps/Email/tests/src/com/android/email/mail/transport/
Rfc822OutputTests.java 54 private static final String TEXT = "Here is some new text.";
116 msg.mText = TEXT;
124 assertEquals(TEXT + REPLY_BODY_SHORT, body);
131 assertEquals(TEXT + REPLY_BODY_SHORT, body);
135 // Create a simple text message
137 msg.mText = TEXT;
156 assertEquals("text/plain", mimeMessage.getMimeType());
163 msg.mText = TEXT;
170 att.mMimeType = "text/calendar"
    [all...]
  /packages/apps/Stk/src/com/android/stk/
StkDialogActivity.java 34 * AlretDialog used for DISPLAY TEXT commands.
54 private static final String TEXT = "text";
88 mMessageView.setText(mTextMsg.text);
144 outState.putParcelable(TEXT, mTextMsg);
151 mTextMsg = savedInstanceState.getParcelable(TEXT);
169 mTextMsg = intent.getParcelableExtra("TEXT");
  /external/webkit/WebCore/html/
HTMLInputElement.h 44 TEXT = 0, // TEXT must be 0.
  /packages/apps/Email/src/com/android/exchange/adapter/
Parser.java 46 public static final int TEXT = 4;
102 // The value read, as a String. Only one of text or num will be valid, depending on whether the
104 public String text; field in class:Parser
213 String val = text;
347 * TEXT (the value of a tag)
349 * @param asInt whether a TEXT value should be parsed as a String or an int.
368 text = null;
403 type = TEXT;
407 text = readInlineString();
411 log(name + ": " + (asInt ? Integer.toString(num) : text));
    [all...]
  /external/e2fsprogs/ext2ed/
ext2ed.h 75 #define TEXT 2
277 void detailed_help (char *text);
303 char *complete_command (char *text,int state);
372 #define TEXT 2
  /external/opencore/fileformats/avi/parser/include/
pv_avifile_typedefs.h 158 TEXT,
  /external/tinyxml/
tinyxml.h 144 Text (leaf)
265 /* Reads text. Returns a pointer past the given end tag.
269 TIXML_STRING* text, // the string read
271 const char* endTag, // what ends this text
311 // Not valid text.
405 the text needs to define an element or junk will result. This is
430 TEXT,
442 Comment: the comment text
444 Text: the text strin
    [all...]

Completed in 825 milliseconds

1 2