HomeSort by relevance Sort by last modified time
    Searched refs:length (Results 226 - 250 of 15072) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/graphics/java/android/graphics/
DiscretePathEffect.java 29 private static native int nativeCreate(float length, float deviation);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
ComprehensionTlv.java 47 * @param length Length of the value
51 protected ComprehensionTlv(int tag, boolean cr, int length, byte[] data,
55 mLength = length;
91 int endIndex = data.length;
117 int endIndex = data.length;
150 /* length */
151 int length; local
154 length = temp;
156 length = data[curIndex++] & 0xff
    [all...]
TextAttribute.java 27 public int length; field in class:TextAttribute
36 public TextAttribute(int start, int length, TextAlignment align,
40 this.length = length;
  /hardware/samsung_slsi/exynos5/include/
exynos_mem.h 25 size_t length; member in struct:exynos_mem_flush_range
  /libcore/luni/src/main/java/java/io/
OptionalDataException.java 42 public int length; field in class:OptionalDataException
Reader.java 145 return read(buf, 0, buf.length);
256 int length = target.length();
257 char[] buf = new char[length];
258 length = Math.min(length, read(buf));
259 if (length > 0) {
260 target.put(buf, 0, length);
262 return length;
  /libcore/luni/src/main/java/java/lang/
CharSequence.java 32 public int length(); method in interface:CharSequence
43 * length of this sequence.
63 * length of this sequence.
  /libcore/luni/src/main/java/javax/crypto/spec/
PSource.java 92 this.p = new byte[p.length];
93 System.arraycopy(p, 0, this.p, 0, p.length);
102 byte[] result = new byte[p.length];
103 System.arraycopy(p, 0, result, 0, p.length);
  /libcore/luni/src/main/java/org/apache/harmony/security/
PrivateKeyImpl.java 51 byte[] toReturn = new byte[encoding.length];
52 System.arraycopy(encoding, 0, toReturn, 0, encoding.length);
62 this.encoding = new byte[encoding.length];
63 System.arraycopy(encoding, 0, this.encoding, 0, encoding.length);
PublicKeyImpl.java 56 byte[] result = new byte[encoding.length];
57 System.arraycopy(encoding, 0, result, 0, encoding.length);
68 this.encoding = new byte[encoding.length];
69 System.arraycopy(encoding, 0, this.encoding, 0, encoding.length);
  /ndk/sources/cxx-stl/llvm-libc++/test/re/re.submatch/re.submatch.members/
length.pass.cpp 14 // difference_type length() const;
25 assert(sm.length() == 0);
30 assert(sm.length() == 3);
36 assert(sm.length() == 0);
41 assert(sm.length() == 3);
  /system/security/keystore/include/keystore/
keystore_get.h 30 * length. The third argument is a pointer to an array that will be malloc()
33 ssize_t keystore_get(const char *key, size_t length, uint8_t** value);
  /external/apache-http/src/org/apache/http/util/
EncodingUtils.java 54 * @param length the number of bytes to encode
61 int length,
69 if (charset == null || charset.length() == 0) {
74 return new String(data, offset, length, charset);
76 return new String(data, offset, length);
94 return getString(data, 0, data.length, charset);
111 if (charset == null || charset.length() == 0) {
148 * @param length the number of bytes to encode
151 public static String getAsciiString(final byte[] data, int offset, int length) {
158 return new String(data, offset, length, HTTP.US_ASCII)
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
StreamUtil.java 13 * Find out possible longest length...
16 * @return length calculation or MAX_VALUE.
58 int length)
62 if (length > 127)
65 int val = length;
84 int length = 1; local
90 length++;
95 int pos = stack.length;
106 length += stack.length - pos
    [all...]
  /external/icu4c/common/
ucharstrieiterator.cpp 62 int32_t length=remainingMatchLength_; // Actual remaining match length minus 1. local
63 if(length>=0) {
65 ++length;
66 if(maxLength_>0 && length>maxLength_) {
67 length=maxLength_; // This will leave remainingMatchLength>=0 as a signal.
69 str_.append(pos_, length);
70 pos_+=length;
71 remainingMatchLength_-=length;
84 int32_t length=remainingMatchLength_+1; // Remaining match length local
111 int32_t length=stack_->elementAti(stackSize-1); local
171 int32_t length=node-kMinLinearMatch+1; local
    [all...]
  /external/openssl/crypto/des/
cbc3_enc.c 62 void DES_3cbc_encrypt(DES_cblock *input, DES_cblock *output, long length,
66 int off=((int)length-1)/8;
67 long l8=((length+7)/8)*8;
73 (unsigned char*)output,length,&ks1,iv1,enc);
74 if (length >= sizeof(DES_cblock))
80 if (length >= sizeof(DES_cblock))
85 if (length >= sizeof(DES_cblock))
91 if (length >= sizeof(DES_cblock))
94 (unsigned char*)output,length,&ks1,iv1,enc);
  /external/skia/include/xml/
SkXMLWriter.h 27 void addAttributeLen(const char name[], const char value[], size_t length);
32 void startElementLen(const char elem[], size_t length);
38 virtual void onStartElementLen(const char elem[], size_t length) = 0;
39 virtual void onAddAttributeLen(const char name[], const char value[], size_t length) = 0;
47 bool doStart(const char name[], size_t length);
65 virtual void onStartElementLen(const char elem[], size_t length);
67 virtual void onAddAttributeLen(const char name[], const char value[], size_t length);
77 virtual void onStartElementLen(const char elem[], size_t length);
79 virtual void onAddAttributeLen(const char name[], const char value[], size_t length);
  /external/skia/legacy/include/xml/
SkXMLWriter.h 27 void addAttributeLen(const char name[], const char value[], size_t length);
32 void startElementLen(const char elem[], size_t length);
38 virtual void onStartElementLen(const char elem[], size_t length) = 0;
39 virtual void onAddAttributeLen(const char name[], const char value[], size_t length) = 0;
47 bool doStart(const char name[], size_t length);
65 virtual void onStartElementLen(const char elem[], size_t length);
67 virtual void onAddAttributeLen(const char name[], const char value[], size_t length);
77 virtual void onStartElementLen(const char elem[], size_t length);
79 virtual void onAddAttributeLen(const char name[], const char value[], size_t length);
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Array/
15.4.2.2-2.js 37 If the argument len is a number, then the length
41 If the argument len is not a number, then the length
46 This file tests length of the newly constructed array
66 array[item++] = new TestCase( SECTION, "(new Array(new Number(1073741823))).length", 1, (new Array(new Number(1073741823))).length );
67 array[item++] = new TestCase( SECTION, "(new Array(new Number(0))).length", 1, (new Array(new Number(0))).length );
68 array[item++] = new TestCase( SECTION, "(new Array(new Number(1000))).length", 1, (new Array(new Number(1000))).length );
69 array[item++] = new TestCase( SECTION, "(new Array('mozilla, larryzilla, curlyzilla')).length", 1, (new Array('mozilla, larryzilla, curlyzilla')).length )
    [all...]
15.4.4.5-3.js 50 for ( tc=0; tc < testcases.length; tc++ ) {
66 array[array.length] = new Date( TIME_2000 * Math.PI );
67 array[array.length] = new Date( TIME_2000 * 10 );
68 array[array.length] = new Date( TIME_1900 + TIME_1900 );
69 array[array.length] = new Date(0);
70 array[array.length] = new Date( TIME_2000 );
71 array[array.length] = new Date( TIME_1900 + TIME_1900 +TIME_1900 );
72 array[array.length] = new Date( TIME_1900 * Math.PI );
73 array[array.length] = new Date( TIME_1900 * 10 );
74 array[array.length] = new Date( TIME_1900 )
    [all...]
  /external/webkit/Source/WebCore/platform/text/
String.cpp 38 const int length = string.length(); local
39 Vector<char> buffer(length * 3);
44 ConversionResult result = convertUTF16ToUTF8(&d, d + length, &p, p + buffer.size(), true);
54 TextBreakIterator* it = characterBreakIterator(s.characters(), s.length());
56 return s.length();
66 TextBreakIterator* it = characterBreakIterator(s.characters(), s.length());
68 return min(s.length(), numGraphemeClusters);
72 return s.length();
  /cts/tests/tests/text/src/android/text/cts/
LoginFilterTest.java 45 assertNull(loginFilter.filter(source1, 0, source1.length(), dest1, 0, dest1.length()));
51 assertNull(loginFilter.filter(source1, 0, source1.length(), dest2, 5, 6));
57 assertNull(loginFilter.filter(source2, 0, source2.length(),
58 dest1, 0, dest1.length()));
64 assertNull(loginFilter.filter(spannedSource, 0, spannedSource.length(),
65 dest1, 0, dest1.length()));
71 result = loginFilter.filter(source2, 0, source2.length(), dest1, 0, dest1.length());
79 result = loginFilter.filter(spannedSource, 0, spannedSource.length(),
    [all...]
  /external/tcpdump/
print-arcnet.c 41 u_int length, u_int caplen);
58 arcnet_print(const u_char *bp, u_int length, int phds, int flag, u_int seqid)
71 length);
80 length);
87 length);
95 (flag + 3) / 2, length);
100 flag/2 + 1, length);
106 * 'h->len' is the length of the packet off the wire, and 'h->caplen'
113 u_int length = h->len; local
142 arcnet_print(p, length, 0, 0, 0)
201 u_int length = h->len; local
    [all...]
  /external/webkit/Source/JavaScriptCore/wtf/text/
StringConcatenate.h 45 unsigned length() { return 1; } function in class:WTF::StringTypeAdapter
60 unsigned length() { return 1; } function in class:WTF::StringTypeAdapter
76 unsigned length() { return m_length; } function in class:WTF::StringTypeAdapter
107 unsigned length() { return m_length; } function in class:WTF::StringTypeAdapter
128 unsigned length() { return m_length; } function in class:WTF::StringTypeAdapter
151 size_t length() { return m_buffer.size(); } function in class:WTF::StringTypeAdapter
173 unsigned length() { return m_buffer.length(); } function in class:WTF::StringTypeAdapter
178 unsigned length = m_buffer.length(); local
203 unsigned length = adapter1.length(); local
228 unsigned length = adapter1.length(); local
257 unsigned length = adapter1.length(); local
290 unsigned length = adapter1.length(); local
327 unsigned length = adapter1.length(); local
368 unsigned length = adapter1.length(); local
413 unsigned length = adapter1.length(); local
462 unsigned length = adapter1.length(); local
    [all...]
  /frameworks/ex/chips/tests/src/com/android/ex/chips/
ChipsTest.java 112 public int length() { method in class:ChipsTest.MockRecipientEditTextView
113 return mEditable != null ? mEditable.length() : 0;
190 int firstEnd = firstStart + first.trim().length();
192 int secondEnd = secondStart + second.trim().length();
193 mEditable.setSpan(mMockRecips[mMockRecips.length - 2], firstStart, firstEnd, 0);
194 mEditable.setSpan(mMockRecips[mMockRecips.length - 1], secondStart, secondEnd, 0);
199 assertEquals(editableString.indexOf(second), secondStart - extra.length());
208 firstEnd = firstStart + first.length();
209 mEditable.setSpan(mMockRecips[mMockRecips.length - 1], firstStart, firstEnd, 0);
212 assertEquals(mEditable.getSpanStart(mMockRecips[mMockRecips.length - 1]), firstStar
809 .length(), DrawableRecipientChip.class).length, 0); method
831 .length(), DrawableRecipientChip.class).length, 0); method
843 .length(), DrawableRecipientChip.class).length, 1); method
    [all...]

Completed in 548 milliseconds

1 2 3 4 5 6 7 8 91011>>