Home
last modified time | relevance | path

Searched refs:value (Results 2401 - 2425 of 22920) sorted by relevance

1...<<919293949596979899100>>...917

/third_party/libinput/src/
H A Devdev-tablet-pad.h51 uint32_t value; member
54 #define map_init(x_) ((x_).value = (uint32_t)-1)
55 #define map_is_unmapped(x_) ((x_).value == (uint32_t)-1)
56 #define map_is_button(x_) (((x_).value & 0xFF000000) == 0)
57 #define map_is_key(x_) (((x_).value & 0xFF000000) != 0)
58 #define map_set_button_map(field_, value_) ((field_).value = value_)
59 #define map_set_key_map(field_, value_) ((field_).value = value_ | 0xFF000000)
60 #define map_value(x_) ((x_).value & 0x00FFFFFF)
/third_party/node/deps/v8/src/objects/
H A Dproperty-cell.h31 // [value]: value of the global property.
32 DECL_GETTER(value, Object)
33 DECL_ACQUIRE_GETTER(value, Object)
38 // Changes the value and/or property details.
44 static PropertyCellType InitialType(Isolate* isolate, Object value);
46 // Computes the new type of the cell's contents for the given value, but
49 Object value, PropertyDetails details);
51 // Prepares property cell at given entry for receiving given value and sets
52 // that value
[all...]
/third_party/mesa3d/src/imagination/vulkan/pds/pvr_pds_programs/
H A Dpvr_draw_indirect_elements_base_instance_drawid2.h103 value) \
105 uint32_t data = value; \
111 value) \
113 uint64_t data = value; \
119 value) \
121 uint32_t data = value; \
127 value) \
129 uint32_t data = value; \
H A Dpvr_draw_indirect_elements_base_instance_drawid0.h103 value) \
105 uint32_t data = value; \
111 value) \
113 uint64_t data = value; \
119 value) \
121 uint32_t data = value; \
127 value) \
129 uint32_t data = value; \
H A Dpvr_draw_indirect_elements_base_instance_drawid3.h103 value) \
105 uint32_t data = value; \
111 value) \
113 uint64_t data = value; \
119 value) \
121 uint32_t data = value; \
127 value) \
129 uint32_t data = value; \
H A Dpvr_draw_indirect_elements_base_instance_drawid1.h103 value) \
105 uint32_t data = value; \
111 value) \
113 uint64_t data = value; \
119 value) \
121 uint32_t data = value; \
127 value) \
129 uint32_t data = value; \
/third_party/pulseaudio/src/pulsecore/
H A Djson.h94 void pa_json_encoder_add_element_bool(pa_json_encoder *encoder, bool value);
96 void pa_json_encoder_add_member_bool(pa_json_encoder *encoder, const char *name, bool value);
98 void pa_json_encoder_add_element_string(pa_json_encoder *encoder, const char *value);
100 void pa_json_encoder_add_member_string(pa_json_encoder *encoder, const char *name, const char *value);
102 void pa_json_encoder_add_element_int(pa_json_encoder *encoder, int64_t value);
104 void pa_json_encoder_add_member_int(pa_json_encoder *encoder, const char *name, int64_t value);
106 void pa_json_encoder_add_element_double(pa_json_encoder *encoder, double value, int precision);
108 void pa_json_encoder_add_member_double(pa_json_encoder *encoder, const char *name, double value, int precision);
/third_party/skia/third_party/externals/spirv-tools/test/fuzz/
H A Dtransformation_swap_two_functions_test.cpp26 // float multiplyBy2(in float value) { in TEST()
27 // return value*2.0; in TEST()
30 // float multiplyBy4(in float value) { in TEST()
31 // return multiplyBy2(value)*2.0; in TEST()
34 // float multiplyBy8(in float value) { in TEST()
35 // return multiplyBy2(value)*multiplyBy4(value); in TEST()
38 // layout(location=0) in float value; in TEST()
54 OpName %9 "value" in TEST()
56 OpName %12 "value" in TEST()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/fuzz/
H A Dtransformation_swap_two_functions_test.cpp26 // float multiplyBy2(in float value) { in TEST()
27 // return value*2.0; in TEST()
30 // float multiplyBy4(in float value) { in TEST()
31 // return multiplyBy2(value)*2.0; in TEST()
34 // float multiplyBy8(in float value) { in TEST()
35 // return multiplyBy2(value)*multiplyBy4(value); in TEST()
38 // layout(location=0) in float value; in TEST()
54 OpName %9 "value" in TEST()
56 OpName %12 "value" in TEST()
[all...]
/third_party/skia/third_party/externals/jinja2/
H A Dvisitor.py17 (return value `None`) the `generic_visit` visitor is used instead.
44 The `NodeTransformer` will walk the AST and use the return value of the
46 value of the visitor function is `None` the node will be removed
48 value. The return value may be the original node in which case no
56 for value in old_value:
57 if isinstance(value, Node):
58 value = self.visit(value, *args, **kwargs)
59 if value i
[all...]
/third_party/skia/third_party/externals/tint/fuzzers/tint_regex_fuzzer/
H A Dcli.cc51 std::cout << "Invalid value for " << param << std::endl; in InvalidParam()
56 bool ParseFuzzingTarget(const char* value, FuzzingTarget* out) { in ParseFuzzingTarget() argument
57 if (!strcmp(value, "wgsl")) { in ParseFuzzingTarget()
59 } else if (!strcmp(value, "spv")) { in ParseFuzzingTarget()
61 } else if (!strcmp(value, "msl")) { in ParseFuzzingTarget()
63 } else if (!strcmp(value, "hlsl")) { in ParseFuzzingTarget()
85 for (std::string value; std::getline(ss, value, ',');) { in ParseCliParams()
87 if (!ParseFuzzingTarget(value.c_str(), &tmp)) { in ParseCliParams()
/third_party/typescript/tests/baselines/reference/
H A DdestructuringAssignmentWithDefault2.js23 let value;
25 ({ done = false, value } = r.next());
26 ({ done: done = false, value } = r.next());
44 var value; variable
45 (_g = r.next(), _h = _g.done, done = _h === void 0 ? false : _h, value = _g.value);
46 (_j = r.next(), _k = _j.done, done = _k === void 0 ? false : _k, value = _j.value);
H A DprivateNameStaticAccessorsCallExpression.js22 var __classPrivateFieldSet = (this && this.__classPrivateFieldSet) || function (receiver, state, value, kind, f) {
26 return (kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;
31 return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
50 _A_x = { value: 1 };
H A Dipromise2.js4 then<U>(success?: (value: T) => IPromise<U>, error?: (error: any) => IPromise<U>, progress?: (progress: any) => void ): Windows.Foundation.IPromise<U>;
5 then<U>(success?: (value: T) => IPromise<U>, error?: (error: any) => U, progress?: (progress: any) => void ): Windows.Foundation.IPromise<U>;
6 then<U>(success?: (value: T) => U, error?: (error: any) => IPromise<U>, progress?: (progress: any) => void ): Windows.Foundation.IPromise<U>;
7 then<U>(success?: (value: T) => U, error?: (error: any) => U, progress?: (progress: any) => void ): Windows.Foundation.IPromise<U>;
8 done<U>(success?: (value: T) => any, error?: (error: any) => any, progress?: (progress: any) => void ): void;
9 value: T;
20 var x: number = p2.value;
29 var x = p2.value;
/third_party/python/Python/clinic/
H A Dmarshal.c.h6 "dump($module, value, file, version=version, /)\n"
9 "Write the value on the open file.\n"
11 " value\n"
18 "If the value has (or contains an object that has) an unsupported type, a\n"
26 marshal_dump_impl(PyObject *module, PyObject *value, PyObject *file,
33 PyObject *value; in marshal_dump() local
40 value = args[0]; in marshal_dump()
50 return_value = marshal_dump_impl(module, value, file, version); in marshal_dump()
60 "Read one value from the open file and return it.\n"
65 "If no valid value i
99 PyObject *value; marshal_dumps() local
[all...]
/third_party/skia/third_party/externals/abseil-cpp/absl/random/internal/
H A Dtraits_test.cc33 static_assert(is_widening_convertible<T, T>::value, in CheckWideningConvertsToSelf()
53 static_assert(!is_widening_convertible<T, signed_t>::value, in CheckNotWideningConvertibleWithSigned()
55 static_assert(!is_widening_convertible<signed_t, T>::value, in CheckNotWideningConvertibleWithSigned()
78 static_assert(is_widening_convertible<T, higher_t>::value, in CheckWideningConvertsToLargerTypes()
80 static_assert(is_widening_convertible<T, signed_higher_t>::value, in CheckWideningConvertsToLargerTypes()
82 static_assert(!is_widening_convertible<signed_t, higher_t>::value, in CheckWideningConvertsToLargerTypes()
84 static_assert(is_widening_convertible<signed_t, signed_higher_t>::value, in CheckWideningConvertsToLargerTypes()
100 static_assert(is_widening_convertible<T, U>::value == expect, in CheckWideningConvertsTo()
/third_party/skia/modules/svg/src/
H A DSkSVGFilter.cpp16 bool SkSVGFilter::parseAndSetAttribute(const char* name, const char* value) { in parseAndSetAttribute() argument
17 return INHERITED::parseAndSetAttribute(name, value) || in parseAndSetAttribute()
18 this->setX(SkSVGAttributeParser::parse<SkSVGLength>("x", name, value)) || in parseAndSetAttribute()
19 this->setY(SkSVGAttributeParser::parse<SkSVGLength>("y", name, value)) || in parseAndSetAttribute()
20 this->setWidth(SkSVGAttributeParser::parse<SkSVGLength>("width", name, value)) || in parseAndSetAttribute()
21 this->setHeight(SkSVGAttributeParser::parse<SkSVGLength>("height", name, value)) || in parseAndSetAttribute()
23 "filterUnits", name, value)) || in parseAndSetAttribute()
25 "primitiveUnits", name, value)); in parseAndSetAttribute()
H A DSkSVGFeComposite.cpp14 bool SkSVGFeComposite::parseAndSetAttribute(const char* name, const char* value) { in parseAndSetAttribute() argument
15 return INHERITED::parseAndSetAttribute(name, value) || in parseAndSetAttribute()
17 this->setIn2(SkSVGAttributeParser::parse<SkSVGFeInputType>("in2", name, value)) || in parseAndSetAttribute()
18 this->setK1(SkSVGAttributeParser::parse<SkSVGNumberType>("k1", name, value)) || in parseAndSetAttribute()
19 this->setK2(SkSVGAttributeParser::parse<SkSVGNumberType>("k2", name, value)) || in parseAndSetAttribute()
20 this->setK3(SkSVGAttributeParser::parse<SkSVGNumberType>("k3", name, value)) || in parseAndSetAttribute()
21 this->setK4(SkSVGAttributeParser::parse<SkSVGNumberType>("k4", name, value)) || in parseAndSetAttribute()
23 SkSVGAttributeParser::parse<SkSVGFeCompositeOperator>("operator", name, value)); in parseAndSetAttribute()
/third_party/spirv-tools/test/fuzz/
H A Dtransformation_swap_two_functions_test.cpp26 // float multiplyBy2(in float value) { in TEST()
27 // return value*2.0; in TEST()
30 // float multiplyBy4(in float value) { in TEST()
31 // return multiplyBy2(value)*2.0; in TEST()
34 // float multiplyBy8(in float value) { in TEST()
35 // return multiplyBy2(value)*multiplyBy4(value); in TEST()
38 // layout(location=0) in float value; in TEST()
54 OpName %9 "value" in TEST()
56 OpName %12 "value" in TEST()
[all...]
/base/hiviewdfx/hiview/base/event_report/event/include/
H A Dparam_value.h36 ParamValue(uint8_t value);
37 ParamValue(uint16_t value);
38 ParamValue(uint32_t value);
39 ParamValue(uint64_t value);
40 ParamValue(const std::string& value);
41 ParamValue(const std::vector<uint32_t>& value);
42 ParamValue(const std::vector<std::string>& value);
/base/web/webview/ohos_interface/include/ohos_nweb/
H A Dnweb_value_callback.h32 virtual void OnReceiveValue(bool value) = 0;
39 virtual void OnReceiveValue(long value) = 0;
46 virtual void OnReceiveValue(const std::string& value) = 0;
53 virtual void OnReceiveValue(const std::vector<std::string>& value) = 0;
60 virtual void OnReceiveValue(std::shared_ptr<NWebMessage> value) = 0;
67 virtual void OnReceiveValue(const std::vector<std::shared_ptr<NWebWebStorageOrigin>>& value) = 0;
74 virtual void OnReceiveValue(const char* value, const long size) = 0;
/foundation/ability/form_fwk/frameworks/js/napi/formProvider/
H A Dnative_module.cpp25 static napi_value JsProviderInit(napi_env env, napi_value value) in JsProviderInit() argument
30 napi_wrap(env, value, jsFormPorivder.release(), JsFormProvider::Finalizer, nullptr, nullptr); in JsProviderInit()
33 BindNativeFunction(env, value, "getFormsInfo", moduleName, JsFormProvider::GetFormsInfo); in JsProviderInit()
34 BindNativeFunction(env, value, "setFormNextRefreshTime", moduleName, JsFormProvider::SetFormNextRefreshTime); in JsProviderInit()
35 BindNativeFunction(env, value, "updateForm", moduleName, JsFormProvider::UpdateForm); in JsProviderInit()
36 BindNativeFunction(env, value, "isRequestPublishFormSupported", moduleName, in JsProviderInit()
38 return value; in JsProviderInit()
47 * @return The return value from Init is treated as the exports object for the module
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/linear_split/
H A Dlinear_split_layout_property.h34 auto value = MakeRefPtr<LinearSplitLayoutProperty>(); variable
35 value->LayoutProperty::UpdateLayoutProperty(DynamicCast<LayoutProperty>(this));
36 value->propResizable_ = CloneResizable();
37 value->propDivider_ = CloneDivider();
38 return value;
58 divider->Put("startMargin", propDivider_.value().startMargin.ToString().c_str());
59 divider->Put("endMargin", propDivider_.value().endMargin.ToString().c_str());
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/linear_indicator/
H A Dlinear_indicator_model_ng.h26 void SetSpace(const Dimension& value) override;
27 void SetStrokeWidth(const Dimension& value) override;
28 void SetStrokeRadius(const Dimension& value) override;
29 void SetTrackBackgroundColor(const Color& value) override;
30 void SetTrackColor(const Color& value) override;
31 void Loop(bool value) override;
39 static void SetLoop(FrameNode* frameNode, bool value);
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/text_clock/
H A Dtext_clock_model.h36 virtual void SetFontSize(const Dimension& value) = 0;
37 virtual void SetTextColor(const Color& value) = 0;
38 virtual void SetItalicFontStyle(Ace::FontStyle value) = 0;
39 virtual void SetFontWeight(FontWeight value) = 0;
40 virtual void SetFontFamily(const std::vector<std::string>& value) = 0;
41 virtual void SetTextShadow(const std::vector<Shadow>& value) = 0;
42 virtual void SetFontFeature(const std::list<std::pair<std::string, int32_t>>& value) = 0;

Completed in 10 milliseconds

1...<<919293949596979899100>>...917