Lines Matching full:area
163 CAMHAL_LOGEB("Camera area weight is invalid %d", weight);
168 CAMHAL_LOGEB("Camera area top coordinate is invalid %d", top );
173 CAMHAL_LOGEB("Camera area bottom coordinate is invalid %d", bottom );
178 CAMHAL_LOGEB("Camera area left coordinate is invalid %d", left );
183 CAMHAL_LOGEB("Camera area right coordinate is invalid %d", right );
188 CAMHAL_LOGEA("Camera area left larger than right");
193 CAMHAL_LOGEA("Camera area top larger than bottom");
200 status_t CameraArea::parseAreas(const char *area,
218 if ( ( NULL == area ) ||
230 memcpy(tmpBuffer, area, areaLength);
240 CAMHAL_LOGEA("Parsing of the left area coordinate failed!");
251 CAMHAL_LOGEA("Parsing of the top area coordinate failed!");
262 CAMHAL_LOGEA("Parsing of the right area coordinate failed!");
273 CAMHAL_LOGEA("Parsing of the bottom area coordinate failed!");
284 CAMHAL_LOGEA("Parsing of the weight area coordinate failed!");
295 CAMHAL_LOGEA("Malformed area!");
306 CAMHAL_LOGDB("Area parsed [%dx%d, %dx%d] %d",
353 bool CameraArea::compare(const sp<CameraArea> &area) {
354 return ((mTop == area->mTop) && (mLeft == area->mLeft) &&
355 (mBottom == area->mBottom) && (mRight == area->mRight) &&
356 (mWeight == area->mWeight));