HomeSort by relevance Sort by last modified time
    Searched full:maxlength (Results 1 - 25 of 407) 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/libxml2/test/relaxng/
tutor5_5.rng 3 <param name="maxLength">127</param>
  /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/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DictionaryMatcher.java 21 * @param maxLength The maximum number of code units to match.
28 public abstract int matches(CharacterIterator text, int maxLength, int[] lengths,
31 public int matches(CharacterIterator text, int maxLength, int[] lengths,
33 return matches(text, maxLength, lengths, count, limit, null);
CharsDictionaryMatcher.java 21 public int matches(CharacterIterator text_, int maxLength, int[] lengths, int[] count_, int limit, int[] values) {
49 if (numChars >= maxLength) {
  /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"/>
src-attribute3-2-st_0.xsd 13 <maxLength value="20"/>
src-element3_0.xsd 18 <maxLength value="20"/>
  /external/conscrypt/src/main/java/org/conscrypt/
OpenSSLBIOSink.java 46 int maxLength = Math.min(available(), (int) byteCount);
47 position += maxLength;
51 return maxLength;
  /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/vogar/src/vogar/commands/
VmCommandBuilder.java 44 private int maxLength = -1;
108 public VmCommandBuilder maxLength(int maxLength) {
109 this.maxLength = maxLength;
166 builder.maxLength(maxLength);
  /packages/apps/Settings/src/com/android/settings/
SetupChooseLockPassword.java 43 int minLength, final int maxLength, boolean requirePasswordToDecrypt,
46 maxLength, requirePasswordToDecrypt, confirmCredentials);
53 int minLength, final int maxLength, boolean requirePasswordToDecrypt, String password) {
54 Intent intent = ChooseLockPassword.createIntent(context, quality, minLength, maxLength,
62 int minLength, final int maxLength, boolean requirePasswordToDecrypt, long challenge) {
63 Intent intent = ChooseLockPassword.createIntent(context, quality, minLength, maxLength,
  /external/parameter-framework/parameter/
StringParameterType.cpp 62 // MaxLength
63 _uiMaxLength = xmlElement.getAttributeInteger("MaxLength");
83 // MaxLength
84 xmlElement.setAttributeInteger("MaxLength", _uiMaxLength);

Completed in 573 milliseconds

1 2 3 4 5 6 7 8 91011>>