Searched refs:aEnd (Results 1 - 11 of 11) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/wtf/unicode/
H A DUTF8.h80 WTF_EXPORT bool equalUTF16WithUTF8(const UChar* a, const UChar* aEnd, const char* b, const char* bEnd);
81 WTF_EXPORT bool equalLatin1WithUTF8(const LChar* a, const LChar* aEnd, const char* b, const char* bEnd);
H A DUTF8.cpp422 ALWAYS_INLINE bool equalWithUTF8Internal(const CharType* a, const CharType* aEnd, const char* b, const char* bEnd) argument
457 return a == aEnd;
460 bool equalUTF16WithUTF8(const UChar* a, const UChar* aEnd, const char* b, const char* bEnd) argument
462 return equalWithUTF8Internal(a, aEnd, b, bEnd);
465 bool equalLatin1WithUTF8(const LChar* a, const LChar* aEnd, const char* b, const char* bEnd) argument
467 return equalWithUTF8Internal(a, aEnd, b, bEnd);
/external/chromium_org/third_party/WebKit/Source/platform/text/
H A DUnicodeUtilities.cpp350 const UChar* aEnd = firstData + firstLength; local
359 while (a != aEnd && !isKanaLetter(*a))
366 if (a == aEnd || b == bEnd) {
367 return a == aEnd && b == bEnd;
371 const size_t offset = compareKanaLetterAndComposedVoicedSoundMarks(a, aEnd, b, bEnd);
384 const UChar* aEnd = firstData + firstLength; local
390 while (a != aEnd && !isKanaLetter(*a) && b != bEnd && !isKanaLetter(*b)) {
397 if (a == aEnd || b == bEnd) {
398 return a == aEnd && b == bEnd;
405 const size_t offset = compareKanaLetterAndComposedVoicedSoundMarks(a, aEnd,
[all...]
/external/chromium_org/third_party/WebKit/Source/core/page/
H A DSpatialNavigation.cpp140 LayoutUnit aStart, bStart, aEnd, bEnd; local
173 aEnd = end(type, a);
189 return (bMiddle >= aStart && bMiddle <= aEnd) // (1)
204 LayoutUnit aEnd = end(type, a); local
222 return (bStart >= aStart && bStart <= aEnd)
223 || (bEnd >= aStart && bEnd <= aEnd);
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DHashMap.h452 const_iterator aEnd = a.end(); local
454 for (const_iterator it = a.begin(); it != aEnd; ++it) {
/external/chromium_org/third_party/sqlite/src/ext/fts3/
H A Dfts3.c2308 char *aEnd = &aList[nList]; /* Pointer to one byte after EOF */ local
2316 while( p<aEnd ) nDoc += (((*p++)&0x80)==0);
2318 while( p<aEnd ){
2365 char *aEnd = &aList[*pnList]; /* Pointer to one byte after EOF */ local
2369 while( p<aEnd ){
/external/chromium_org/third_party/sqlite/src/src/
H A Dwal.c585 u32 *aEnd = (u32 *)&a[nByte]; local
601 }while( aData<aEnd );
607 }while( aData<aEnd );
/external/deqp/modules/gles31/functional/
H A Des31fTessellationTests.cpp1489 const bool aEnd = aIt == trianglesA.end();
1492 if (aEnd || bEnd || *aIt != *bIt)
1497 if (!aEnd && (bEnd || TriangleLexLessThan()(*aIt, *bIt)))
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c43865 u32 *aEnd = (u32 *)&a[nByte]; local
115369 char *aEnd = &aList[nList]; /* Pointer to one byte after EOF */ local
115426 char *aEnd = &aList[*pnList]; /* Pointer to one byte after EOF */ local
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.c48083 u32 *aEnd = (u32 *)&a[nByte]; local
129831 char *aEnd = &aList[nList]; /* Pointer to one byte after EOF */ local
[all...]
/external/sqlite/dist/
H A Dsqlite3.c48103 u32 *aEnd = (u32 *)&a[nByte]; local
129851 char *aEnd = &aList[nList]; /* Pointer to one byte after EOF */ local
[all...]

Completed in 1112 milliseconds