Searched refs:hashPos (Results 1 – 5 of 5) sorted by relevance
73 int hashPos = line.indexOf('#'); in setFromFile() local74 if (hashPos >= 0) line = line.substring(0, hashPos); in setFromFile()231 int hashPos = test.indexOf('#'); in main() local232 if (hashPos >= 0) test = test.substring(0, hashPos); in main()
217 int hashPos = line.indexOf('#'); in fixTransRule() local219 if (hashPos >= 0 && line.indexOf('\'', hashPos) < 0) { in fixTransRule()220 String core = line.substring(0, hashPos).trim(); in fixTransRule()221 String comment = line.substring(hashPos + 1).trim(); in fixTransRule()
386 int hashPos = line.indexOf(bnfCommentString);387 if (hashPos >= 0) line = line.substring(0, hashPos);
384 int hashPos = line.indexOf(bnfCommentString);385 if (hashPos >= 0) line = line.substring(0, hashPos);
140 int32_t hashPos = UHASH_FIRST; in operator =() local141 while (const UHashElement *hashEl = uhash_nextElement(other.fNamedCaptureMap, &hashPos)) { in operator =()