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

1 2

  /packages/apps/Bluetooth/src/com/android/bluetooth/
SignedLongLong.java 52 int valueLength = value.length();
53 if(valueLength == 0 || valueLength > 32) {
54 throw new NumberFormatException("invalid string length: " + valueLength);
56 if(valueLength <= 16){
59 lsbStr = value.substring(valueLength-16, valueLength);
60 msbStr = value.substring(0, valueLength-16);
  /external/icu/icu4c/source/i18n/
udat.cpp 903 const UChar *value, int32_t valueLength, UErrorCode &errorCode)
911 array[index].setTo(value, valueLength);
918 const UChar *value, int32_t valueLength, UErrorCode &errorCode)
920 setSymbol(syms->fEras, syms->fErasCount, index, value, valueLength, errorCode);
925 const UChar *value, int32_t valueLength, UErrorCode &errorCode)
927 setSymbol(syms->fEraNames, syms->fEraNamesCount, index, value, valueLength, errorCode);
932 const UChar *value, int32_t valueLength, UErrorCode &errorCode)
934 setSymbol(syms->fMonths, syms->fMonthsCount, index, value, valueLength, errorCode);
939 const UChar *value, int32_t valueLength, UErrorCode &errorCode)
941 setSymbol(syms->fShortMonths, syms->fShortMonthsCount, index, value, valueLength, errorCode)
    [all...]
  /system/security/keystore/
blob.cpp 31 Blob::Blob(const uint8_t* value, size_t valueLength, const uint8_t* info, uint8_t infoLength,
34 if (valueLength > VALUE_SIZE) {
35 valueLength = VALUE_SIZE;
38 if (infoLength + valueLength > VALUE_SIZE) {
39 infoLength = VALUE_SIZE - valueLength;
42 mBlob.length = valueLength;
43 memcpy(mBlob.value, value, valueLength);
46 memcpy(mBlob.value + valueLength, info, infoLength);
blob.h 80 Blob(const uint8_t* value, size_t valueLength, const uint8_t* info, uint8_t infoLength,
  /frameworks/base/drm/java/android/drm/
DrmUtils.java 160 int valueLength = readByte(constraintData, index);
168 String strValue = readMultipleBytes(constraintData, valueLength, index);
172 index += valueLength;
  /external/icu/icu4c/source/common/
uset_props.cpp 110 const UChar *value, int32_t valueLength,
114 UnicodeString v(value, valueLength);
  /external/icu/icu4c/source/tools/gendict/
gendict.cpp 358 int32_t valueLength = fileLine.length() - valueStart;
359 if (valueLength > 15) {
365 fileLine.extract(valueStart, valueLength, s, 16, US_INV);
368 if (end == s || *end != 0 || (int32_t)uprv_strlen(s) != valueLength || value > 0xffffffff) {
  /frameworks/base/core/java/android/net/nsd/
NsdServiceInfo.java 377 int valueLength = in.readInt();
378 valueArray = new byte[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...]
  /frameworks/base/core/java/com/android/internal/widget/
PointerLocationView.java 785 final int valueLength = value.length();
786 final int index = reserve(valueLength);
787 value.getChars(0, valueLength, mChars, index);
788 mLength += valueLength;
    [all...]
  /frameworks/base/core/jni/
android_database_SQLiteConnection.cpp 402 jsize valueLength = env->GetStringLength(valueString);
404 int err = sqlite3_bind_text16(statement, index, value, valueLength * sizeof(jchar),
417 jsize valueLength = env->GetArrayLength(valueArray);
419 int err = sqlite3_bind_blob(statement, index, value, valueLength, SQLITE_TRANSIENT);
    [all...]
  /libcore/luni/src/main/native/
libcore_io_Linux.cpp     [all...]
  /external/svox/pico/compat/jni/
com_android_tts_compat_SynthProxy.cpp 509 size_t valueLength = env->GetStringUTFLength(value);
511 int result = engine->funcs->setProperty(engine, nameChars, valueChars, valueLength);
  /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/common/unicode/
uset.h 481 * @param valueLength the length of the value, or -1 if NULL
490 const UChar *value, int32_t valueLength,
    [all...]
  /external/icu/icu4c/source/i18n/unicode/
udat.h     [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...]
  /external/icu/icu4c/source/test/cintltst/
cnmdptst.c     [all...]
ccaltst.c     [all...]
  /external/libcups/cups/
auth.c 703 auth_right.valueLength = 0;
  /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...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.resources.compatibility_3.4.0.v20090505.jar 
  /prebuilts/go/darwin-x86/src/encoding/gob/
debug.go 508 fmt.Fprintf(os.Stderr, "%sinterface value, type %q id=%d; valueLength %d\n", indent, name, id, x)
  /prebuilts/go/linux-x86/src/encoding/gob/
debug.go 508 fmt.Fprintf(os.Stderr, "%sinterface value, type %q id=%d; valueLength %d\n", indent, name, id, x)

Completed in 1608 milliseconds

1 2