HomeSort by relevance Sort by last modified time
    Searched refs:valueLength (Results 1 - 25 of 31) 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);
  /system/security/keystore/
keystore_get.cpp 33 size_t valueLength;
34 int32_t ret = service->get(String16(key, keyLength), -1, value, &valueLength);
40 return valueLength;
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 79 Blob(const uint8_t* value, size_t valueLength, const uint8_t* info, uint8_t infoLength,
  /external/icu/icu4c/source/i18n/
udat.cpp 901 const UChar *value, int32_t valueLength, UErrorCode &errorCode)
909 array[index].setTo(value, valueLength);
916 const UChar *value, int32_t valueLength, UErrorCode &errorCode)
918 setSymbol(syms->fEras, syms->fErasCount, index, value, valueLength, errorCode);
923 const UChar *value, int32_t valueLength, UErrorCode &errorCode)
925 setSymbol(syms->fEraNames, syms->fEraNamesCount, index, value, valueLength, errorCode);
930 const UChar *value, int32_t valueLength, UErrorCode &errorCode)
932 setSymbol(syms->fMonths, syms->fMonthsCount, index, value, valueLength, errorCode);
937 const UChar *value, int32_t valueLength, UErrorCode &errorCode)
939 setSymbol(syms->fShortMonths, syms->fShortMonthsCount, index, value, valueLength, errorCode)
    [all...]
  /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 108 const UChar *value, int32_t valueLength,
112 UnicodeString v(value, valueLength);
  /external/icu/icu4c/source/tools/gendict/
gendict.cpp 356 int32_t valueLength = fileLine.length() - valueStart;
357 if (valueLength > 15) {
363 fileLine.extract(valueStart, valueLength, s, 16, US_INV);
366 if (end == s || *end != 0 || (int32_t)uprv_strlen(s) != valueLength || value > 0xffffffff) {
  /frameworks/base/core/java/android/net/nsd/
NsdServiceInfo.java 376 int valueLength = in.readInt();
377 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...]
  /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 477 * @param valueLength the length of the value, or -1 if NULL
486 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...]
cnumtst.c     [all...]
  /external/icu/icu4c/source/test/intltest/
caltest.cpp 617 int32_t valueLength;
618 while ((charValue = values->next(&valueLength, status)) != NULL) {
619 if (valueLength == 6 && strcmp(charValue, "hebrew") == 0) {
631 while ((ucharValue = values->unext(&valueLength, status)) != NULL) {
632 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 
  /libcore/luni/src/main/native/
libcore_io_Posix.cpp     [all...]
  /external/caliper/lib/
gson-2.2.2.jar 

Completed in 4992 milliseconds

1 2