Lines Matching refs:top
122 size_t &top, in transfrom() argument
138 top = ( mTop + vRange / 2 ) * vScale; in transfrom()
141 areaHeight -= top; in transfrom()
150 status_t CameraArea::checkArea(ssize_t top, in checkArea() argument
158 if ( ( 0 == top ) && ( 0 == left ) && ( 0 == bottom ) && ( 0 == right ) && ( 0 == weight ) ) { in checkArea()
167 if ( ( CameraArea::TOP > top ) || ( CameraArea::BOTTOM < top ) ) { in checkArea()
168 CAMHAL_LOGEB("Camera area top coordinate is invalid %d", top ); in checkArea()
192 if ( top >= bottom ) { in checkArea()
212 ssize_t top, left, bottom, right, weight; in parseAreas() local
257 top = static_cast<ssize_t>(strtol(pEnd+1, &pEnd, 10)); in parseAreas()
300 ret = checkArea(top, left, bottom, right, weight); in parseAreas()
305 currentArea = new CameraArea(top, left, bottom, right, weight); in parseAreas()
307 ( int ) top, in parseAreas()