HomeSort by relevance Sort by last modified time
    Searched refs:TEXT (Results 76 - 100 of 333) sorted by null

1 2 34 5 6 7 8 91011>>

  /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.
99 * } else if(eventType == XmlPullParser.TEXT) {
100 * System.out.println("Text "+xpp.<a href="#getText()">getText()</a>);
113 * Text Hello World!
133 * @see #TEXT
217 * events into one TEXT event, skipping IGNORABLE_WHITESPACE,
220 * text when any other event is observed
    [all...]
  /packages/apps/Email/src/com/android/email/mail/store/imap/
ImapConstants.java 81 public static final String TEXT = "TEXT";
  /external/webkit/Source/WebCore/platform/graphics/ca/win/
CACFLayerTreeHost.cpp 75 HMODULE library = LoadLibrary(TEXT("d3d9.dll"));
83 library = LoadLibrary(TEXT("QuartzCore_debug.dll"));
85 library = LoadLibrary(TEXT("QuartzCore.dll"));
  /ndk/build/tools/
build-host-python.sh 216 local ARGS TEXT
294 TEXT="$(bh_host_text) python-$BH_HOST_CONFIG:"
300 dump "$TEXT Building"
  /build/tools/atree/
files.cpp 65 enum { WHITE, TEXT, IN_QUOTE } state = WHITE;
76 state = (*p == '"') ? IN_QUOTE : TEXT;
81 state = TEXT;
84 // otherwise fall-through to TEXT case
85 case TEXT:
102 if (state == TEXT) {
  /external/kernel-headers/original/asm-mips/
asm.h 104 TEXT(msg)
116 TEXT(string)
121 #define TEXT(msg) \
127 * Build text tables
130 .pushsection .text; \
  /external/libpng/contrib/visupng/
PngFile.c 50 static TCHAR szFilter[] = TEXT ("PNG Files (*.PNG)\0*.png\0")
51 TEXT ("All Files (*.*)\0*.*\0\0");
69 ofn.lpstrDefExt = TEXT ("png");
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
BridgeXmlBlockParser.java 331 case TEXT:
332 return "TEXT";
364 + ": parser must be on START_TAG to read next text", this,
368 if (eventType == TEXT) {
374 + ": event TEXT it must be immediately followed by END_TAG",
382 + ": parser must be on START_TAG or TEXT to read text",
390 if (eventType == TEXT && isWhitespace()) { // skip whitespace
  /external/chromium/chrome/browser/ui/views/status_icons/
status_tray_win.cc 28 taskbar_created_message_ = RegisterWindowMessage(TEXT("TaskbarCreated"));
  /external/icu4c/i18n/
tzfmt.cpp 112 TEXT = 0,
120 static GMTOffsetField* createText(const UnicodeString& text, UErrorCode& status);
138 : fText(NULL), fType(TEXT), fWidth(0) {
148 GMTOffsetField::createText(const UnicodeString& text, UErrorCode& status) {
158 int32_t len = text.length();
165 u_strncpy(result->fText, text.getBuffer(), len);
167 result->fType = TEXT;
174 U_ASSERT(type != TEXT);
213 return TEXT;
632 TimeZoneFormat::parse(UTimeZoneFormatStyle style, const UnicodeString& text, ParsePosition& pos
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/audio/windx5/
SDL_dx5audio.c 58 DSoundDLL = LoadLibrary(TEXT("DSOUND.DLL"));
90 if (!GetProcAddress(DSoundDLL, TEXT("DirectSoundCaptureCreate")))
116 DSoundDLL = LoadLibrary(TEXT("DSOUND.DLL"));
119 TEXT("DirectSoundCreate"));
  /external/skia/include/xml/
SkXMLParser.h 72 virtual bool onText(const char text[], int len);
79 virtual bool text(const char text[], int len);
103 TEXT,
  /external/skia/legacy/include/xml/
SkXMLParser.h 72 virtual bool onText(const char text[], int len);
79 virtual bool text(const char text[], int len);
103 TEXT,
  /external/smack/asmack-master/static-src/custom/org/jivesoftware/smackx/pubsub/provider/
ItemProvider.java 78 } else if (parser.getEventType() == XmlPullParser.TEXT) {
  /external/smack/src/org/jivesoftware/smackx/pubsub/provider/
ItemProvider.java 78 } else if (parser.getEventType() == XmlPullParser.TEXT) {
  /external/webkit/Source/WebKit2/WebProcess/
WebKitMain.cpp 32 #include <wtf/text/CString.h>
129 HMODULE lib = LoadLibrary(TEXT("kernel32.dll"));
  /external/webkit/Tools/Scripts/webkitpy/style/
checker.py 43 from checkers.text import TextChecker
427 TEXT = 4
491 return FileType.TEXT
513 elif file_type == FileType.TEXT:
521 "are %(NONE)s, %(CPP)s, and %(TEXT)s."
525 "TEXT": FileType.TEXT})
647 """Process lines of text read from a file.
650 lines: A list of lines of text to process.
  /external/wpa_supplicant_8/wpa_supplicant/
win_if_list.c 53 h = CreateFile(TEXT("\\\\.\\\\Ndisuio"),
  /frameworks/base/core/java/android/app/
AliasActivity.java 108 if (type == XmlPullParser.END_TAG || type == XmlPullParser.TEXT) {
  /frameworks/base/sax/tests/saxtests/src/android/sax/
ExpatPerformanceTest.java 118 case XmlPullParser.TEXT:
  /frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/
AbstractResult.java 40 TEXT {
171 * <p> Some tests will not provide data (like text tests)
179 * Returns result's text data. It can be null
183 * results text data
  /packages/apps/Gallery2/tests/src/com/android/gallery3d/exif/
ExifXmlReader.java 76 if (parser.next() == XmlPullParser.TEXT) {
  /packages/apps/Mms/src/com/android/mms/data/
WorkingMessage.java 43 import android.text.TextUtils;
118 public static final int TEXT = 0;
130 // Text of the message.
208 mAttachmentType = TEXT;
310 // first - non-empty String representing the text of an SMS draft
311 // second - non-null String representing the text of an MMS subject
356 * Sets the text of the message to the specified CharSequence.
363 * Returns the current message text.
370 * @return True if the message has any text. A message with just whitespace is not considered
371 * to have text
724 TextModel text; local
    [all...]
  /bionic/libc/kernel/arch-mips/asm/
asm.h 51 #define PANIC(msg) .set push; .set reorder; PTR_LA a0, 8f; jal panic; 9: b 9b; .set pop; TEXT(msg)
54 #define TEXT(msg) .pushsection .data; 8: .asciiz msg; .popsection;
55 #define TTABLE(string) .pushsection .text; .word 1f; .popsection .pushsection .data; 1: .asciiz string; .popsection
  /cts/tests/tests/widget/src/android/widget/cts/
TableLayout_LayoutParamsTest.java 155 if (type == XmlPullParser.END_TAG || type == XmlPullParser.TEXT) {
163 if (type == XmlPullParser.END_TAG || type == XmlPullParser.TEXT) {

Completed in 502 milliseconds

1 2 34 5 6 7 8 91011>>