Searched refs:curPos (Results 1 – 10 of 10) sorted by relevance
/external/webkit/Source/WebKit/chromium/src/ |
D | WebEntities.cpp | 67 const UChar* curPos = startPos; in convertEntitiesInString() local 72 if (m_entitiesMap.contains(*curPos)) { in convertEntitiesInString() 74 if (curPos > startPos) in convertEntitiesInString() 75 result.append(String(startPos, curPos - startPos)); in convertEntitiesInString() 77 result.append(m_entitiesMap.get(*curPos)); in convertEntitiesInString() 79 startPos = ++curPos; in convertEntitiesInString() 81 curPos++; in convertEntitiesInString() 84 if (curPos > startPos) in convertEntitiesInString() 85 result.append(String(startPos, curPos - startPos)); in convertEntitiesInString()
|
/external/srec/portable/src/ |
D | pstream.c | 305 PortFile->curPos = PortFile->curFrame->buffer; in PortFopen() 306 PortFile->endPos = PortFile->curPos + end; in PortFopen() 401 if (PortFile->endPos == PortFile->curPos) /* end of file */ in PortFread() 404 if (PortFile->curPos == curFrame->buffer + curFrame->size) /* end of this frame */ in PortFread() 408 PortFile->curPos = curFrame->buffer; in PortFread() 412 cbAvail = PortFile->endPos - PortFile->curPos; in PortFread() 414 cbAvail = curFrame->size - (PortFile->curPos - curFrame->buffer); in PortFread() 421 *bufferPtr++ = *PortFile->curPos++; in PortFread() 424 if (PortFile->curPos == PortFile->endPos) in PortFread() 464 if (PortFile->curPos == curFrame->buffer + curFrame->size) /* end of this frame */ in PortFwrite() [all …]
|
/external/webkit/Source/WebCore/platform/graphics/wince/ |
D | FontWinCE.cpp | 219 int curPos = 0; in drawComplexText() local 223 int curEnd = curPos + len; in drawComplexText() 224 if (curPos < to && from < curEnd && !comp.isSpace()) { in drawComplexText() 230 … drawSimpleText(context, comp.m_textRun, pt, from - curPos, std::min(to, curEnd) - curPos); in drawComplexText() 232 curPos += len; in drawComplexText() 233 if (from < curPos) in drawComplexText() 234 from = curPos; in drawComplexText()
|
/external/webkit/Source/WebCore/plugins/win/ |
D | PluginDatabaseWin.cpp | 60 LPWSTR curPos = moduleFileNameStr; in PathRemoveFileSpec() local 62 if (*curPos == L'/' || *curPos == L'\\') in PathRemoveFileSpec() 63 lastPos = curPos; in PathRemoveFileSpec() 64 } while (*++curPos); in PathRemoveFileSpec() 66 if (lastPos == curPos - 1) in PathRemoveFileSpec()
|
/external/nist-sip/java/gov/nist/core/ |
D | StringTokenizer.java | 124 int curPos = ptr; in peekLine() local 126 ptr = curPos; in peekLine()
|
/external/javassist/src/main/javassist/bytecode/ |
D | Descriptor.java | 797 private int index, curPos; field in Descriptor.Iterator 807 index = curPos = 0; in Iterator() 826 public char currentChar() { return desc.charAt(curPos); } in currentChar() 866 curPos = index; in next() 868 return curPos; in next()
|
/external/webkit/Source/WebCore/platform/graphics/qt/ |
D | FontQt.cpp | 325 int curPos = 0; in offsetForPositionForSimpleText() local 327 float charWidth = fm.width(string[curPos]); in offsetForPositionForSimpleText() 336 } while (++curPos < string.size()); in offsetForPositionForSimpleText() 338 return curPos; in offsetForPositionForSimpleText()
|
/external/srec/portable/include/ |
D | pstream.h | 42 const unsigned char *curPos; member
|
/external/svox/pico/lib/ |
D | picospho.c | 532 picoos_uint16 oldPos, curPos; in sphoExtractPhonemes() local 588 curPos = spho->phonWritePos; in sphoExtractPhonemes() 635 i = curPos; in sphoExtractPhonemes() 946 picoos_uint16 curPos /*, nextPos */; in sphoStep() local 993 curPos = spho->headxWritePos; in sphoStep() 1024 if (curPos < spho->headxWritePos) { /* we did get some new items */ in sphoStep() 1026 spho->headxWritePos - curPos)); in sphoStep()
|
/external/webkit/Source/WebCore/inspector/ |
D | InspectorStyleSheet.cpp | 278 …unsigned curPos = propertyStart - 1; // The last position of style declaration, since propertyStar… in setPropertyText() local 279 while (curPos && isHTMLSpace(characters[curPos])) in setPropertyText() 280 --curPos; in setPropertyText() 281 if (curPos && characters[curPos] != ';') { in setPropertyText()
|