Lines Matching defs:value
50 static void handleKeyEvent(_GLFWjoystick* js, int code, int value)
54 value ? GLFW_PRESS : GLFW_RELEASE);
59 static void handleAbsEvent(_GLFWjoystick* js, int code, int value)
78 if (value == 0)
80 else if (value < 0)
82 else if (value > 0)
90 float normalized = value;
119 handleAbsEvent(js, code, info->value);
418 handleKeyEvent(js, e.code, e.value);
420 handleAbsEvent(js, e.code, e.value);