Searched refs:bEnd (Results 1 – 6 of 6) sorted by relevance
/external/chromium_org/third_party/WebKit/Source/platform/text/ |
D | UnicodeUtilities.cpp | 353 const UChar* bEnd = secondData + secondLength; in checkOnlyKanaLettersInStrings() local 361 while (b != bEnd && !isKanaLetter(*b)) in checkOnlyKanaLettersInStrings() 366 if (a == aEnd || b == bEnd) { in checkOnlyKanaLettersInStrings() 367 return a == aEnd && b == bEnd; in checkOnlyKanaLettersInStrings() 371 const size_t offset = compareKanaLetterAndComposedVoicedSoundMarks(a, aEnd, b, bEnd); in checkOnlyKanaLettersInStrings() 387 const UChar* bEnd = secondData + secondLength; in checkKanaStringsEqual() local 390 while (a != aEnd && !isKanaLetter(*a) && b != bEnd && !isKanaLetter(*b)) { in checkKanaStringsEqual() 397 if (a == aEnd || b == bEnd) { in checkKanaStringsEqual() 398 return a == aEnd && b == bEnd; in checkKanaStringsEqual() 405 const size_t offset = compareKanaLetterAndComposedVoicedSoundMarks(a, aEnd, b, bEnd); in checkKanaStringsEqual()
|
/external/bzip2/ |
D | bzip2recover.c | 297 MaybeUInt64 bEnd [BZ_MAX_HANDLED_BLOCKS]; variable 373 bEnd[currBlock] = bitsRead-1; in main() 377 currBlock, bStart[currBlock], bEnd[currBlock] ); in main() 391 bEnd[currBlock] = bitsRead-49; in main() 393 bEnd[currBlock] = 0; in main() 396 (bEnd[currBlock] - bStart[currBlock]) >= 130) { in main() 399 rbCtr+1, bStart[currBlock], bEnd[currBlock] ); in main() 401 rbEnd[rbCtr] = bEnd[currBlock]; in main()
|
/external/chromium_org/third_party/WebKit/Source/wtf/unicode/ |
D | UTF8.cpp | 422 …ool equalWithUTF8Internal(const CharType* a, const CharType* aEnd, const char* b, const char* bEnd) in equalWithUTF8Internal() argument 424 while (b < bEnd) { in equalWithUTF8Internal() 433 if (bEnd - b < utf8SequenceLength) in equalWithUTF8Internal() 460 bool equalUTF16WithUTF8(const UChar* a, const UChar* aEnd, const char* b, const char* bEnd) in equalUTF16WithUTF8() argument 462 return equalWithUTF8Internal(a, aEnd, b, bEnd); in equalUTF16WithUTF8() 465 bool equalLatin1WithUTF8(const LChar* a, const LChar* aEnd, const char* b, const char* bEnd) in equalLatin1WithUTF8() argument 467 return equalWithUTF8Internal(a, aEnd, b, bEnd); in equalLatin1WithUTF8()
|
D | UTF8.h | 80 …EXPORT bool equalUTF16WithUTF8(const UChar* a, const UChar* aEnd, const char* b, const char* bEnd); 81 …XPORT bool equalLatin1WithUTF8(const LChar* a, const LChar* aEnd, const char* b, const char* bEnd);
|
/external/chromium_org/third_party/WebKit/Source/core/page/ |
D | SpatialNavigation.cpp | 140 LayoutUnit aStart, bStart, aEnd, bEnd; in areRectsFullyAligned() local 145 bEnd = b.maxX(); in areRectsFullyAligned() 149 bEnd = a.maxX(); in areRectsFullyAligned() 153 bEnd = b.y(); in areRectsFullyAligned() 157 bEnd = a.y(); in areRectsFullyAligned() 164 if (aStart < bEnd) in areRectsFullyAligned() 174 bEnd = end(direction, b); in areRectsFullyAligned() 201 || (aMiddle >= bStart && aMiddle <= bEnd) // (2) in areRectsFullyAligned() 203 || (bEnd == aEnd)); // (4) in areRectsFullyAligned() 216 LayoutUnit bEnd = end(direction, b); in areRectsPartiallyAligned() local [all …]
|
/external/chromium_org/third_party/WebKit/Source/wtf/ |
D | HashMap.h | 437 const_iterator bEnd = b.end(); 440 if (bPos == bEnd || it->value != bPos->value)
|