Searched defs:pEnd (Results 1 - 10 of 10) sorted by relevance

/external/webkit/Source/JavaScriptCore/wtf/
H A DFastAllocBase.h350 T* pEnd = p + *a.size; local
351 while (pEnd-- != p)
352 pEnd->~T();
399 T* pEnd = p + *a.size; local
400 while (pEnd-- != p)
401 pEnd->~T();
/external/icu4c/tools/toolutil/
H A Duparse.c295 uint32_t *pStart, uint32_t *pEnd,
304 if(s==NULL || pStart==NULL || pEnd==NULL) {
316 *pStart=*pEnd=value;
332 *pEnd=value;
346 uint32_t *pStart, uint32_t *pEnd,
350 u_parseCodePointRangeAnyTerminator(s, pStart, pEnd, &terminator, pErrorCode);
294 u_parseCodePointRangeAnyTerminator(const char *s, uint32_t *pStart, uint32_t *pEnd, const char **terminator, UErrorCode *pErrorCode) argument
345 u_parseCodePointRange(const char *s, uint32_t *pStart, uint32_t *pEnd, UErrorCode *pErrorCode) argument
/external/icu4c/samples/layout/
H A Dparagraph.cpp104 LEUnicode *pEnd = u_strpbrk(pStart, separators); local
108 if (pEnd == NULL) {
109 pEnd = &fChars[charCount];
112 if (pEnd != pStart) {
113 subsetFontRuns(fontRuns, pStart - fChars, pEnd - fChars, &fr);
115 paragraphLayout = new ParagraphLayout(pStart, pEnd - pStart, &fr, NULL, NULL, locales, fParagraphLevel, FALSE, status);
149 if (*pEnd == 0) {
153 pStart = skipLineEnd(pEnd);
H A Dpflow.c156 LEUnicode *pEnd = u_strpbrk(pStart, separators); local
160 if (pEnd == NULL) {
161 pEnd = &flow->fChars[charCount];
164 if (pEnd != pStart) {
165 subsetFontRuns(fontRuns, pStart - flow->fChars, pEnd - flow->fChars, fr);
169 pl_addLocaleRun(locales, TEST_LOCALE, pEnd - pStart);
172 paragraphLayout = pl_create(pStart, pEnd - pStart, fr, NULL, NULL, locales, flow->fParagraphLevel, FALSE, status);
206 if (*pEnd == 0) {
210 pStart = skipLineEnd(pEnd);
/external/icu4c/common/
H A Duset.cpp308 // UChar32* pStart, UChar32* pEnd) {
314 // *pEnd = us->getRangeEnd(rangeIndex);
481 UChar32* pStart, UChar32* pEnd) {
485 if(set==NULL || rangeIndex<0 || pStart==NULL || pEnd==NULL) {
497 *pEnd=array[rangeIndex]-1;
499 *pEnd=((((int32_t)array[rangeIndex])<<16)|array[rangeIndex+1])-1;
501 *pEnd=0x10ffff;
513 *pEnd=((((int32_t)array[rangeIndex])<<16)|array[rangeIndex+1])-1;
515 *pEnd=0x10ffff;
480 uset_getSerializedRange(const USerializedSet* set, int32_t rangeIndex, UChar32* pStart, UChar32* pEnd) argument
H A Duloc.c1205 * setting the *pEnd pointer to where they stopped parsing
1212 const char **pEnd) {
1249 if(pEnd!=NULL) {
1250 *pEnd=localeID;
1258 const char **pEnd)
1262 if (pEnd != NULL) {
1263 *pEnd = localeID;
1274 if (pEnd != NULL) {
1275 *pEnd = localeID+idLen;
1296 const char **pEnd)
1210 ulocimp_getLanguage(const char *localeID, char *language, int32_t languageCapacity, const char **pEnd) argument
1256 ulocimp_getScript(const char *localeID, char *script, int32_t scriptCapacity, const char **pEnd) argument
1294 ulocimp_getCountry(const char *localeID, char *country, int32_t countryCapacity, const char **pEnd) argument
[all...]
/external/webkit/Source/WebCore/loader/
H A DTextResourceDecoder.cpp487 static inline void skipComment(const char*& ptr, const char* pEnd) argument
490 if (p == pEnd)
496 while (p + 2 < pEnd) {
504 if (p + 3 < pEnd && p[1] == '-' && p[2] == '!' && p[3] == '>') {
536 const char* pEnd = ptr + m_buffer.size(); local
546 while (xmlDeclarationEnd != pEnd && *xmlDeclarationEnd != '>')
548 if (xmlDeclarationEnd == pEnd)
/external/sqlite/dist/
H A Dshell.c95 static double timeDiff(struct timeval *pStart, struct timeval *pEnd){ argument
96 return (pEnd->tv_usec - pStart->tv_usec)*0.000001 +
97 (double)(pEnd->tv_sec - pStart->tv_sec);
169 static double timeDiff(FILETIME *pStart, FILETIME *pEnd){ argument
171 sqlite_int64 i64End = *((sqlite_int64 *) pEnd);
H A Dsqlite3.c8889 void *pEnd; /* First byte past end of available space */ member in struct:Lookaside
17896 return p && p>=db->lookaside.pStart && p<db->lookaside.pEnd;
[all...]
/external/icu4c/i18n/
H A Ducol.cpp1637 const UChar *pEnd = data->pos; /* End normalize + 1 */ local
1649 data->nfd->normalize(UnicodeString(FALSE, pStart, (int32_t)((pEnd - pStart) + 1)),
2190 const UChar *pEnd; local
2200 pEnd = data->fcdPosition;
2203 data->nfd->normalize(UnicodeString(FALSE, pStart, (int32_t)(pEnd - pStart)), status));
2534 const UChar *pEnd = data->pos + 1; /* End normalize + 1 */ local
2543 endOfBuffer.setTo(*pEnd);
2556 data->nfd->normalize(UnicodeString(FALSE, pStart, (int32_t)(pEnd - pStart)),

Completed in 875 milliseconds