HomeSort by relevance Sort by last modified time
    Searched full:maxlength (Results 1 - 25 of 732) 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 ) */
  /external/libxml2/test/relaxng/
tutor5_5.rng 3 <param name="maxLength">127</param>
  /external/v8/src/js/
harmony-string-padding.js 17 function StringPad(thisString, maxLength, fillString) {
18 maxLength = TO_LENGTH(maxLength);
21 if (maxLength <= stringLength) return "";
33 var fillLength = maxLength - stringLength;
52 function StringPadStart(maxLength, fillString) {
56 return StringPad(thisString, maxLength, fillString) + thisString;
60 function StringPadEnd(maxLength, fillString) {
64 return thisString + StringPad(thisString, maxLength, fillString);
  /external/robolectric/v1/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);
  /cts/tests/autofillservice/res/layout/
grid_activity.xml 34 <TextView android:text="l1c1"/><EditText android:maxLength="6" android:id="@+id/l1c1" />
35 <TextView android:text="l1c2"/><EditText android:maxLength="6" android:id="@+id/l1c2" />
37 <TextView android:text="l2c1"/><EditText android:maxLength="6" android:id="@+id/l2c1" />
38 <TextView android:text="l2c2"/><EditText android:maxLength="6" android:id="@+id/l2c2" />
40 <TextView android:text="l3c1"/><EditText android:maxLength="6" android:id="@+id/l3c1" />
41 <TextView android:text="l3c2"/><EditText android:maxLength="6" android:id="@+id/l3c2" />
43 <TextView android:text="l4c1"/><EditText android:maxLength="6" android:id="@+id/l4c1" />
44 <TextView android:text="l4c2"/><EditText android:maxLength="6" android:id="@+id/l4c2" />
  /external/robolectric/v1/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/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DictionaryMatcher.java 23 * @param maxLength The maximum number of code units to match.
30 public abstract int matches(CharacterIterator text, int maxLength, int[] lengths,
33 public int matches(CharacterIterator text, int maxLength, int[] lengths,
35 return matches(text, maxLength, lengths, count, limit, null);
  /external/libxml2/test/schemas/
hexbinary_1.xml 10 <!-- minLength and maxLength -->
hexbinary_0.xml 13 <!-- minLength and maxLength -->
import0_0.imp 9 <xs:maxLength value="2"/>
src-attribute4_0.xsd 10 <maxLength value="20"/>
extension1_0.xsd 5 <xs:maxLength value="255"/>
import2_0.xsd 11 <xsd:maxLength value="10"/>
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowEditTextTest.java 26 .addAttribute(android.R.attr.maxLength, "5")
46 int maxLength = anyInteger();
48 .addAttribute(android.R.attr.maxLength, maxLength + "")
52 String excessiveInput = stringOfLength(maxLength * 2);
56 assertThat((CharSequence) editText.getText().toString()).isEqualTo(excessiveInput.subSequence(0, maxLength));
  /external/icu/android_icu4j/src/main/java/android/icu/text/
DictionaryMatcher.java 24 * @param maxLength The maximum number of code units to match.
31 public abstract int matches(CharacterIterator text, int maxLength, int[] lengths,
34 public int matches(CharacterIterator text, int maxLength, int[] lengths,
36 return matches(text, maxLength, lengths, count, limit, null);
  /hardware/interfaces/tv/cec/1.0/
Android.bp 26 "MaxLength",
  /external/conscrypt/common/src/main/java/org/conscrypt/
OpenSSLBIOSink.java 49 int maxLength = Math.min(available(), (int) byteCount);
50 position += maxLength;
54 return maxLength;
  /external/icu/icu4c/source/tools/toolutil/
denseranges.cpp 30 LargestGaps(int32_t max) : maxLength(max<=kCapacity ? max : kCapacity), length(0) {}
37 if(i<maxLength) {
38 // The new gap is now one of the maxLength largest.
41 int32_t j= length<maxLength ? length++ : maxLength-1;
80 int32_t maxLength;
111 int64_t maxLength=(int64_t)maxValue-(int64_t)minValue+1;
112 if(length>=(density*maxLength)/0x100) {
135 // the length of the [minValue..maxValue] range (maxLength).
144 maxLength-=gaps.gapLength(i)
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Compatibility/FrameworkHiiOnUefiHiiThunk/
SetupBrowser.c 528 UINTN MaxLength;
549 MaxLength = StrLen (FirstString);
553 MaxLength = MAX (MaxLength, StrLen (String));
570 // if (MaxLength != MaximumStringSize) {
601 // Limit MaxLength to width of the screen minus 2 columns for the box itself
603 MaxLength = MIN (MaxLength, Columns - 2);
609 Column = (Columns - (MaxLength + 2)) / 2;
614 Line = AllocateZeroPool ((MaxLength + 3) * sizeof (CHAR16));
    [all...]
  /device/linaro/bootloader/edk2/IntelFrameworkPkg/Library/FrameworkUefiLib/
Console.c 326 UINTN MaxLength;
337 MaxLength = 0;
340 MaxLength = MAX (MaxLength, StrLen (String));
353 ASSERT (MaxLength != 0);
382 // Limit MaxLength to width of the screen minus 2 columns for the box itself
384 MaxLength = MIN (MaxLength, Columns - 2);
390 Column = (Columns - (MaxLength + 2)) / 2;
395 Line = AllocateZeroPool ((MaxLength + 3) * sizeof (CHAR16));
    [all...]

Completed in 911 milliseconds

1 2 3 4 5 6 7 8 91011>>