/external/webkit/Source/WebKit/chromium/src/ |
WebEntities.cpp | 67 const UChar* curPos = startPos; 72 if (m_entitiesMap.contains(*curPos)) { 74 if (curPos > startPos) 75 result.append(String(startPos, curPos - startPos)); 77 result.append(m_entitiesMap.get(*curPos)); 79 startPos = ++curPos; 81 curPos++; 84 if (curPos > startPos) 85 result.append(String(startPos, curPos - startPos));
|
/external/srec/portable/include/ |
pstream.h | 42 const unsigned char *curPos;
|
/external/nist-sip/java/gov/nist/core/ |
StringTokenizer.java | 124 int curPos = ptr; 126 ptr = curPos;
|
/external/webkit/Source/WebCore/platform/graphics/qt/ |
FontQt.cpp | 325 int curPos = 0; 327 float charWidth = fm.width(string[curPos]); 336 } while (++curPos < string.size()); 338 return curPos;
|
/external/webkit/Source/WebCore/platform/graphics/wince/ |
FontWinCE.cpp | 219 int curPos = 0; 223 int curEnd = curPos + len; 224 if (curPos < to && from < curEnd && !comp.isSpace()) { 230 drawSimpleText(context, comp.m_textRun, pt, from - curPos, std::min(to, curEnd) - curPos); 232 curPos += len; 233 if (from < curPos) 234 from = curPos;
|
/external/javassist/src/main/javassist/bytecode/ |
Descriptor.java | 797 private int index, curPos; 807 index = curPos = 0; 826 public char currentChar() { return desc.charAt(curPos); } 866 curPos = index; 868 return curPos;
|
/external/webkit/Source/WebCore/plugins/win/ |
PluginDatabaseWin.cpp | 60 LPWSTR curPos = moduleFileNameStr; 62 if (*curPos == L'/' || *curPos == L'\\') 63 lastPos = curPos; 64 } while (*++curPos); 66 if (lastPos == curPos - 1)
|
/external/llvm/lib/CodeGen/ |
RenderMachineFunction.cpp | 102 std::string::const_iterator curPos = s.begin(); 103 std::string::const_iterator nextComa = std::find(curPos, s.end(), ','); 106 std::copy(curPos, nextComa, std::back_inserter(elem)); 109 curPos = llvm::next(nextComa); 110 nextComa = std::find(curPos, s.end(), ','); 113 if (curPos != s.end()) { 115 std::copy(curPos, s.end(), std::back_inserter(elem)); [all...] |
/packages/apps/Email/emailcommon/src/org/apache/james/mime4j/field/address/parser/ |
AddressListParserTokenManager.java | 118 private final int jjMoveNfa_0(int startState, int curPos) 202 jjmatchedPos = curPos; 205 ++curPos; 207 return curPos; 209 catch(java.io.IOException e) { return curPos; } 247 private final int jjMoveNfa_2(int startState, int curPos) 326 jjmatchedPos = curPos; 329 ++curPos; 331 return curPos; 333 catch(java.io.IOException e) { return curPos; } [all...] |
/packages/apps/Email/emailcommon/src/org/apache/james/mime4j/field/contenttype/parser/ |
ContentTypeParserTokenManager.java | 112 private final int jjMoveNfa_0(int startState, int curPos) 216 jjmatchedPos = curPos; 219 ++curPos; 221 return curPos; 223 catch(java.io.IOException e) { return curPos; } 258 private final int jjMoveNfa_1(int startState, int curPos) 337 jjmatchedPos = curPos; 340 ++curPos; 342 return curPos; 344 catch(java.io.IOException e) { return curPos; } [all...] |
/packages/apps/Email/emailcommon/src/org/apache/james/mime4j/field/datetime/parser/ |
DateTimeParserTokenManager.java | 296 private final int jjMoveNfa_0(int startState, int curPos) 380 jjmatchedPos = curPos; 383 ++curPos; 385 return curPos; 387 catch(java.io.IOException e) { return curPos; } 425 private final int jjMoveNfa_1(int startState, int curPos) 504 jjmatchedPos = curPos; 507 ++curPos; 509 return curPos; 511 catch(java.io.IOException e) { return curPos; } [all...] |
/external/svox/pico/lib/ |
picospho.c | 532 picoos_uint16 oldPos, curPos; 588 curPos = spho->phonWritePos; 635 i = curPos; [all...] |
/external/webkit/Source/WebCore/inspector/ |
InspectorStyleSheet.cpp | 278 unsigned curPos = propertyStart - 1; // The last position of style declaration, since propertyStart points past one. 279 while (curPos && isHTMLSpace(characters[curPos])) 280 --curPos; 281 if (curPos && characters[curPos] != ';') { [all...] |
/frameworks/base/core/jni/ |
android_util_Process.cpp | 560 jint curPos = 0; 574 if (curPos >= curCount) { 592 curData[curPos] = pid; 593 curPos++; 598 if (curData != NULL && curPos > 0) { 599 qsort(curData, curPos, sizeof(jint), pid_compare); 602 while (curPos < curCount) { 603 curData[curPos] = -1; 604 curPos++;
|
/frameworks/base/core/java/com/android/internal/os/ |
BatteryStatsImpl.java | [all...] |