HomeSort by relevance Sort by last modified time
    Searched refs:secondLength (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/third_party/icu/source/common/unicode/
unorm2.h 225 * @param secondLength length of the source string, or -1 if NUL-terminated
236 const UChar *second, int32_t secondLength,
248 * @param secondLength length of the source string, or -1 if NUL-terminated
259 const UChar *second, int32_t secondLength,
  /external/chromium_org/third_party/icu/source/common/
normalizer2.cpp 681 const UChar *second, int32_t secondLength,
687 if( (second==NULL ? secondLength!=0 : secondLength<-1) ||
696 // secondLength==0: Nothing to do, and n2wi->normalizeAndAppend(NULL, NULL, buffer, ...) would crash.
697 if(secondLength!=0) {
703 if(buffer.init(firstLength+secondLength+1, *pErrorCode)) { // destCapacity>=-1
704 n2wi->normalizeAndAppend(second, secondLength>=0 ? second+secondLength : NULL,
708 UnicodeString secondString(secondLength<0, second, secondLength);
    [all...]
  /external/icu4c/common/
normalizer2.cpp 783 const UChar *second, int32_t secondLength,
789 if( (second==NULL ? secondLength!=0 : secondLength<-1) ||
799 // secondLength==0: Nothing to do, and n2wi->normalizeAndAppend(NULL, NULL, buffer, ...) would crash.
800 if(secondLength!=0) {
808 if(buffer.init(firstLength+secondLength+1, *pErrorCode)) { // destCapacity>=-1
809 n2wi->normalizeAndAppend(second, secondLength>=0 ? second+secondLength : NULL,
825 UnicodeString secondString(secondLength<0, second, secondLength);
    [all...]
  /external/icu4c/common/unicode/
unorm2.h 295 * @param secondLength length of the source string, or -1 if NUL-terminated
306 const UChar *second, int32_t secondLength,
318 * @param secondLength length of the source string, or -1 if NUL-terminated
329 const UChar *second, int32_t secondLength,
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSToStyleMap.cpp 210 Length secondLength;
214 secondLength = pair->second()->convertToLength<AnyConversion>(style(), rootElementStyle(), zoomFactor);
217 secondLength = Length();
220 if (firstLength.isUndefined() || secondLength.isUndefined())
224 b.setHeight(secondLength);

Completed in 468 milliseconds