Home
last modified time | relevance | path

Searched refs:TEXT_MAX (Results 1 – 2 of 2) sorted by relevance

/development/samples/ApiDemos/src/com/example/android/mmslib/pdu/
DPduParser.java38 private static final int TEXT_MAX = 127; field in PduParser
247 if ((headerField >= TEXT_MIN) && (headerField <= TEXT_MAX)) { in parseHeaders()
1390 if (first > TEXT_MAX) { in parseContentTypeParams()
1455 if (((firstValue > TEXT_MIN) && (firstValue < TEXT_MAX)) || in parseContentTypeParams()
1550 if ((first >= TEXT_MIN) && (first <= TEXT_MAX)) { in parseContentType()
1552 } else if (first > TEXT_MAX) { in parseContentType()
1576 } else if (cur <= TEXT_MAX) { in parseContentType()
1624 if (header > TEXT_MAX) { in parsePartHeaders()
1721 } else if ((header >= TEXT_MIN) && (header <= TEXT_MAX)) { in parsePartHeaders()
DPduComposer.java76 static private final int TEXT_MAX = 127; field in PduComposer
291 if (((text[0])&0xff) > TEXT_MAX) { // No need to check for <= 255 in appendTextString()
292 append(TEXT_MAX); in appendTextString()