Lines Matching full:area
161 CAMHAL_LOGEB("Camera area weight is invalid %d", weight);
166 CAMHAL_LOGEB("Camera area top coordinate is invalid %d", top );
171 CAMHAL_LOGEB("Camera area bottom coordinate is invalid %d", bottom );
176 CAMHAL_LOGEB("Camera area left coordinate is invalid %d", left );
181 CAMHAL_LOGEB("Camera area right coordinate is invalid %d", right );
186 CAMHAL_LOGEA("Camera area left larger than right");
191 CAMHAL_LOGEA("Camera area top larger than bottom");
198 status_t CameraArea::parseAreas(const char *area,
216 if ( ( NULL == area ) ||
228 memcpy(tmpBuffer, area, areaLength);
238 CAMHAL_LOGEA("Parsing of the left area coordinate failed!");
249 CAMHAL_LOGEA("Parsing of the top area coordinate failed!");
260 CAMHAL_LOGEA("Parsing of the right area coordinate failed!");
271 CAMHAL_LOGEA("Parsing of the bottom area coordinate failed!");
282 CAMHAL_LOGEA("Parsing of the weight area coordinate failed!");
293 CAMHAL_LOGEA("Malformed area!");
304 CAMHAL_LOGDB("Area parsed [%dx%d, %dx%d] %d",
351 bool CameraArea::compare(const android::sp<CameraArea> &area) {
352 return ((mTop == area->mTop) && (mLeft == area->mLeft) &&
353 (mBottom == area->mBottom) && (mRight == area->mRight) &&
354 (mWeight == area->mWeight));