HomeSort by relevance Sort by last modified time
    Searched full:maxlength (Results 51 - 75 of 370) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLTextAreaElement.h 49 virtual int maxLength() const;
73 static String sanitizeUserInputValue(const String&, unsigned maxLength);
HTMLTextAreaElement.idl 28 [RaisesException=Setter] attribute long maxLength;
  /external/chromium_org/third_party/WebKit/public/web/
WebInputElement.h 73 BLINK_EXPORT int maxLength() const;
105 // Exposes the default value of the maxLength attribute.
  /packages/apps/Settings/res/layout/
wifi_ap_dialog.xml 51 android:maxLength="32" />
85 android:maxLength="63"
  /packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/
patricia_trie_reading_utils.h 38 const int maxLength, int *const outBuffer, int *const pos);
42 const int maxLength, int *const pos);
  /external/chromium_org/third_party/WebKit/Source/core/editing/
SurroundingText.h 44 SurroundingText(const VisiblePosition&, unsigned maxLength);
  /external/chromium_org/third_party/WebKit/Source/core/html/forms/
BaseTextInputType.h 39 // They support maxlength, selection functions, and so on.
  /external/chromium_org/tools/grit/grit/testdata/
password.html 26 <td align=middle>Password required:&nbsp;&nbsp;<input maxLength=80 size=30 type=password name=pw value="">
  /packages/apps/Mms/res/layout/
edit_slide_duration.xml 48 android:maxLength="4"
  /packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/shortcut/
shortcut_list_reading_utils.h 57 static int readShortcutTarget(const uint8_t *const dictRoot, const int maxLength,
  /packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/utils/
byte_array_utils.h 158 const int maxLength, int *const outBuffer, int *const pos) {
161 while (NOT_A_CODE_POINT != codePoint && length < maxLength) {
170 const uint8_t *const buffer, const int maxLength, int *const pos) {
173 while (NOT_A_CODE_POINT != codePoint && length < maxLength) {
  /external/chromium/chrome/browser/chromeos/
external_metrics_unittest.cc 22 #define MAXLENGTH ExternalMetrics::kMetricsMessageMaxLength
97 char b[MAXLENGTH + 100];
98 for (i = 0; i < MAXLENGTH + 99; i++) {
  /external/chromium_org/chrome/browser/chromeos/
external_metrics_unittest.cc 22 #define MAXLENGTH ExternalMetrics::kMetricsMessageMaxLength
98 char b[MAXLENGTH + 100];
99 for (i = 0; i < MAXLENGTH + 99; i++) {
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InjectedScriptCanvasModule.cpp 135 void InjectedScriptCanvasModule::traceLog(ErrorString* errorString, const TraceLogId& traceLogId, const int* startOffset, const int* maxLength, RefPtr<TraceLog>* traceLog)
141 if (maxLength)
142 function.appendArgument(*maxLength);
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
Linkifier.js 129 * @param {number=} maxLength
131 WebInspector.Linkifier.DefaultFormatter = function(maxLength)
133 this._maxLength = maxLength;
  /external/icu4c/common/
dictionarydata.h 71 virtual int32_t matches(UText *text, int32_t maxLength, int32_t *lengths, int32_t &count,
84 virtual int32_t matches(UText *text, int32_t maxLength, int32_t *lengths, int32_t &count,
101 virtual int32_t matches(UText *text, int32_t maxLength, int32_t *lengths, int32_t &count,
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/spellcheck/
AndroidSpellCheckerService.java 226 public SuggestionsGatherer newSuggestionsGatherer(final String text, int maxLength) {
227 return new SuggestionsGatherer(text, mRecommendedThreshold, maxLength);
255 final int maxLength) {
258 mMaxLength = maxLength;
259 mSuggestions = CollectionUtils.newArrayList(maxLength + 1);
274 // If the maxLength is 0 (should never be less, but if it is, it's treated as 0)
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
shaderapi.c 138 * Copy string from <src> to <dst>, up to maxLength characters, returning
141 * \param maxLength max chars to copy
146 _mesa_copy_string(GLchar *dst, GLsizei maxLength,
150 for (len = 0; len < maxLength - 1 && src && src[len]; len++)
152 if (maxLength > 0)
675 get_shader_source(struct gl_context *ctx, GLuint shader, GLsizei maxLength,
683 _mesa_copy_string(sourceOut, maxLength, length, sh->Source);
1152 _mesa_GetInfoLogARB(GLhandleARB object, GLsizei maxLength, GLsizei * length,
1157 get_program_info_log(ctx, object, maxLength, length, infoLog);
1160 get_shader_info_log(ctx, object, maxLength, length, infoLog)
    [all...]
  /external/mesa3d/src/mesa/main/
shaderapi.c 138 * Copy string from <src> to <dst>, up to maxLength characters, returning
141 * \param maxLength max chars to copy
146 _mesa_copy_string(GLchar *dst, GLsizei maxLength,
150 for (len = 0; len < maxLength - 1 && src && src[len]; len++)
152 if (maxLength > 0)
675 get_shader_source(struct gl_context *ctx, GLuint shader, GLsizei maxLength,
683 _mesa_copy_string(sourceOut, maxLength, length, sh->Source);
1152 _mesa_GetInfoLogARB(GLhandleARB object, GLsizei maxLength, GLsizei * length,
1157 get_program_info_log(ctx, object, maxLength, length, infoLog);
1160 get_shader_info_log(ctx, object, maxLength, length, infoLog)
    [all...]
  /frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/common/
BitmapUtils.java 140 Bitmap bitmap, int maxLength, boolean recycle) {
144 (float) maxLength / srcWidth, (float) maxLength / srcHeight);
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
BitmapUtils.java 140 Bitmap bitmap, int maxLength, boolean recycle) {
144 (float) maxLength / srcWidth, (float) maxLength / srcHeight);
  /packages/apps/Launcher3/WallpaperPicker/src/com/android/gallery3d/common/
BitmapUtils.java 140 Bitmap bitmap, int maxLength, boolean recycle) {
144 (float) maxLength / srcWidth, (float) maxLength / srcHeight);
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
ShortName.java 199 int minLength, int maxLength) {
208 if (str.length() > maxLength)
210 " has more than " + maxLength +
  /dalvik/dexgen/src/com/android/dexgen/rop/cst/
CstUtf8.java 313 * @param maxLength {@code >= 5;} the maximum length of the string to return
316 public String toQuoted(int maxLength) {
321 if (length <= (maxLength - 2)) {
324 string = string.substring(0, maxLength - 5);
  /dalvik/dx/src/com/android/dx/rop/cst/
CstString.java 313 * @param maxLength {@code >= 5;} the maximum length of the string to return
316 public String toQuoted(int maxLength) {
321 if (length <= (maxLength - 2)) {
324 string = string.substring(0, maxLength - 5);

Completed in 1222 milliseconds

1 23 4 5 6 7 8 91011>>