HomeSort by relevance Sort by last modified time
    Searched defs:charLength (Results 1 - 25 of 67) sorted by null

1 2 3

  /frameworks/base/core/java/android/util/
ByteStringUtils.java 65 final int charLength = chars.length;
66 final byte[] bytes = new byte[charLength / 2];
  /libcore/ojluni/src/main/java/java/util/concurrent/
Helpers.java 57 int charLength = 0;
65 charLength += s.length();
68 return toString(a, size, charLength);
74 * and charLength is the sum of the lengths of the input Strings.
76 static String toString(Object[] a, int size, int charLength) {
82 final char[] chars = new char[charLength + 2 * size];
ConcurrentLinkedQueue.java 564 int charLength = 0;
575 charLength += s.length();
584 return Helpers.toString(a, size, charLength);
    [all...]
ConcurrentLinkedDeque.java     [all...]
LinkedTransferQueue.java     [all...]
  /external/annotation-tools/asmx/src/org/objectweb/asm/
ByteVector.java 201 int charLength = s.length();
202 if (length + 2 + charLength > data.length) {
203 enlarge(2 + charLength);
213 data[len++] = (byte) (charLength >>> 8);
214 data[len++] = (byte) (charLength);
215 for (int i = 0; i < charLength; ++i) {
221 for (int j = i; j < charLength; ++j) {
238 for (int j = i; j < charLength; ++j) {
  /cts/hostsidetests/appsecurity/test-apps/V3SigningSchemeRotation/src/android/appsecurity/cts/v3rotationtests/
V3RotationTest.java 202 final int charLength = chars.length;
203 final byte[] bytes = new byte[charLength / 2];
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
TypesLengths.java 98 private static int charLength = 2;
201 return charLength;
302 classObjectLength = charLength;
  /external/icu/icu4c/source/i18n/
translit.cpp 574 int32_t charLength = U16_LENGTH(text.char32At(passLimit));
575 passLimit += charLength;
579 uncommittedLength += charLength;
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
Transliterator.java     [all...]
  /external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
Transliterator.java     [all...]
  /frameworks/base/packages/SystemUI/src/com/android/keyguard/
PasswordTextView.java 174 float charLength = bounds.right - bounds.left;
178 charLength);
200 int charLength = bounds.right - bounds.left;
206 width += charLength * charState.currentWidthFactor;
688 float charLength) {
691 float charWidth = charLength * currentWidthFactor;
  /prebuilts/tools/common/m2/repository/com/googlecode/juniversalchardet/juniversalchardet/1.0.3/
juniversalchardet-1.0.3.jar 
  /prebuilts/tools/common/offline-m2/com/googlecode/juniversalchardet/juniversalchardet/1.0.3/
juniversalchardet-1.0.3.jar 
  /prebuilts/misc/common/asm/
asm-6.0.jar 
  /prebuilts/misc/common/robolectric/3.5.1/lib/
asm-6.0.jar 
  /prebuilts/misc/common/robolectric/3.6.1/lib/
asm-6.0.jar 
  /prebuilts/tools/common/m2/repository/com/fasterxml/jackson/core/jackson-core/2.2.2/
jackson-core-2.2.2.jar 
  /prebuilts/tools/common/m2/repository/org/ow2/asm/asm/6.0/
asm-6.0.jar 
  /prebuilts/tools/common/m2/repository/org/ow2/asm/asm/6.1.1/
asm-6.1.1.jar 
  /prebuilts/misc/common/jacoco/lib/
jacocoagent.jar 
  /prebuilts/tools/common/m2/repository/com/fasterxml/jackson/core/jackson-core/2.1.3/
jackson-core-2.1.3.jar 
  /prebuilts/tools/common/m2/repository/com/fasterxml/jackson/core/jackson-core/2.6.6/
jackson-core-2.6.6.jar 
  /prebuilts/tools/common/m2/repository/net/orfjackal/retrolambda/retrolambda/2.0.6/
retrolambda-2.0.6.jar 
  /prebuilts/tools/common/m2/repository/org/jacoco/org.jacoco.agent/0.7.6.201602180812/
org.jacoco.agent-0.7.6.201602180812-runtime.jar 

Completed in 192 milliseconds

1 2 3