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

  /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);
  /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);
  /external/webkit/Source/WebCore/dom/
Text.cpp 305 PassRefPtr<Text> Text::createWithLengthLimit(Document* document, const String& data, unsigned start, unsigned maxChars)
309 if (!start && dataLength <= maxChars)
313 result->parserAppendData(data.characters() + start, dataLength - start, maxChars);
  /external/webkit/Source/WebKit/chromium/src/
WebFrameImpl.cpp 190 // the text of each frame in turn to the |output| up to |maxChars| length.
193 static void frameContentAsPlainText(size_t maxChars, Frame* frame,
241 std::min(static_cast<size_t>(it.length()), maxChars - output->size());
243 if (output->size() >= maxChars)
266 // maxChars. This will cause the computation above:
267 // maxChars - output->size()
269 if (output->size() >= maxChars - frameSeparatorLen)
273 frameContentAsPlainText(maxChars, curChild, output);
274 if (output->size() >= maxChars)
    [all...]
WebFrameImpl.h 195 virtual WebString contentAsText(size_t maxChars) const;
  /external/qemu/distrib/sdl-1.2.12/src/joystick/os2/
SDL_sysjoystick.c 98 int joyGetData(char *joyenv, char *name, char stopchar, size_t maxchars);
641 /* the stopchar or maxchars is reached. The result is placed in name. */
643 int joyGetData(char *joyenv, char *name, char stopchar, size_t maxchars)
651 if (nameptr<(name+(maxchars-1)))
  /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/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/clang/lib/Lex/
LiteralSupport.cpp     [all...]
  /external/webkit/Source/WebKit/chromium/public/
WebFrame.h 552 // longer than maxChars, it will be clipped to that length. WARNING:
559 virtual WebString contentAsText(size_t maxChars) const = 0;
  /frameworks/base/services/java/com/android/server/
BackupManagerService.java     [all...]
  /cts/tools/dex-tools/dex/
classes0.out.dex     [all...]

Completed in 440 milliseconds