Home
last modified time | relevance | path

Searched refs:eidx (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/tools/aapt/
DStringPool.cpp124 ssize_t eidx = pos >= 0 ? mEntryArray.itemAt(pos) : -1; in add() local
125 if (eidx < 0) { in add()
126 eidx = mEntries.add(entry(value)); in add()
127 if (eidx < 0) { in add()
129 return eidx; in add()
134 entry& ent = mEntries.editItemAt(eidx); in add()
146 entry& ent = mEntries.editItemAt(eidx); in add()
168 pos = mEntryArray.add(eidx); in add()
172 entry& ent = mEntries.editItemAt(eidx); in add()
177 String8(value).string(), pos, eidx, vidx)); in add()
/frameworks/base/services/java/com/android/server/pm/
DPackageManagerService.java6540 int eidx = fullCodePath.lastIndexOf("/"); in cidFromCodePath() local
6541 String subStr1 = fullCodePath.substring(0, eidx); in cidFromCodePath()
6543 return subStr1.substring(sidx+1, eidx); in cidFromCodePath()
6565 int eidx = fullCodePath.lastIndexOf("/"); in AsecInstallArgs() local
6566 String subStr1 = fullCodePath.substring(0, eidx); in AsecInstallArgs()
6568 cid = subStr1.substring(sidx+1, eidx); in AsecInstallArgs()
6892 int eidx = codePath.lastIndexOf("."); in getApkName() local
6893 if (eidx == -1) { in getApkName()
6894 eidx = codePath.length(); in getApkName()
6895 } else if (eidx == 0) { in getApkName()
[all …]