Home | History | Annotate | Download | only in input_playback

Lines Matching full:find

77             'COPY', 'OPEN', 'PASTE', 'FIND', 'CUT', 'HELP', 'MENU', 'CALC',
190 """Find input type (if any) from a string of properties.
195 if props.find('REL_X') >= 0 and props.find('REL_Y') >= 0:
196 if (props.find('ABS_MT_POSITION_X') >= 0 and
197 props.find('ABS_MT_POSITION_Y') >= 0):
201 if props.find('ABS_X') >= 0 and props.find('ABS_Y') >= 0:
202 if (props.find('BTN_STYLUS') >= 0 or
203 props.find('BTN_STYLUS2') >= 0 or
204 props.find('BTN_TOOL_PEN') >= 0):
206 if (props.find('ABS_PRESSURE') >= 0 or
207 props.find('BTN_TOUCH') >= 0):
208 if (props.find('BTN_LEFT') >= 0 or
209 props.find('BTN_MIDDLE') >= 0 or
210 props.find('BTN_RIGHT') >= 0 or
211 props.find('BTN_TOOL_FINGER') >= 0):
215 if props.find('BTN_LEFT') >= 0:
217 if props.find('KEY_') >= 0:
219 if props.find('KEY_%s' % key) >= 0:
222 if props.find('KEY_%s' % key) >= 0:
239 """Find the fw_id and hw_id for the given device directory.
307 Cycle through all possible /dev/input/event* and find which ones
342 # Find the devices folder containing power info
382 Find the total time by the difference between the first and last input.