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

1 2

  /external/webkit/Source/WebCore/html/
BaseTextInputType.cpp 47 int valueLength = value.length();
49 return matchOffset || matchLength != valueLength;
  /external/icu4c/i18n/
udat.cpp 625 const UChar *value, int32_t valueLength, UErrorCode &errorCode)
633 array[index].setTo(value, valueLength);
640 const UChar *value, int32_t valueLength, UErrorCode &errorCode)
642 setSymbol(syms->fEras, syms->fErasCount, index, value, valueLength, errorCode);
647 const UChar *value, int32_t valueLength, UErrorCode &errorCode)
649 setSymbol(syms->fEraNames, syms->fEraNamesCount, index, value, valueLength, errorCode);
654 const UChar *value, int32_t valueLength, UErrorCode &errorCode)
656 setSymbol(syms->fMonths, syms->fMonthsCount, index, value, valueLength, errorCode);
661 const UChar *value, int32_t valueLength, UErrorCode &errorCode)
663 setSymbol(syms->fShortMonths, syms->fShortMonthsCount, index, value, valueLength, errorCode)
    [all...]
  /external/webkit/Source/WebCore/page/
EventSource.cpp 311 int valueLength = lineLength - step;
314 if (valueLength)
315 m_data.append(&m_receiveBuf[bufPos], valueLength);
318 m_eventName = valueLength ? String(&m_receiveBuf[bufPos], valueLength) : "";
320 m_lastEventId = valueLength ? String(&m_receiveBuf[bufPos], valueLength) : "";
322 if (!valueLength)
325 String value(&m_receiveBuf[bufPos], valueLength);
  /frameworks/base/drm/java/android/drm/
DrmUtils.java 161 int valueLength = readByte(constraintData, index);
169 String strValue = readMultipleBytes(constraintData, valueLength, index);
173 index += valueLength;
  /external/icu4c/common/
uset_props.cpp 108 const UChar *value, int32_t valueLength,
112 UnicodeString v(value, valueLength);
  /external/webkit/Source/WebKit2/UIProcess/Launcher/mac/
ProcessLauncherMac.mm 157 int valueLength = strlen(value);
160 char* string = static_cast<char*>(fastMalloc(nameLength + 1 + valueLength + 1));
163 memcpy(string + nameLength + 1, value, valueLength);
164 string[nameLength + 1 + valueLength] = '\0';
  /external/webkit/Source/WebKit/chromium/src/
LocalizedStrings.cpp 365 String validationMessageTooLongText(int valueLength, int maxLength)
367 return query(WebLocalizedString::ValidationTooLong, String::number(valueLength), String::number(maxLength));
  /external/webkit/Source/WebKit/mac/Plugins/Hosted/
ProxyInstance.mm 435 mach_msg_type_number_t valueLength;
437 m_instanceProxy->marshalValue(exec, value, valueData, valueLength);
441 m_objectID, serverIdentifier, valueData, valueLength);
442 mig_deallocate(reinterpret_cast<vm_address_t>(valueData), valueLength);
NetscapePluginInstanceProxy.h 121 bool setProperty(uint32_t objectID, const JSC::Identifier& propertyName, data_t valueData, mach_msg_type_number_t valueLength);
122 bool setProperty(uint32_t objectID, unsigned propertyName, data_t valueData, mach_msg_type_number_t valueLength);
144 JSC::JSValue demarshalValue(JSC::ExecState*, const char* valueData, mach_msg_type_number_t valueLength);
NetscapePluginHostProxy.mm 738 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)
740 DataDeallocator deallocator(valueData, valueLength);
759 result = instanceProxy->setProperty(objectID, propertyNameIdentifier, valueData, valueLength);
761 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...]
  /external/icu4c/i18n/unicode/
udat.h 912 * @param valueLength The length of value, or -1 if null-terminated
923 int32_t valueLength,
    [all...]
  /external/webkit/Source/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/Source/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/webkit/Source/WebCore/platform/
LocalizedStrings.h 192 String validationMessageTooLongText(int valueLength, int maxLength);
  /frameworks/base/cmds/keystore/
keystore.cpp 172 Blob(uint8_t* value, int32_t valueLength, uint8_t* info, uint8_t infoLength) {
173 mBlob.length = valueLength;
174 memcpy(mBlob.value, value, valueLength);
177 memcpy(mBlob.value + valueLength, info, infoLength);
  /frameworks/base/core/java/com/android/internal/widget/
PointerLocationView.java 658 final int valueLength = value.length();
659 final int index = reserve(valueLength);
660 value.getChars(0, valueLength, mChars, index);
661 mLength += valueLength;
  /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);
  /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/Source/WebCore/dom/
XMLDocumentParserLibxml2.cpp 733 int valueLength = static_cast<int>(attributes[i].end - attributes[i].value);
734 AtomicString attrValue = toAtomicString(attributes[i].value, valueLength);
    [all...]
  /frameworks/base/core/java/android/util/
JsonReader.java 225 private int valueLength;
918 * and valueLength fields and return a null result. This only works if
924 valueLength = 0;
971 valueLength += i;
991 valueLength += i;
    [all...]
  /external/icu4c/test/cintltst/
cnmdptst.c     [all...]
ccaltst.c     [all...]
capitst.c     [all...]

Completed in 401 milliseconds

1 2