Searched refs:boolStr (Results 1 – 2 of 2) sorted by relevance
318 static bool boolFromString(const char *boolStr);
2569 bool Parameters::boolFromString(const char *boolStr) { in boolFromString() argument2570 return !boolStr ? false : in boolFromString()2571 !strcmp(boolStr, CameraParameters::TRUE) ? true : in boolFromString()