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