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