/third_party/skia/src/utils/ |
H A D | SkParse.cpp | 108 const char* SkParse::FindHex(const char str[], uint32_t* value) in FindHex() argument 130 if (value) in FindHex() 131 *value = n; in FindHex() 137 const char* SkParse::FindS32(const char str[], int32_t* value) in FindS32() argument 158 if (value) in FindS32() 159 *value = (n ^ sign) - sign; in FindS32() 163 const char* SkParse::FindMSec(const char str[], SkMSec* value) in FindMSec() argument 197 if (value) in FindMSec() 198 *value = (n ^ sign) - sign; in FindMSec() 202 const char* SkParse::FindScalar(const char str[], SkScalar* value) { in FindScalar() argument 217 FindScalars(const char str[], SkScalar value[], int count) FindScalars() argument 246 FindBool(const char str[], bool* value) FindBool() argument [all...] |
/third_party/typescript/tests/baselines/reference/ |
H A D | noImplicitAnyStringIndexerOnObject.js | 30 set: (key: string, value: string) => 'foobar' 41 set: (key: "hello" | "world", value: string) => 'foobar' 50 ({ get: (key: string) => 'hello', set: (key: string, value: string) => {} })['hello']; 51 ({ get: (key: string) => 'hello', set: (key: string, value: string) => {} })['hello'] = 'modified'; 52 ({ get: (key: string) => 'hello', set: (key: string, value: string) => {} })['hello'] += 1; 53 ({ get: (key: string) => 'hello', set: (key: string, value: string) => {} })['hello'] ++; 57 ({ foo: { get: (key: string) => 'hello', set: (key: string, value: string) => {} } }).foo['hello']; 58 ({ foo: { get: (key: string) => 'hello', set: (key: string, value: string) => {} } }).foo['hello'] = 'modified'; 59 ({ foo: { get: (key: string) => 'hello', set: (key: string, value: string) => {} } }).foo['hello'] += 1; 60 ({ foo: { get: (key: string) => 'hello', set: (key: string, value [all...] |
H A D | emitter.forAwait(target=es2015).js | 55 function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
57 function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
58 function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
59 function step(result) { result.done ? resolve(result.value) : adopt(result.value) [all...] |
/third_party/skia/third_party/externals/dng_sdk/source/ |
H A D | dng_image.h | 240 /// For unsigned types, range is 0 to return value. 241 /// For signed types, range is return value - 0x8000U. 318 // Routines to set the entire image to a constant value. 320 void SetConstant_uint8 (uint8 value, in SetConstant_uint8() argument 326 SetConstant ((uint32) value, area); in SetConstant_uint8() 330 void SetConstant_uint8 (uint8 value) in SetConstant_uint8() argument 332 SetConstant (value, Bounds ()); in SetConstant_uint8() 335 void SetConstant_uint16 (uint16 value, in SetConstant_uint16() argument 341 SetConstant ((uint32) value, area); in SetConstant_uint16() 345 void SetConstant_uint16 (uint16 value) in SetConstant_uint16() argument 350 SetConstant_int16(int16 value, const dng_rect &area) SetConstant_int16() argument 360 SetConstant_int16(int16 value) SetConstant_int16() argument 365 SetConstant_uint32(uint32 value, const dng_rect &area) SetConstant_uint32() argument 375 SetConstant_uint32(uint32 value) SetConstant_uint32() argument 380 SetConstant_real32(real32 value, const dng_rect &area) SetConstant_real32() argument 398 SetConstant_real32(real32 value) SetConstant_real32() argument [all...] |
/third_party/python/Lib/ctypes/test/ |
H A D | test_strings.py | 10 self.assertEqual(buf.value, b"abc") 13 buf.value = b"ABCD" 14 self.assertEqual(buf.value, b"ABCD") 17 buf.value = b"x" 18 self.assertEqual(buf.value, b"x") 22 self.assertEqual(buf.value, b"xZCD") 25 self.assertRaises(ValueError, setattr, buf, "value", b"aaaaaaaa") 26 self.assertRaises(TypeError, setattr, buf, "value", 42) 31 buf.value = b"Hello, World" 32 self.assertEqual(buf.value, [all...] |
/base/print/print_fwk/frameworks/helper/print_helper/src/ |
H A D | napi_print_utils.cpp | 26 napi_valuetype NapiPrintUtils::GetValueType(napi_env env, napi_value value) in GetValueType() argument 28 if (value == nullptr) { in GetValueType() 33 PRINT_CALL_BASE(env, napi_typeof(env, value, &valueType), napi_undefined); in GetValueType() 47 napi_value value = nullptr; in GetNamedProperty() local 51 return value; in GetNamedProperty() 53 PRINT_CALL(env, napi_get_named_property(env, object, propertyName.c_str(), &value)); in GetNamedProperty() 54 return value; in GetNamedProperty() 57 void NapiPrintUtils::SetNamedProperty(napi_env env, napi_value object, const std::string &name, napi_value value) in SetNamedProperty() argument 59 (void)napi_set_named_property(env, object, name.c_str(), value); in SetNamedProperty() 85 napi_value value in CreateUint32() local 92 GetUint32FromValue(napi_env env, napi_value value) GetUint32FromValue() argument 104 napi_value value = GetNamedProperty(env, object, propertyName); GetUint32Property() local 108 SetUint32Property(napi_env env, napi_value object, const std::string &name, uint32_t value) SetUint32Property() argument 121 napi_value value = nullptr; CreateInt32() local 128 GetInt32FromValue(napi_env env, napi_value value) GetInt32FromValue() argument 140 napi_value value = GetNamedProperty(env, object, propertyName); GetInt32Property() local 144 SetInt32Property(napi_env env, napi_value object, const std::string &name, int32_t value) SetInt32Property() argument 157 napi_value value = nullptr; CreateStringUtf8() local 164 GetStringFromValueUtf8(napi_env env, napi_value value) GetStringFromValueUtf8() argument 181 napi_value value = GetNamedProperty(env, object, propertyName); GetStringPropertyUtf8() local 185 SetStringPropertyUtf8( napi_env env, napi_value object, const std::string &name, const std::string &value) SetStringPropertyUtf8() argument 204 ValueIsArrayBuffer(napi_env env, napi_value value) ValueIsArrayBuffer() argument 211 GetInfoFromArrayBufferValue(napi_env env, napi_value value, size_t *length) GetInfoFromArrayBufferValue() argument 281 napi_value value = GetNamedProperty(env, object, propertyName); GetBooleanProperty() local 287 SetBooleanProperty(napi_env env, napi_value object, const std::string &name, bool value) SetBooleanProperty() argument 308 GetValueString(napi_env env, napi_value value) GetValueString() argument [all...] |
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/time_picker/ |
H A D | timepicker_row_pattern.h | 91 void SetShowLunarSwitch(bool value) in SetShowLunarSwitch() argument 93 showLunarSwitch_ = value; in SetShowLunarSwitch() 142 void SetChangeCallback(ColumnChangeCallback&& value); 146 void SetEventCallback(EventCallback&& value); 166 return titleId_.value(); in GetTitleId() 202 return DividerId_.value(); in GetDividerId() 212 void SetHour24(bool value) in SetHour24() argument 214 isForceUpdate_ = value != hour24_; in SetHour24() 215 hour24_ = value; in SetHour24() 225 void SetDateTimeOptionUpdate(bool value) in SetDateTimeOptionUpdate() argument 230 SetPrefixHour(ZeroPrefixType& value) SetPrefixHour() argument 249 SetSelectedTime(const PickerTime& value) SetSelectedTime() argument 261 SetDialogTitleDate(const PickerDate& value) SetDialogTitleDate() argument 327 SetHasSecond(bool value) SetHasSecond() argument 332 SetPrefixMinute(ZeroPrefixType value) SetPrefixMinute() argument 345 SetPrefixSecond(ZeroPrefixType value) SetPrefixSecond() argument 365 SetWheelModeEnabled(bool value) SetWheelModeEnabled() argument 379 SetColumn(const RefPtr<FrameNode>& value) SetColumn() argument 394 SetIsEnableHaptic(bool value) SetIsEnableHaptic() argument 552 SetPaintDividerSpacing(float& value) SetPaintDividerSpacing() argument 562 SetCurrentFocusKeyID(int32_t value) SetCurrentFocusKeyID() argument 572 SetCurrentPage(uint32_t value) SetCurrentPage() argument [all...] |
/third_party/skia/third_party/externals/angle2/src/common/third_party/base/anglebase/numerics/ |
H A D | checked_math.h | 25 static_assert(std::is_arithmetic<T>::value, "CheckedNumeric<T>: T must be a numeric type."); 38 : state_(rhs.state_.value(), rhs.IsValid()) in CheckedNumeric() 44 constexpr CheckedNumeric(Src value) // NOLINT(runtime/explicit) in CheckedNumeric() argument 45 : state_(value) in CheckedNumeric() 47 static_assert(std::is_arithmetic<Src>::value, "Argument must be numeric."); in CheckedNumeric() 53 constexpr CheckedNumeric(StrictNumeric<Src> value) // NOLINT(runtime/explicit) in CheckedNumeric() argument 54 : state_(static_cast<Src>(value)) in CheckedNumeric() 63 return state_.is_valid() && IsValueInRangeForNumericType<Dst>(state_.value()); in IsValid() 66 // AssignIfValid(Dst) - Assigns the underlying value if it is currently valid 79 ? ((*result = static_cast<Dst>(state_.value())), tru in AssignIfValid() 203 CheckedNumeric value = *this; operator ++() local 217 const CheckedNumeric value = *this; operator --() local 257 CheckedNumeric(Src value, bool is_valid) CheckedNumeric() argument 266 static constexpr Src value(Src value) { return value; } value() function 273 static constexpr Src value(const CheckedNumeric<Src> v) { return v.state_.value(); } value() function 280 static constexpr Src value(const StrictNumeric<Src> v) { return static_cast<Src>(v); } value() function 286 IsValidForType(const CheckedNumeric<Src> value) IsValidForType() argument 292 ValueOrDieForType(const CheckedNumeric<Src> value) ValueOrDieForType() argument 298 ValueOrDefaultForType(const CheckedNumeric<Src> value, const Default default_value) ValueOrDefaultForType() argument 307 MakeCheckedNum(const T value) MakeCheckedNum() argument [all...] |
/base/hiviewdfx/hiview/base/event_report/event/ |
H A D | logger_event.cpp | 26 using ParamValueAdder = void (*)(Json::Value &root, const std::string &name, const ParamValue& value);
28 void AddUint8Value(Json::Value &root, const std::string &name, const ParamValue& value)
in AddUint8Value() argument 30 root[name] = value.GetUint8();
in AddUint8Value() 33 void AddUint16Value(Json::Value &root, const std::string &name, const ParamValue& value)
in AddUint16Value() argument 35 root[name] = value.GetUint16();
in AddUint16Value() 38 void AddUint32Value(Json::Value &root, const std::string &name, const ParamValue& value)
in AddUint32Value() argument 40 root[name] = value.GetUint32();
in AddUint32Value() 43 void AddUint64Value(Json::Value &root, const std::string &name, const ParamValue& value)
in AddUint64Value() argument 45 root[name] = value.GetUint64();
in AddUint64Value() 48 void AddStringValue(Json::Value &root, const std::string &name, const ParamValue& value)
in AddStringValue() argument 53 AddUint32VecValue(Json::Value &root, const std::string &name, const ParamValue& value) AddUint32VecValue() argument 61 AddStringVecValue(Json::Value &root, const std::string &name, const ParamValue& value) AddStringVecValue() argument 107 InnerUpdate(const std::string &name, const ParamValue& value) InnerUpdate() argument [all...] |
/base/powermgr/thermal_manager/services/native/src/thermal_action/action/ |
H A D | action_airplane.cpp | 53 void ActionAirplane::AddActionValue(std::string value) in AddActionValue() argument 55 if (value.empty()) { in AddActionValue() 59 long int result = strtol(value.c_str(), &endptr, STRTOL_FORMART_DEC); in AddActionValue() 61 THERMAL_HILOGE(COMP_SVC, "parse airplane value failed"); in AddActionValue() 71 uint32_t value = GetActionValue(); in Execute() local 72 if (value != lastValue_) { in Execute() 74 AirplaneRequest(value); in Execute() 76 AirplaneExecution(value); in Execute() 78 WriteActionTriggeredHiSysEventWithRatio(enableEvent_, actionName_, value); in Execute() 79 tms->GetObserver()->SetDecisionValue(actionName_, std::to_string(value)); in Execute() 88 uint32_t value = FALLBACK_VALUE_UINT_ZERO; GetActionValue() local 99 AirplaneRequest(const uint32_t& value) AirplaneRequest() argument 128 AirplaneExecution(const uint32_t& value) AirplaneExecution() argument [all...] |
/drivers/hdf_core/interfaces/inner_api/utils/ |
H A D | hdf_sbuf.h | 54 SBUF_TYPE_MAX, /* Maximum value of the SBUF type */ 62 * @param writeSize Indicates the size of the data segment to write. The maximum value is 512 KB. 73 * @param data Indicates the pointer to the data to write. The value cannot be a null pointer. 74 * @param writeSize Indicates the size of the data to write. The value cannot be <b>0</b>. 85 * @param value Indicates the 64-bit unsigned integer to write. 90 bool HdfSbufWriteUint64(struct HdfSBuf *sbuf, uint64_t value); 96 * @param value Indicates the 32-bit unsigned integer to write. 101 bool HdfSbufWriteUint32(struct HdfSBuf *sbuf, uint32_t value); 107 * @param value Indicates the 16-bit unsigned integer to write. 112 bool HdfSbufWriteUint16(struct HdfSBuf *sbuf, uint16_t value); [all...] |
/foundation/arkui/ace_engine/frameworks/core/animation/ |
H A D | property_animatable_helper.h | 41 bool Set(double value, Border* border) const in Set() argument 43 if (LessNotEqual(value, 0.0)) { in Set() 48 if (NearEqual(value, width.Value())) { in Set() 51 width.SetValue(value); in Set() 57 bool Set(Color value, Border* border) const in Set() argument 60 if (edge.GetColor() == value) { in Set() 63 edge.SetColor(value); in Set() 68 bool Set(BorderStyle value, Border* border) const in Set() argument 71 if (edge.GetBorderStyle() == value) { in Set() 74 edge.SetStyle(value); in Set() 97 Set(double value, Border* border) const Set() argument 128 Set(const AnimatableDimension& value, Edge* edge) const Set() argument [all...] |
/foundation/barrierfree/accessibility/services/aams/src/ |
H A D | accessibility_setting_provider.cpp | 65 RetError AccessibilitySettingProvider::GetIntValue(const std::string& key, int32_t& value) in GetIntValue() argument 67 value = AccessibilityDatashareHelper::GetIntValue(key, 0); in GetIntValue() 71 RetError AccessibilitySettingProvider::GetLongValue(const std::string& key, int64_t& value) in GetLongValue() argument 73 value = AccessibilityDatashareHelper::GetLongValue(key, 0); in GetLongValue() 77 RetError AccessibilitySettingProvider::GetFloatValue(const std::string& key, float& value) in GetFloatValue() argument 79 value = AccessibilityDatashareHelper::GetFloatValue(key, 0); in GetFloatValue() 83 RetError AccessibilitySettingProvider::GetBoolValue(const std::string& key, bool& value) in GetBoolValue() argument 85 value = AccessibilityDatashareHelper::GetBoolValue(key, 0); in GetBoolValue() 89 RetError AccessibilitySettingProvider::GetStringValue(const std::string& key, std::string& value) in GetStringValue() argument 91 value in GetStringValue() 95 PutIntValue(const std::string& key, int32_t value, bool needNotify) PutIntValue() argument 100 PutLongValue(const std::string& key, int64_t value, bool needNotify) PutLongValue() argument 105 PutBoolValue(const std::string& key, bool value, bool needNotify) PutBoolValue() argument 110 PutStringValue(const std::string& key, const std::string& value, bool needNotify) PutStringValue() argument [all...] |
/foundation/barrierfree/accessibility/services/aams/test/mock/src/ |
H A D | mock_accessibility_setting_provider.cpp | 52 RetError AccessibilitySettingProvider::GetIntValue(const std::string& key, int32_t& value) in GetIntValue() argument 56 (void)value; in GetIntValue() 60 RetError AccessibilitySettingProvider::GetLongValue(const std::string& key, int64_t& value) in GetLongValue() argument 64 (void)value; in GetLongValue() 68 RetError AccessibilitySettingProvider::GetBoolValue(const std::string& key, bool& value) in GetBoolValue() argument 72 (void)value; in GetBoolValue() 76 RetError AccessibilitySettingProvider::GetFloatValue(const std::string& key, float& value) in GetFloatValue() argument 80 (void)value; in GetFloatValue() 84 RetError AccessibilitySettingProvider::PutIntValue(const std::string& key, int32_t value, bool needNotify) in PutIntValue() argument 88 (void)value; in PutIntValue() 93 PutLongValue(const std::string& key, int64_t value, bool needNotify) PutLongValue() argument 102 PutBoolValue(const std::string& key, bool value, bool needNotify) PutBoolValue() argument 134 GetStringValue(const std::string& key, std::string& value) GetStringValue() argument 142 PutStringValue(const std::string& key, const std::string& value, bool needNotify) PutStringValue() argument [all...] |
/foundation/barrierfree/accessibility/services/test/moduletest/mock/src/ |
H A D | mock_mt_accessibility_setting_provider.cpp | 52 RetError MockAccessibilitySettingProvider::GetIntValue(const std::string& key, int32_t& value) in GetIntValue() argument 56 (void)value; in GetIntValue() 60 RetError MockAccessibilitySettingProvider::GetLongValue(const std::string& key, int64_t& value) in GetLongValue() argument 64 (void)value; in GetLongValue() 68 RetError MockAccessibilitySettingProvider::GetBoolValue(const std::string& key, bool& value) in GetBoolValue() argument 72 (void)value; in GetBoolValue() 76 RetError MockAccessibilitySettingProvider::GetFloatValue(const std::string& key, float& value) in GetFloatValue() argument 80 (void)value; in GetFloatValue() 84 RetError MockAccessibilitySettingProvider::PutIntValue(const std::string& key, int32_t value, bool needNotify) in PutIntValue() argument 88 (void)value; in PutIntValue() 93 PutLongValue(const std::string& key, int64_t value, bool needNotify) PutLongValue() argument 102 PutBoolValue(const std::string& key, bool value, bool needNotify) PutBoolValue() argument 134 GetStringValue(const std::string& key, std::string& value) GetStringValue() argument 142 PutStringValue(const std::string& key, const std::string& value, bool needNotify) PutStringValue() argument [all...] |
/foundation/barrierfree/accessibility/services/test/mock/ |
H A D | mock_accessibility_setting_provider.cpp | 50 RetError AccessibilitySettingProvider::GetIntValue(const std::string& key, int32_t& value) in GetIntValue() argument 53 (void)value; in GetIntValue() 57 RetError AccessibilitySettingProvider::GetLongValue(const std::string& key, int64_t& value) in GetLongValue() argument 60 (void)value; in GetLongValue() 64 RetError AccessibilitySettingProvider::GetBoolValue(const std::string& key, bool& value) in GetBoolValue() argument 67 (void)value; in GetBoolValue() 71 RetError AccessibilitySettingProvider::GetFloatValue(const std::string& key, float& value) in GetFloatValue() argument 74 (void)value; in GetFloatValue() 78 RetError AccessibilitySettingProvider::PutIntValue(const std::string& key, int32_t value, bool needNotify) in PutIntValue() argument 81 (void)value; in PutIntValue() 86 PutLongValue(const std::string& key, int64_t value, bool needNotify) PutLongValue() argument 94 PutBoolValue(const std::string& key, bool value, bool needNotify) PutBoolValue() argument 124 GetStringValue(const std::string& key, std::string& value) GetStringValue() argument 131 PutStringValue(const std::string& key, const std::string& value, bool needNotify) PutStringValue() argument [all...] |
/foundation/multimedia/av_codec/services/media_engine/modules/sink/ |
H A D | calc_max_amplitude.cpp | 38 int8_t value = *frame++;
in CalculateMaxAmplitudeForPCM8Bit() local 39 if (value < 0) {
in CalculateMaxAmplitudeForPCM8Bit() 40 value = -value;
in CalculateMaxAmplitudeForPCM8Bit() 42 if (curMaxAmplitude < value) {
in CalculateMaxAmplitudeForPCM8Bit() 43 curMaxAmplitude = value;
in CalculateMaxAmplitudeForPCM8Bit() 54 int16_t value = *frame++;
in CalculateMaxAmplitudeForPCM16Bit() local 55 if (value < 0) {
in CalculateMaxAmplitudeForPCM16Bit() 56 value = -value;
in CalculateMaxAmplitudeForPCM16Bit() 90 int32_t value = *frame++; CalculateMaxAmplitudeForPCM32Bit() local [all...] |
/foundation/communication/dsoftbus/core/connection/wifi_direct_cpp/data/ |
H A D | interface_info.h | 71 WifiDirectProtocol &protocol, InterfaceInfoKey key, Serializable::ValueType type, const std::string &value); 74 void SetName(const std::string &value); 82 void SetRole(LinkInfo::LinkMode value); 85 void SetSsid(const std::string &value); 89 void SetP2pListenPort(const int &value); 93 void SetP2pListenModule(const int &value); 99 void SetDynamicMac(const std::string &value); 102 void SetPsk(const std::string &value); 105 void SetCenter20M(int value); 108 void SetBandWidth(int value); [all...] |
/third_party/node/test/parallel/ |
H A D | test-vm-global-property-interceptors.js | 14 value: 'b' 17 value: 'c', 22 value: 'd' 25 value: 'e', 49 a: { value: 'a', writable: true, enumerable: true, configurable: true }, 50 b: { value: 'b', writable: false, enumerable: false, configurable: false }, 51 c: { value: 'c', writable: true, enumerable: true, configurable: false }, 52 d: { value: 'd', writable: false, enumerable: false, configurable: false }, 53 e: { value: 'e', writable: false, enumerable: false, configurable: true }, 55 value [all...] |
/third_party/libinput/test/ |
H A D | litest-device-generic-pressurepad.c | 37 { .type = EV_ABS, .code = ABS_X, .value = LITEST_AUTO_ASSIGN }, 38 { .type = EV_ABS, .code = ABS_Y, .value = LITEST_AUTO_ASSIGN }, 39 { .type = EV_ABS, .code = ABS_PRESSURE, .value = LITEST_AUTO_ASSIGN }, 40 { .type = EV_ABS, .code = ABS_MT_SLOT, .value = LITEST_AUTO_ASSIGN }, 41 { .type = EV_ABS, .code = ABS_MT_TRACKING_ID, .value = LITEST_AUTO_ASSIGN }, 42 { .type = EV_ABS, .code = ABS_MT_POSITION_X, .value = LITEST_AUTO_ASSIGN }, 43 { .type = EV_ABS, .code = ABS_MT_POSITION_Y, .value = LITEST_AUTO_ASSIGN }, 44 { .type = EV_SYN, .code = SYN_REPORT, .value = 0 }, 49 { .type = EV_ABS, .code = ABS_MT_SLOT, .value = LITEST_AUTO_ASSIGN }, 50 { .type = EV_ABS, .code = ABS_X, .value 61 get_axis_default(struct litest_device *d, unsigned int evcode, int32_t *value) get_axis_default() argument [all...] |
H A D | litest-device-elantech-touchpad.c | 30 { .type = EV_ABS, .code = ABS_X, .value = LITEST_AUTO_ASSIGN }, 31 { .type = EV_ABS, .code = ABS_Y, .value = LITEST_AUTO_ASSIGN }, 32 { .type = EV_ABS, .code = ABS_PRESSURE, .value = LITEST_AUTO_ASSIGN }, 33 { .type = EV_ABS, .code = ABS_MT_SLOT, .value = LITEST_AUTO_ASSIGN }, 34 { .type = EV_ABS, .code = ABS_MT_TRACKING_ID, .value = LITEST_AUTO_ASSIGN }, 35 { .type = EV_ABS, .code = ABS_MT_POSITION_X, .value = LITEST_AUTO_ASSIGN }, 36 { .type = EV_ABS, .code = ABS_MT_POSITION_Y, .value = LITEST_AUTO_ASSIGN }, 37 { .type = EV_SYN, .code = SYN_REPORT, .value = 0 }, 42 { .type = EV_ABS, .code = ABS_MT_SLOT, .value = LITEST_AUTO_ASSIGN }, 43 { .type = EV_ABS, .code = ABS_X, .value 53 get_axis_default(struct litest_device *d, unsigned int evcode, int32_t *value) get_axis_default() argument [all...] |
H A D | litest-device-alps-dualpoint.c | 34 { .type = EV_ABS, .code = ABS_X, .value = LITEST_AUTO_ASSIGN }, 35 { .type = EV_ABS, .code = ABS_Y, .value = LITEST_AUTO_ASSIGN }, 36 { .type = EV_ABS, .code = ABS_PRESSURE, .value = LITEST_AUTO_ASSIGN }, 37 { .type = EV_ABS, .code = ABS_MT_SLOT, .value = LITEST_AUTO_ASSIGN }, 38 { .type = EV_ABS, .code = ABS_MT_TRACKING_ID, .value = LITEST_AUTO_ASSIGN }, 39 { .type = EV_ABS, .code = ABS_MT_POSITION_X, .value = LITEST_AUTO_ASSIGN }, 40 { .type = EV_ABS, .code = ABS_MT_POSITION_Y, .value = LITEST_AUTO_ASSIGN }, 41 { .type = EV_SYN, .code = SYN_REPORT, .value = 0 }, 46 { .type = EV_ABS, .code = ABS_MT_SLOT, .value = LITEST_AUTO_ASSIGN }, 47 { .type = EV_ABS, .code = ABS_X, .value 57 get_axis_default(struct litest_device *d, unsigned int evcode, int32_t *value) get_axis_default() argument [all...] |
H A D | litest-device-synaptics-pressurepad.c | 37 { .type = EV_ABS, .code = ABS_X, .value = LITEST_AUTO_ASSIGN }, 38 { .type = EV_ABS, .code = ABS_Y, .value = LITEST_AUTO_ASSIGN }, 39 { .type = EV_ABS, .code = ABS_PRESSURE, .value = LITEST_AUTO_ASSIGN }, 40 { .type = EV_ABS, .code = ABS_MT_SLOT, .value = LITEST_AUTO_ASSIGN }, 41 { .type = EV_ABS, .code = ABS_MT_TRACKING_ID, .value = LITEST_AUTO_ASSIGN }, 42 { .type = EV_ABS, .code = ABS_MT_POSITION_X, .value = LITEST_AUTO_ASSIGN }, 43 { .type = EV_ABS, .code = ABS_MT_POSITION_Y, .value = LITEST_AUTO_ASSIGN }, 44 { .type = EV_SYN, .code = SYN_REPORT, .value = 0 }, 49 { .type = EV_ABS, .code = ABS_MT_SLOT, .value = LITEST_AUTO_ASSIGN }, 50 { .type = EV_ABS, .code = ABS_X, .value 61 get_axis_default(struct litest_device *d, unsigned int evcode, int32_t *value) get_axis_default() argument [all...] |
H A D | litest-device-synaptics-hover.c | 34 { .type = EV_ABS, .code = ABS_X, .value = LITEST_AUTO_ASSIGN }, 35 { .type = EV_ABS, .code = ABS_Y, .value = LITEST_AUTO_ASSIGN }, 36 { .type = EV_ABS, .code = ABS_PRESSURE, .value = LITEST_AUTO_ASSIGN }, 37 { .type = EV_ABS, .code = ABS_MT_SLOT, .value = LITEST_AUTO_ASSIGN }, 38 { .type = EV_ABS, .code = ABS_MT_TRACKING_ID, .value = LITEST_AUTO_ASSIGN }, 39 { .type = EV_ABS, .code = ABS_MT_POSITION_X, .value = LITEST_AUTO_ASSIGN }, 40 { .type = EV_ABS, .code = ABS_MT_POSITION_Y, .value = LITEST_AUTO_ASSIGN }, 41 { .type = EV_SYN, .code = SYN_REPORT, .value = 0 }, 46 { .type = EV_ABS, .code = ABS_MT_SLOT, .value = LITEST_AUTO_ASSIGN }, 47 { .type = EV_ABS, .code = ABS_X, .value 57 get_axis_default(struct litest_device *d, unsigned int evcode, int32_t *value) get_axis_default() argument [all...] |
H A D | litest-device-alps-semi-mt.c | 34 { .type = EV_ABS, .code = ABS_X, .value = LITEST_AUTO_ASSIGN }, 35 { .type = EV_ABS, .code = ABS_Y, .value = LITEST_AUTO_ASSIGN }, 36 { .type = EV_ABS, .code = ABS_PRESSURE, .value = LITEST_AUTO_ASSIGN }, 37 { .type = EV_ABS, .code = ABS_MT_SLOT, .value = LITEST_AUTO_ASSIGN }, 38 { .type = EV_ABS, .code = ABS_MT_TRACKING_ID, .value = LITEST_AUTO_ASSIGN }, 39 { .type = EV_ABS, .code = ABS_MT_POSITION_X, .value = LITEST_AUTO_ASSIGN }, 40 { .type = EV_ABS, .code = ABS_MT_POSITION_Y, .value = LITEST_AUTO_ASSIGN }, 41 { .type = EV_SYN, .code = SYN_REPORT, .value = 0 }, 46 { .type = EV_ABS, .code = ABS_MT_SLOT, .value = LITEST_AUTO_ASSIGN }, 47 { .type = EV_ABS, .code = ABS_X, .value 57 get_axis_default(struct litest_device *d, unsigned int evcode, int32_t *value) get_axis_default() argument [all...] |