Searched refs:lpEnd (Results 1 – 4 of 4) sorted by relevance
/external/mdnsresponder/mDNSWindows/ControlPanel/ |
D | ControlPanelExe.cpp | 77 LPTSTR lpEnd; in MyRegDeleteKey() local 98 lpEnd = lpSubKey + lstrlen(lpSubKey); in MyRegDeleteKey() 100 if ( *( lpEnd - 1 ) != TEXT( '\\' ) ) in MyRegDeleteKey() 102 *lpEnd = TEXT('\\'); in MyRegDeleteKey() 103 lpEnd++; in MyRegDeleteKey() 104 *lpEnd = TEXT('\0'); in MyRegDeleteKey() 116 lstrcpy (lpEnd, szName); in MyRegDeleteKey() 131 lpEnd--; in MyRegDeleteKey() 132 *lpEnd = TEXT('\0'); in MyRegDeleteKey()
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
D | RuleBasedNumberFormat.java | 1633 int lpEnd = description.indexOf(";%", lp); in extractSpecial() local 1635 if (lpEnd == -1) { in extractSpecial() 1636 lpEnd = description.length() - 1; // later we add 1 back to get the '%' in extractSpecial() 1639 while (lpStart < lpEnd && in extractSpecial() 1645 result = description.substring(lpStart, lpEnd); in extractSpecial() 1648 description.delete(lp, lpEnd+1); // delete the semicolon but not the '%' in extractSpecial()
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | RuleBasedNumberFormat.java | 1672 int lpEnd = description.indexOf(";%", lp); in extractSpecial() local 1674 if (lpEnd == -1) { in extractSpecial() 1675 lpEnd = description.length() - 1; // later we add 1 back to get the '%' in extractSpecial() 1678 while (lpStart < lpEnd && in extractSpecial() 1684 result = description.substring(lpStart, lpEnd); in extractSpecial() 1687 description.delete(lp, lpEnd+1); // delete the semicolon but not the '%' in extractSpecial()
|
/external/icu/icu4c/source/i18n/ |
D | rbnf.cpp | 1556 int lpEnd = description.indexOf(gSemiPercent, 2, lp); in init() local 1558 if (lpEnd == -1) { in init() 1559 lpEnd = description.length() - 1; in init() 1574 lenientParseRules->setTo(description, lpStart, lpEnd - lpStart); in init() 1576 description.remove(lp, lpEnd + 1 - lp); in init()
|