Home | History | Annotate | Download | only in bootanimation

Lines Matching refs:str1

460 void parsePosition(const char* str1, const char* str2, int* x, int* y) {
462 if (strlen(str1) == 0) { // No values were specified
465 if (parseTextCoord(str1, y)) {
470 if (parseTextCoord(str1, x) && parseTextCoord(str2, y)) {