Lines Matching refs:top
120 size_t &top, in transfrom() argument
136 top = ( mTop + vRange / 2 ) * vScale; in transfrom()
139 areaHeight -= top; in transfrom()
148 status_t CameraArea::checkArea(ssize_t top, in checkArea() argument
156 if ( ( 0 == top ) && ( 0 == left ) && ( 0 == bottom ) && ( 0 == right ) && ( 0 == weight ) ) { in checkArea()
165 if ( ( CameraArea::TOP > top ) || ( CameraArea::BOTTOM < top ) ) { in checkArea()
166 CAMHAL_LOGEB("Camera area top coordinate is invalid %d", top ); in checkArea()
190 if ( top >= bottom ) { in checkArea()
210 ssize_t top, left, bottom, right, weight; in parseAreas() local
255 top = static_cast<ssize_t>(strtol(pEnd+1, &pEnd, 10)); in parseAreas()
298 ret = checkArea(top, left, bottom, right, weight); in parseAreas()
303 currentArea = new CameraArea(top, left, bottom, right, weight); in parseAreas()
305 ( int ) top, in parseAreas()