Searched refs:currPos (Results 1 - 1 of 1) sorted by relevance

/frameworks/rs/
H A DrsScriptC.cpp86 int currPos = 0; local
91 while (currPos >= 0) {
93 * The character at currPos should be a path separator. We need to look
96 int nextPos = cacheDirString.find(OS_PATH_SEPARATOR_STR, currPos + 1);
100 currentDir += cacheDirString.substr(currPos, nextPos - currPos);
103 currentDir += cacheDirString.substr(currPos);
106 currPos = nextPos;

Completed in 40 milliseconds