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

1 2

  /packages/apps/Bluetooth/src/com/android/bluetooth/
SignedLongLong.java 54 int valueLength = value.length();
55 if (valueLength == 0 || valueLength > 32) {
56 throw new NumberFormatException("invalid string length: " + valueLength);
58 if (valueLength <= 16) {
61 lsbStr = value.substring(valueLength - 16, valueLength);
62 msbStr = value.substring(0, valueLength - 16);
  /frameworks/base/drm/java/android/drm/
DrmUtils.java 151 int valueLength = readByte(constraintData, index);
159 String strValue = readMultipleBytes(constraintData, valueLength, index);
163 index += valueLength;
  /cts/tests/tests/location/src/android/location/cts/asn1/base/
Asn1Sequence.java 110 int valueLength = Asn1Tag.readLength(buf);
111 buf.limit(buf.position() + valueLength);
Asn1SequenceOf.java 85 int valueLength = Asn1Tag.readLength(buf);
92 valueLength = Asn1Tag.readLength(buf);
97 ByteBuffer subBuf = ByteBuffer.wrap(buf.array(), buf.position(), valueLength);
102 buf.position(buf.position() + valueLength);
  /device/generic/goldfish/camera/
EmulatedCameraFactory.cpp 269 size_t valueLength = s.find(' ', valueStart) - valueStart;
272 std::string valueStr = s.substr(valueStart, valueLength);
  /frameworks/ml/nn/runtime/
ModelBuilder.cpp 102 uint32_t valueLength = static_cast<uint32_t>(length);
104 if (operand.type != OperandType::OEM && neededLength != valueLength) {
105 LOG(ERROR) << "ANeuralNetworksModel_setOperandValue setting " << valueLength
109 if (valueLength <= ANEURALNETWORKS_MAX_SIZE_OF_IMMEDIATELY_COPIED_VALUES) {
111 uint32_t extraBytes = alignBytesNeeded(existingSize, valueLength);
112 mSmallOperandValues.resize(existingSize + extraBytes + valueLength);
115 .poolIndex = 0, .offset = existingSize + extraBytes, .length = valueLength};
116 memcpy(&mSmallOperandValues[operand.location.offset], buffer, valueLength);
125 .length = valueLength};
  /packages/inputmethods/LatinIME/native/jni/src/dictionary/header/
header_read_write_utils.cpp 85 const int valueLength = ByteArrayUtils::readStringAndAdvancePosition(dictBuf,
88 value.insert(value.end(), valueBuffer.get(), valueBuffer.get() + valueLength);
  /cts/libs/json/src/com/android/json/stream/
JsonReader.java 211 private int valueLength;
849 * and valueLength fields and return a null result. This only works if
855 valueLength = 0;
902 valueLength += i;
922 valueLength += i;
983 if (valueLength == 0) {
    [all...]
  /external/icu/icu4c/source/test/cintltst/
cnmdptst.c     [all...]
ccaltst.c     [all...]
cnumtst.c     [all...]
  /frameworks/base/core/java/android/util/
JsonReader.java 225 private int valueLength;
921 * and valueLength fields and return a null result. This only works if
927 valueLength = 0;
974 valueLength += i;
994 valueLength += i;
    [all...]
  /frameworks/base/core/jni/
android_database_SQLiteConnection.cpp 413 jsize valueLength = env->GetStringLength(valueString);
415 int err = sqlite3_bind_text16(statement, index, value, valueLength * sizeof(jchar),
428 jsize valueLength = env->GetArrayLength(valueArray);
430 int err = sqlite3_bind_blob(statement, index, value, valueLength, SQLITE_TRANSIENT);
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/mmslib/pdu/
PduComposer.java 644 final int valueLength = valueStart.getLength();
646 appendValueLength(valueLength);
    [all...]
  /external/icu/icu4c/source/test/intltest/
caltest.cpp 626 int32_t valueLength;
627 while ((charValue = values->next(&valueLength, status)) != NULL) {
628 if (valueLength == 6 && strcmp(charValue, "hebrew") == 0) {
640 while ((ucharValue = values->unext(&valueLength, status)) != NULL) {
641 UnicodeString value(FALSE, ucharValue, valueLength);
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/
PointerLocationView.java 792 final int valueLength = value.length();
793 final int index = reserve(valueLength);
794 value.getChars(0, valueLength, mChars, index);
795 mLength += valueLength;
    [all...]
  /libcore/luni/src/main/native/
libcore_io_Linux.cpp     [all...]
  /prebuilts/tools/common/m2/repository/org/ow2/asm/asm/6.1.1/
asm-6.1.1.jar 
  /prebuilts/tools/common/m2/repository/com/sun/xml/fastinfoset/FastInfoset/1.2.13/
FastInfoset-1.2.13.jar 
  /external/caliper/lib/
gson-2.2.2.jar 
  /prebuilts/tools/common/m2/repository/io/netty/netty-codec-http2/4.1.0.CR3/
netty-codec-http2-4.1.0.CR3.jar 
  /prebuilts/tools/common/m2/repository/io/netty/netty-codec-http2/4.1.3.Final/
netty-codec-http2-4.1.3.Final.jar 
  /prebuilts/tools/common/m2/repository/io/netty/netty-codec-http2/4.1.6.Final/
netty-codec-http2-4.1.6.Final.jar 
  /prebuilts/tools/common/m2/repository/io/netty/netty-codec-http/4.1.0.CR3/
netty-codec-http-4.1.0.CR3.jar 
  /prebuilts/tools/common/m2/repository/io/netty/netty-codec-http/4.1.3.Final/
netty-codec-http-4.1.3.Final.jar 

Completed in 951 milliseconds

1 2