HomeSort by relevance Sort by last modified time
    Searched full:maxlength (Results 1 - 25 of 445) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/native/opengl/tools/glgen/stubs/gles11/
glGetProgramInfoLog.java 1 // C function void glGetProgramInfoLog( GLuint program, GLsizei maxLength, GLsizei * length,
glGetProgramPipelineInfoLog.java 1 // C function void glGetProgramPipelineInfoLog( GLuint program, GLsizei maxLength, GLsizei * length, GLchar * infoLog);
glGetShaderInfoLog.java 1 // C function void glGetShaderInfoLog( GLuint shader, GLsizei maxLength, GLsizei * length,
glGetProgramInfoLog.cpp 3 /* void glGetProgramInfoLog ( GLuint shader, GLsizei maxLength, GLsizei* length, GLchar* infoLog ) */
glGetProgramPipelineInfoLog.cpp 3 /* void glGetProgramPipelineInfoLog ( GLuint shader, GLsizei maxLength, GLsizei* length, GLchar* infoLog ) */
glGetShaderInfoLog.cpp 3 /* void glGetShaderInfoLog ( GLuint shader, GLsizei maxLength, GLsizei* length, GLchar* infoLog ) */
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowEditText.java 17 private int maxLength = Integer.MAX_VALUE;
27 maxLength = attributeSet.getAttributeIntValue("android", "maxLength", Integer.MAX_VALUE);
33 if ( !TextUtils.isEmpty(str) && str.length() > maxLength) {
34 str = str.subSequence(0, maxLength);
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
EditTextTest.java 32 int maxLength = anyInteger();
33 AttributeSet attrs = attributeSetWithMaxLength(maxLength);
35 String excessiveInput = stringOfLength(maxLength * 2);
39 assertThat(editText.getText().toString(), equalTo(excessiveInput.subSequence(0, maxLength)));
80 private AttributeSet attributeSetWithMaxLength(int maxLength) {
82 when(attrs.getAttributeIntValue(eq("android"), eq("maxLength"), anyInt())).thenReturn(maxLength);
88 when(attrs.getAttributeIntValue("android", "maxLength", Integer.MAX_VALUE)).thenReturn(Integer.MAX_VALUE);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
ntstrsafe.h 40 IN SIZE_T MaxLength,
44 SIZE_T LocalMax = MaxLength;
46 while (MaxLength && (*String != ANSI_NULL))
49 MaxLength--;
52 if (!MaxLength) Status = STATUS_INVALID_PARAMETER;
58 *ReturnLength = LocalMax - MaxLength;
75 IN SIZE_T MaxLength)
79 if (!(Length) || (Length > MaxLength)) Status = STATUS_INVALID_PARAMETER;
104 IN SIZE_T MaxLength,
111 MaxLength);
    [all...]
  /external/chromium_org/components/test/data/json_schema/
complex_schema.json 13 "maxLength": 10,
  /external/conscrypt/src/main/java/org/conscrypt/
OpenSSLBIOSink.java 46 int maxLength = Math.min(available(), (int) byteCount);
47 position += maxLength;
51 return maxLength;
  /external/chromium_org/third_party/icu/source/tools/toolutil/
denseranges.cpp 28 LargestGaps(int32_t max) : maxLength(max<=kCapacity ? max : kCapacity), length(0) {}
35 if(i<maxLength) {
36 // The new gap is now one of the maxLength largest.
39 int32_t j= length<maxLength ? length++ : maxLength-1;
78 int32_t maxLength;
109 int64_t maxLength=(int64_t)maxValue-(int64_t)minValue+1;
110 if(length>=(density*maxLength)/0x100) {
133 // the length of the [minValue..maxValue] range (maxLength).
142 maxLength-=gaps.gapLength(i)
    [all...]
  /external/icu/icu4c/source/tools/toolutil/
denseranges.cpp 28 LargestGaps(int32_t max) : maxLength(max<=kCapacity ? max : kCapacity), length(0) {}
35 if(i<maxLength) {
36 // The new gap is now one of the maxLength largest.
39 int32_t j= length<maxLength ? length++ : maxLength-1;
78 int32_t maxLength;
109 int64_t maxLength=(int64_t)maxValue-(int64_t)minValue+1;
110 if(length>=(density*maxLength)/0x100) {
133 // the length of the [minValue..maxValue] range (maxLength).
142 maxLength-=gaps.gapLength(i)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/editing/
SurroundingText.h 45 SurroundingText(const Range&, unsigned maxLength);
46 SurroundingText(const Position&, unsigned maxLength);
55 void initialize(const Position&, const Position&, unsigned maxLength);
SurroundingText.cpp 42 SurroundingText::SurroundingText(const Range& range, unsigned maxLength)
46 initialize(range.startPosition(), range.endPosition(), maxLength);
49 SurroundingText::SurroundingText(const Position& position, unsigned maxLength)
53 initialize(position, position, maxLength);
56 void SurroundingText::initialize(const Position& startPosition, const Position& endPosition, unsigned maxLength)
60 const unsigned halfMaxLength = maxLength / 2;
74 forwardIterator.advance(maxLength - halfMaxLength);
  /external/chromium_org/third_party/WebKit/PerformanceTests/DOM/
textarea-dom.html 12 <textarea maxlength=2147483647 id="container"></textarea>
textarea-edit.html 12 <textarea maxlength=2147483647 id="container"></textarea>
  /external/chromium_org/third_party/WebKit/PerformanceTests/Parser/
textarea-parsing.html 14 var htmlText = "<textarea maxlength=2147483647>";
  /external/chromium_org/third_party/WebKit/Source/core/html/forms/
BaseTextInputType.cpp 35 int BaseTextInputType::maxLength() const
37 return element().maxLength();
42 int max = element().maxLength();
47 // it is longer than maxLength.
  /external/chromium_org/third_party/WebKit/Source/web/
WebSurroundingText.cpp 40 void WebSurroundingText::initialize(const WebNode& webNode, const WebPoint& nodePoint, size_t maxLength)
46 m_private.reset(new SurroundingText(VisiblePosition(node->renderer()->positionForPoint(static_cast<IntPoint>(nodePoint))).deepEquivalent().parentAnchoredEquivalent(), maxLength));
49 void WebSurroundingText::initialize(const WebRange& webRange, size_t maxLength)
52 m_private.reset(new SurroundingText(*range, maxLength));
  /external/chromium_org/chrome/browser/resources/options/chromeos/
bluetooth_pair_device_overlay.html 9 <input id="bluetooth-passkey" maxlength="6" type="text">
12 <input id="bluetooth-pincode" maxlength="16" type="text">
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/util/
NameDistance.java 43 * @param maxLength byte arrays are truncated if longer than this number
45 public NameDistance(int maxLength) {
46 mMaxLength = maxLength;
48 mMatchFlags1 = new boolean[maxLength];
49 mMatchFlags2 = new boolean[maxLength];
  /external/e2fsprogs/intl/
printf.c 183 size_t maxlength = length; local
187 if (maxlength > 0)
189 if (length < maxlength)
191 memcpy (resultbuf, result, maxlength - 1);
192 resultbuf[maxlength - 1] = '\0';
337 size_t maxlength = length; local
341 if (maxlength > 0)
343 if (length < maxlength)
345 memcpy (resultbuf, result, (maxlength - 1) * sizeof (wchar_t));
346 resultbuf[maxlength - 1] = 0
    [all...]
  /external/guava/guava/src/com/google/common/hash/
HashCode.java 60 * @param maxLength the maximum number of bytes to write
64 public int writeBytesTo(byte[] dest, int offset, int maxLength) {
66 maxLength = Ints.min(maxLength, hash.length);
67 Preconditions.checkPositionIndexes(offset, offset + maxLength, dest.length);
68 System.arraycopy(hash, 0, dest, offset, maxLength);
69 return maxLength;
  /external/chromium_org/chrome/browser/resources/print_preview/settings/
copies_settings.html 7 <input class="copies" type="text" value="1" maxlength="3"

Completed in 1753 milliseconds

1 2 3 4 5 6 7 8 91011>>