HomeSort by relevance Sort by last modified time
    Searched full:maxchars (Results 1 - 17 of 17) sorted by null

  /external/smack/src/org/jivesoftware/smackx/muc/
DiscussionHistory.java 36 * <li>maxchars -> total number of characters to receive in the history.
44 * Note: Setting maxchars to 0 indicates that the user requests to receive no history.
50 private int maxChars = -1;
61 return maxChars;
98 * @param maxChars the total number of characters to receive in the history.
100 public void setMaxChars(int maxChars) {
101 this.maxChars = maxChars;
142 return maxChars > -1 || maxStanzas > -1 || seconds > -1 || since != null;
159 if (maxChars > -1)
    [all...]
  /external/expat/tests/
chardata.c 44 int maxchars = sizeof(storage->data) / sizeof(storage->data[0]); local
51 if ((len + storage->count) > maxchars) {
52 len = (maxchars - storage->count);
63 int maxchars; local
67 maxchars = sizeof(storage->data) / sizeof(storage->data[0]);
72 if ((len + storage->count) > maxchars) {
73 len = (maxchars - storage->count);
  /external/smack/src/org/jivesoftware/smackx/packet/
MUCInitialPresence.java 116 private int maxChars = -1;
127 return maxChars;
164 * @param maxChars the total number of characters to receive in the history.
166 public void setMaxChars(int maxChars) {
167 this.maxChars = maxChars;
206 buf.append(" maxchars=\"").append(getMaxChars()).append("\"");
  /packages/apps/VideoEditor/src/com/android/videoeditor/
AlertDialogs.java 88 * @param maxChars The maximum number of characters
96 DialogInterface.OnCancelListener cancelListener, int inputType, int maxChars,
113 if (maxChars > 0) {
115 filters[0] = new InputFilter.LengthFilter(maxChars);
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
SendersView.java 208 String messageInfo, int maxChars, ArrayList<SpannableString> styledSenders,
213 format(context, conversationInfo, messageInfo, maxChars, styledSenders,
224 String messageInfo, int maxChars, ArrayList<SpannableString> styledSenders,
230 handlePriority(context, maxChars, messageInfo, conversationInfo, styledSenders,
240 public static void handlePriority(Context context, int maxChars, String messageInfoString,
252 if (numCharsUsed > maxChars) {
253 numCharsToRemovePerWord = numCharsUsed - maxChars;
273 if (length > maxChars && numSendersUsed >= 2) {
ConversationItemView.java     [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/utils/
Utils.java 235 int maxChars, boolean forceAllUnread, boolean forceAllRead, boolean allowDraft) {
252 getSenderSnippet(senderInstructions, senderBuilder, statusBuilder, maxChars,
297 * @param maxChars the number of characters available to display the text
310 int maxChars, CharacterStyle unreadStyle, CharacterStyle readStyle,
410 maxChars -= fixedFragmentLength;
423 if (length > maxChars && numSendersUsed >= 2) {
433 if (numCharsUsed > maxChars) {
434 numCharsToRemovePerWord = (numCharsUsed - maxChars) / numSendersUsed;
    [all...]
  /packages/inputmethods/OpenWnn/libs/libwnnDictionary/
OpenWnnDictionaryImplJni.c 58 static int convertStringToNjChar( JNIEnv *env, NJ_CHAR* dst, jstring srcJ, int maxChars )
67 for( i = o = 0 ; src[ i ] != 0x00 && o < maxChars ; ) {
106 if( !( o < maxChars - 1 ) ) {
136 static int convertNjCharToString( JNIEnv* env, jstring* dstJ, NJ_CHAR* src, int maxChars )
143 for( i = o = 0 ; src[ i ] != 0x0000 && i < maxChars ; ) {
168 if( !( i < maxChars - 1 ) || src_tmp[ 2 ] < 0xdc || src_tmp[ 2 ] > 0xdf ) {
    [all...]
  /external/chromium_org/third_party/protobuf/java/src/test/java/com/google/protobuf/
IsValidUtf8TestUtil.java 323 int maxChars = (int) (decoder.maxCharsPerByte() * numBytes) + 1;
326 int maxBytes = (int) (encoder.maxBytesPerChar() * maxChars) + 1;
  /external/libvpx/libvpx/examples/includes/geshi/geshi/
actionscript.php 100 'MAX_VALUE', 'maxChars', 'maxhscroll', 'maxscroll', 'mbchr', 'mblength', 'mbord', 'mbsubstring', 'menu',
actionscript3.php 182 'maxLevel', 'maxChars', 'max', 'matrixY', 'matrixX', 'matrix',
  /external/chromium_org/third_party/WebKit/Source/web/
WebFrameImpl.cpp 209 static void frameContentAsPlainText(size_t maxChars, Frame* frame, StringBuilder& output)
233 it.appendTextToStringBuilder(output, 0, maxChars - output.length());
234 if (output.length() >= maxChars)
257 // maxChars. This will cause the computation above:
258 // maxChars - output->size()
260 if (output.length() >= maxChars - frameSeparatorLength)
264 frameContentAsPlainText(maxChars, curChild, output);
265 if (output.length() >= maxChars)
    [all...]
WebFrameImpl.h 229 virtual WebString contentAsText(size_t maxChars) const;
  /external/chromium_org/third_party/WebKit/public/web/
WebFrame.h 639 // longer than maxChars, it will be clipped to that length. WARNING:
646 virtual WebString contentAsText(size_t maxChars) const = 0;
  /external/clang/lib/Lex/
LiteralSupport.cpp     [all...]
  /frameworks/base/services/java/com/android/server/
BackupManagerService.java     [all...]
  /cts/tools/dex-tools/dex/
classes0.out.dex     [all...]

Completed in 1415 milliseconds