Lines Matching refs:getIndex
1279 if (id[pos.getIndex()] == MINUS /*'-'*/) { in parseCustomID()
1281 } else if (id[pos.getIndex()] != PLUS /*'+'*/) { in parseCustomID()
1284 pos.setIndex(pos.getIndex() + 1); in parseCustomID()
1294 int32_t start = pos.getIndex(); in parseCustomID()
1297 if (pos.getIndex() == start) { in parseCustomID()
1303 if (pos.getIndex() < id.length()) { in parseCustomID()
1304 if (pos.getIndex() - start > 2 in parseCustomID()
1305 || id[pos.getIndex()] != COLON) { in parseCustomID()
1310 pos.setIndex(pos.getIndex() + 1); in parseCustomID()
1311 int32_t oldPos = pos.getIndex(); in parseCustomID()
1314 if ((pos.getIndex() - oldPos) != 2) { in parseCustomID()
1320 if (pos.getIndex() < id.length()) { in parseCustomID()
1321 if (id[pos.getIndex()] != COLON) { in parseCustomID()
1326 pos.setIndex(pos.getIndex() + 1); in parseCustomID()
1327 oldPos = pos.getIndex(); in parseCustomID()
1330 if (pos.getIndex() != id.length() in parseCustomID()
1331 || (pos.getIndex() - oldPos) != 2) { in parseCustomID()
1347 int32_t length = pos.getIndex() - start; in parseCustomID()