Home
last modified time | relevance | path

Searched refs:curPos (Results 1 – 10 of 10) sorted by relevance

/external/webkit/Source/WebKit/chromium/src/
DWebEntities.cpp67 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/
Dpstream.c305 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/
DFontWinCE.cpp219 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/
DPluginDatabaseWin.cpp60 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/
DStringTokenizer.java124 int curPos = ptr; in peekLine() local
126 ptr = curPos; in peekLine()
/external/javassist/src/main/javassist/bytecode/
DDescriptor.java797 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/
DFontQt.cpp325 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/
Dpstream.h42 const unsigned char *curPos; member
/external/svox/pico/lib/
Dpicospho.c532 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/
DInspectorStyleSheet.cpp278 …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()