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

1 2

  /external/chromium_org/third_party/WebKit/Source/wtf/
StringExtras.h 98 size_t targetLength = strlen(target);
99 if (targetLength == 0)
101 for (const char* start = buffer; *start && start + targetLength <= buffer + bufferLength; start++) {
102 if (*start == *target && strncmp(start + 1, target + 1, targetLength - 1) == 0)
  /external/icu/icu4c/source/i18n/
sortkey.cpp 194 int32_t targetLength = target.getLength();
195 if (minLength < targetLength) {
197 } else if (minLength == targetLength) {
200 minLength = targetLength;
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
TextResourceDecoder.cpp 66 size_t targetLength = strlen(target);
67 if (targetLength > subjectLength)
69 for (size_t i = 0; i <= subjectLength - targetLength; ++i) {
71 for (size_t j = 0; j < targetLength; ++j) {
  /external/chromium_org/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...]
ucnv.c     [all...]
  /external/icu/icu4c/source/common/
ucnvhz.c 39 #define CONCAT_ESCAPE_MACRO( args, targetIndex,targetLength,strToAppend, err, len,sourceIndex){ \
41 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...]
ucnv.c     [all...]
  /frameworks/av/media/libmedia/
CharacterEncodingDetector.cpp 222 int targetLength = len * 3 + 1;
223 char* buffer = new char[targetLength];
224 // don't normally check for NULL, but in this case targetLength may be large
229 ucnv_convertEx(mUtf8Conv, conv, &target, target + targetLength,
  /external/chromium_org/third_party/icu/source/tools/toolutil/
pkgitems.cpp 134 int32_t treeLength, suffixLength, targetLength;
150 targetLength=treeLength+idLength+suffixLength;
151 if(targetLength>=capacity) {
153 itemName, (long)targetLength);
  /external/icu/icu4c/source/tools/toolutil/
pkgitems.cpp 134 int32_t treeLength, suffixLength, targetLength;
150 targetLength=treeLength+idLength+suffixLength;
151 if(targetLength>=capacity) {
153 itemName, (long)targetLength);
  /external/chromium_org/third_party/icu/source/i18n/
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;
ucol.cpp     [all...]
  /libcore/libart/src/main/java/java/lang/
String.java     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/editing/
TextIterator.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/text/
StringImpl.cpp 692 int32_t targetLength = length;
696 targetLength = converter(data16, targetLength, source16, length, locale, &status);
698 output->truncateAssumingIsolated(targetLength);
704 output = StringImpl::createUninitialized(targetLength, data16);
    [all...]
  /external/chromium_org/third_party/icu/source/test/cintltst/
ccapitst.c     [all...]
  /external/icu/icu4c/source/test/cintltst/
ccapitst.c     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.launcher.jar 
org.eclipse.equinox.launcher_1.1.0.v20100507.jar 
com.ibm.icu_4.2.1.v20100412.jar 
org.apache.jasper_5.5.17.v201004212143.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.equinox.launcher_1.3.0.v20130327-1440.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.equinox.launcher_1.3.0.v20130327-1440.jar 
  /prebuilts/misc/common/ecj/
ecj.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/jdt/core/compiler/ecj/4.2.2/
ecj-4.2.2.jar 

Completed in 951 milliseconds

1 2