HomeSort by relevance Sort by last modified time
    Searched full:valuelength (Results 1 - 25 of 28) sorted by null

1 2

  /external/chromium/third_party/icu/source/i18n/
udat.cpp 578 const UChar *value, int32_t valueLength, UErrorCode &errorCode)
586 array[index].setTo(value, valueLength);
593 const UChar *value, int32_t valueLength, UErrorCode &errorCode)
595 setSymbol(syms->fEras, syms->fErasCount, index, value, valueLength, errorCode);
600 const UChar *value, int32_t valueLength, UErrorCode &errorCode)
602 setSymbol(syms->fEraNames, syms->fEraNamesCount, index, value, valueLength, errorCode);
607 const UChar *value, int32_t valueLength, UErrorCode &errorCode)
609 setSymbol(syms->fMonths, syms->fMonthsCount, index, value, valueLength, errorCode);
614 const UChar *value, int32_t valueLength, UErrorCode &errorCode)
616 setSymbol(syms->fShortMonths, syms->fShortMonthsCount, index, value, valueLength, errorCode)
    [all...]
  /external/icu4c/i18n/
udat.cpp 622 const UChar *value, int32_t valueLength, UErrorCode &errorCode)
630 array[index].setTo(value, valueLength);
637 const UChar *value, int32_t valueLength, UErrorCode &errorCode)
639 setSymbol(syms->fEras, syms->fErasCount, index, value, valueLength, errorCode);
644 const UChar *value, int32_t valueLength, UErrorCode &errorCode)
646 setSymbol(syms->fEraNames, syms->fEraNamesCount, index, value, valueLength, errorCode);
651 const UChar *value, int32_t valueLength, UErrorCode &errorCode)
653 setSymbol(syms->fMonths, syms->fMonthsCount, index, value, valueLength, errorCode);
658 const UChar *value, int32_t valueLength, UErrorCode &errorCode)
660 setSymbol(syms->fShortMonths, syms->fShortMonthsCount, index, value, valueLength, errorCode)
    [all...]
  /external/webkit/WebCore/page/
EventSource.cpp 269 int valueLength = lineLength - step;
274 if (valueLength)
275 m_data.append(&m_receiveBuf[bufPos], valueLength);
277 m_eventName = valueLength ? String(&m_receiveBuf[bufPos], valueLength) : "";
279 m_lastEventId = valueLength ? String(&m_receiveBuf[bufPos], valueLength) : "";
281 if (!valueLength)
284 String value(&m_receiveBuf[bufPos], valueLength);
  /external/chromium/third_party/icu/source/common/
uset_props.cpp 108 const UChar *value, int32_t valueLength,
112 UnicodeString v(value, valueLength);
  /external/icu4c/common/
uset_props.cpp 108 const UChar *value, int32_t valueLength,
112 UnicodeString v(value, valueLength);
  /external/webkit/WebCore/platform/graphics/win/
FontDatabase.cpp 169 DWORD valueLength = value.size();
171 if (FAILED(RegEnumValue(key, i, name.data(), &nameLength, 0, &type, value.data(), &valueLength)))
176 RetainPtr<CFDataRef> filename(AdoptCF, CFDataCreate(kCFAllocatorDefault, value.data(), valueLength));
  /external/webkit/WebKit/mac/Plugins/Hosted/
NetscapePluginInstanceProxy.h 124 bool setProperty(uint32_t objectID, const JSC::Identifier& propertyName, data_t valueData, mach_msg_type_number_t valueLength);
125 bool setProperty(uint32_t objectID, unsigned propertyName, data_t valueData, mach_msg_type_number_t valueLength);
147 JSC::JSValue demarshalValue(JSC::ExecState*, const char* valueData, mach_msg_type_number_t valueLength);
ProxyInstance.mm 381 mach_msg_type_number_t valueLength;
383 m_instanceProxy->marshalValue(exec, value, valueData, valueLength);
386 m_objectID, serverIdentifier, valueData, valueLength);
387 mig_deallocate(reinterpret_cast<vm_address_t>(valueData), valueLength);
NetscapePluginHostProxy.mm 729 kern_return_t WKPCSetProperty(mach_port_t clientPort, uint32_t pluginID, uint32_t requestID, uint32_t objectID, uint64_t serverIdentifier, data_t valueData, mach_msg_type_number_t valueLength)
731 DataDeallocator deallocator(valueData, valueLength);
750 result = instanceProxy->setProperty(objectID, propertyNameIdentifier, valueData, valueLength);
752 result = instanceProxy->setProperty(objectID, identifier->number(), valueData, valueLength);
    [all...]
NetscapePluginInstanceProxy.mm     [all...]
  /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...]
  /packages/apps/Tag/src/com/android/apps/tag/record/
VCardRecord.java 269 int valueLength = parcel.readInt();
270 if (valueLength > 0) {
271 mValue = new byte[valueLength];
  /frameworks/base/core/java/com/android/internal/widget/
PointerLocationView.java 471 final int valueLength = value.length();
472 final int index = reserve(valueLength);
473 value.getChars(0, valueLength, mChars, index);
474 mLength += valueLength;
  /external/chromium/third_party/icu/source/test/cintltst/
cnmdptst.c     [all...]
ccaltst.c     [all...]
  /external/icu4c/test/cintltst/
cnmdptst.c     [all...]
ccaltst.c     [all...]
  /external/webkit/WebCore/dom/
XMLTokenizerLibxml2.cpp 708 int valueLength = (int) (attributes[i].end - attributes[i].value);
709 String attrValue = toString(attributes[i].value, valueLength);
    [all...]
  /external/webkit/JavaScriptCore/icu/unicode/
uset.h 260 * @param valueLength the length of the value, or -1 if NULL
269 const UChar *value, int32_t valueLength,
  /external/webkit/WebCore/icu/unicode/
uset.h 260 * @param valueLength the length of the value, or -1 if NULL
269 const UChar *value, int32_t valueLength,
  /external/chromium/third_party/icu/public/i18n/unicode/
udat.h 878 * @param valueLength The length of value, or -1 if null-terminated
889 int32_t valueLength,
    [all...]
  /external/icu4c/i18n/unicode/
udat.h 912 * @param valueLength The length of value, or -1 if null-terminated
923 int32_t valueLength,
    [all...]
  /external/chromium/third_party/icu/public/common/unicode/
uset.h 451 * @param valueLength the length of the value, or -1 if NULL
460 const UChar *value, int32_t valueLength,
    [all...]
  /external/icu4c/common/unicode/
uset.h 471 * @param valueLength the length of the value, or -1 if NULL
480 const UChar *value, int32_t valueLength,
    [all...]
  /external/webkit/WebCore/html/
HTMLInputElement.cpp 247 int valueLength = value.length();
250 return matchOffset != 0 || matchLength != valueLength;
    [all...]

Completed in 667 milliseconds

1 2