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

1 2

  /external/webkit/JavaScriptCore/wtf/
StringExtras.h 94 size_t targetLength = strlen(target);
95 if (targetLength == 0)
97 for (const char* start = buffer; *start && start + targetLength <= buffer + bufferLength; start++) {
98 if (*start == *target && strncmp(start + 1, target + 1, targetLength - 1) == 0)
  /external/chromium/third_party/icu/public/i18n/unicode/
bms.h 117 * void boyerMooreExample(UCollator *collator, UChar *pattern, int32_t patternLen, UChar *target, int32_t targetLength)
130 * BMS *bms = bms_open(ucd, pattern, patternLength, target, targetlength, &status);
192 * @param targetLength - the length of the string in which to search
206 const UChar *target, int32_t targetLength,
263 * @param targetLength - the length of the new target string
269 bms_setTargetString(BMS *bms, const UChar *target, int32_t targetLength, UErrorCode *status);
ucol.h 385 * @param targetLength The length of target, or -1 if null-terminated.
398 int32_t targetLength);
407 * @param targetLength The length of target, or -1 if null-terminated.
417 const UChar *target, int32_t targetLength);
426 * @param targetLength The length of target, or -1 if null-terminated.
436 const UChar *target, int32_t targetLength);
445 * @param targetLength The length of target, or -1 if null-terminated.
455 const UChar *target, int32_t targetLength);
    [all...]
coll.h 411 * @param targetLength the length of the target string array. If this value
419 const UChar* target, int32_t targetLength)
430 * @param targetLength the length of the target string array. If this value
439 const UChar* target, int32_t targetLength,
    [all...]
tblcoll.h 360 * @param targetLength the length of the target string array. If this value
368 const UChar* target, int32_t targetLength)
379 * @param targetLength the length of the target string array. If this value
388 const UChar* target, int32_t targetLength,
    [all...]
  /external/icu4c/i18n/unicode/
bms.h 117 * void boyerMooreExample(UCollator *collator, UChar *pattern, int32_t patternLen, UChar *target, int32_t targetLength)
130 * BMS *bms = bms_open(ucd, pattern, patternLength, target, targetlength, &status);
192 * @param targetLength - the length of the string in which to search
206 const UChar *target, int32_t targetLength,
264 * @param targetLength - the length of the new target string
270 bms_setTargetString(BMS *bms, const UChar *target, int32_t targetLength, UErrorCode *status);
ucol.h 409 * @param targetLength The length of target, or -1 if null-terminated.
422 int32_t targetLength);
431 * @param targetLength The length of target, or -1 if null-terminated.
441 const UChar *target, int32_t targetLength);
450 * @param targetLength The length of target, or -1 if null-terminated.
460 const UChar *target, int32_t targetLength);
469 * @param targetLength The length of target, or -1 if null-terminated.
479 const UChar *target, int32_t targetLength);
    [all...]
coll.h 411 * @param targetLength the length of the target string array. If this value
419 const UChar* target, int32_t targetLength)
430 * @param targetLength the length of the target string array. If this value
439 const UChar* target, int32_t targetLength,
    [all...]
tblcoll.h 360 * @param targetLength the length of the target string array. If this value
368 const UChar* target, int32_t targetLength)
379 * @param targetLength the length of the target string array. If this value
388 const UChar* target, int32_t targetLength,
    [all...]
  /external/chromium/third_party/icu/source/i18n/
bms.cpp 71 const UChar *target, int32_t targetLength,
85 bms->targetString = new UnicodeString(target, targetLength);
134 bms_setTargetString(BMS *bms, const UChar *target, int32_t targetLength, UErrorCode *status)
145 bms->targetString = new UnicodeString(target, targetLength);
bmsearch.cpp 87 int32_t targetLength;
96 targetString(NULL), targetBuffer(NULL), targetLength(0), elements(NULL), charBreakIterator(NULL)
160 targetLength = targetString->length();
166 targetBuffer, targetLength, &status);
169 targetLength = 0;
275 return targetLength;
331 while (offset < targetLength) {
342 return targetLength;
tblcoll.cpp 353 int32_t targetLength)
357 target, targetLength));
363 int32_t targetLength,
367 return ucol_strcoll(ucollator, source, sourceLength, target, targetLength);
  /external/icu4c/i18n/
bms.cpp 71 const UChar *target, int32_t targetLength,
85 bms->targetString = new UnicodeString(target, targetLength);
134 bms_setTargetString(BMS *bms, const UChar *target, int32_t targetLength, UErrorCode *status)
145 bms->targetString = new UnicodeString(target, targetLength);
bmsearch.cpp 88 int32_t targetLength;
98 targetString(NULL), targetBuffer(NULL), targetLength(0), elements(NULL), charBreakIterator(NULL)
162 targetLength = targetString->length();
168 targetBuffer, targetLength, &status);
171 targetLength = 0;
277 return targetLength;
333 while (offset < targetLength) {
344 return targetLength;
tblcoll.cpp 353 int32_t targetLength)
357 target, targetLength));
363 int32_t targetLength,
367 return ucol_strcoll(ucollator, source, sourceLength, target, targetLength);
  /external/chromium/third_party/icu/source/common/
ucnvhz.c 38 #define CONCAT_ESCAPE_MACRO( args, targetIndex,targetLength,strToAppend, err, len,sourceIndex){ \
40 if(targetIndex < targetLength){ \
341 int32_t targetLength = (int32_t)(args->targetLimit - myTarget);
357 if(args->converter->fromUChar32!=0 && myTargetIndex < targetLength) {
363 if (myTargetIndex < targetLength){
370 /*concatEscape(args, &myTargetIndex, &targetLength,"\x7E\x7E",err,2,&mySourceIndex);*/
373 CONCAT_ESCAPE_MACRO(args, myTargetIndex, targetLength, escSeq,err,len,mySourceIndex);
398 CONCAT_ESCAPE_MACRO(args, myTargetIndex, targetLength, escSeq,err,len,mySourceIndex);
404 CONCAT_ESCAPE_MACRO(args, myTargetIndex, targetLength, escSeq,err,len,mySourceIndex);
411 if( myTargetIndex <targetLength){
    [all...]
unistr.cpp     [all...]
ucnv.c     [all...]
  /external/icu4c/common/
ucnvhz.c 38 #define CONCAT_ESCAPE_MACRO( args, targetIndex,targetLength,strToAppend, err, len,sourceIndex){ \
40 if(targetIndex < targetLength){ \
341 int32_t targetLength = (int32_t)(args->targetLimit - myTarget);
357 if(args->converter->fromUChar32!=0 && myTargetIndex < targetLength) {
363 if (myTargetIndex < targetLength){
370 /*concatEscape(args, &myTargetIndex, &targetLength,"\x7E\x7E",err,2,&mySourceIndex);*/
373 CONCAT_ESCAPE_MACRO(args, myTargetIndex, targetLength, escSeq,err,len,mySourceIndex);
398 CONCAT_ESCAPE_MACRO(args, myTargetIndex, targetLength, escSeq,err,len,mySourceIndex);
404 CONCAT_ESCAPE_MACRO(args, myTargetIndex, targetLength, escSeq,err,len,mySourceIndex);
411 if( myTargetIndex <targetLength){
    [all...]
unistr.cpp     [all...]
ucnv.c     [all...]
  /external/webkit/WebCore/loader/
TextResourceDecoder.cpp 47 size_t targetLength = strlen(target);
48 if (targetLength > subjectLength)
50 for (size_t i = 0; i <= subjectLength - targetLength; ++i) {
52 for (size_t j = 0; j < targetLength; ++j) {
66 size_t targetLength = strlen(target);
67 if (targetLength > subjectLength)
70 for (size_t i = 0; i < targetLength; ++i)
73 for (size_t i = 0; i <= subjectLength - targetLength; ++i) {
75 for (size_t j = 0; j < targetLength; ++j) {
  /frameworks/base/media/libmedia/
MediaScannerClient.cpp 174 int targetLength = len * 3 + 1;
175 char* buffer = new char[targetLength];
180 ucnv_convertEx(utf8Conv, conv, &target, target + targetLength,
  /external/webkit/JavaScriptCore/icu/unicode/
ucol.h 383 * @param targetLength The length of target, or -1 if null-terminated.
396 int32_t targetLength);
405 * @param targetLength The length of target, or -1 if null-terminated.
415 const UChar *target, int32_t targetLength);
424 * @param targetLength The length of target, or -1 if null-terminated.
434 const UChar *target, int32_t targetLength);
443 * @param targetLength The length of target, or -1 if null-terminated.
453 const UChar *target, int32_t targetLength);
    [all...]
  /external/webkit/WebCore/icu/unicode/
ucol.h 383 * @param targetLength The length of target, or -1 if null-terminated.
396 int32_t targetLength);
405 * @param targetLength The length of target, or -1 if null-terminated.
415 const UChar *target, int32_t targetLength);
424 * @param targetLength The length of target, or -1 if null-terminated.
434 const UChar *target, int32_t targetLength);
443 * @param targetLength The length of target, or -1 if null-terminated.
453 const UChar *target, int32_t targetLength);
    [all...]

Completed in 660 milliseconds

1 2