Home
last modified time | relevance | path

Searched refs:props (Results 1 - 25 of 1705) sorted by relevance

12345678910>>...69

/third_party/ffmpeg/libavcodec/
H A Dcodec_desc.c41 .props = AV_CODEC_PROP_LOSSY | AV_CODEC_PROP_REORDER,
48 .props = AV_CODEC_PROP_LOSSY | AV_CODEC_PROP_REORDER,
56 .props = AV_CODEC_PROP_LOSSY,
63 .props = AV_CODEC_PROP_LOSSY | AV_CODEC_PROP_REORDER,
70 .props = AV_CODEC_PROP_LOSSY,
77 .props = AV_CODEC_PROP_LOSSY | AV_CODEC_PROP_REORDER,
84 .props = AV_CODEC_PROP_INTRA_ONLY | AV_CODEC_PROP_LOSSY,
93 .props = AV_CODEC_PROP_INTRA_ONLY | AV_CODEC_PROP_LOSSY,
100 .props = AV_CODEC_PROP_INTRA_ONLY | AV_CODEC_PROP_LOSSLESS,
107 .props
[all...]
/third_party/typescript/tests/baselines/reference/
H A DinlineJsxFactoryDeclarationsLocalTypes.js11 props: {
18 interface ElementAttributesProperty { props: any; }
31 props: {
38 interface ElementAttributesProperty { props: any; }
47 export const MySFC = (props: {x: number, y: number, children?: predom.JSX.Element[]}) => <p>{props.x} + {props.y} = {props.x + props.y}{...this.props
[all...]
H A DjsxSpreadOverwritesAttributeStrict.js12 const props: Props = { a: 1, b: 1 };
13 const Foo = (props: Props) => <div>{ props.a }</div>;
16 const a1 = <Foo {...props}></Foo>;
17 const a2 = <Foo d={1} {...props}></Foo>;
20 const b1 = <Foo a={1} {...props}></Foo>;
21 const b2 = <Foo a={1} b={2} {...props}></Foo>;
22 const b3 = <Foo a={1} d={1} {...props} {...{ d: 1 }}></Foo>;
23 const b4 = <Foo a={1} d={1} {...props} {...{ a: 1, d: 1 }}></Foo>;
30 var props
[all...]
H A DtsxGenericAttributesType1.js5 return (props) => <Component {...props}></Component>
9 return (props) => <Component {...props} x={2} ></Component>
13 return (props) => <Component x={2} {...props} ></Component>
21 return function (props) { return <Component {...props}></Component>; };
24 return function (props) { return <Component {...props}
[all...]
/third_party/jerryscript/tests/jerry/es2015/
H A Dobject-get-own-property-symbols.js23 var props = Object.getOwnPropertySymbols (arr);
24 // props should not contain: a, b, c, d
25 assert (props.indexOf ('0') === -1);
26 assert (props.indexOf ('1') === -1);
27 assert (props.indexOf ('2') === -1);
28 assert (props.indexOf ('length') === -1);
29 assert (props.length === 0);
37 props = Object.getOwnPropertySymbols (obj);
38 // props should contain: a, b, c, d and the order is not defined!
39 assert (props
[all...]
/third_party/jerryscript/tests/jerry/
H A Dobject-keys.js17 var props = Object.keys(arr);
18 // props should contain: 0,1,2 and the order is not defined!
19 assert (props.indexOf("0") !== -1);
20 assert (props.indexOf("1") !== -1);
21 assert (props.indexOf("2") !== -1);
22 assert (props.length === 3);
26 props = Object.keys(obj);
27 // props should contain: key1,key2,key3,key4,key5 and the order is not defined!
28 assert (props.indexOf("key1") !== -1);
29 assert (props
[all...]
H A Dobject-get-own-property-names.js17 var props = Object.getOwnPropertyNames(arr);
18 // props should contain: 0,1,2,length and the order is not defined!
19 assert (props.indexOf("0") !== -1);
20 assert (props.indexOf("1") !== -1);
21 assert (props.indexOf("2") !== -1);
22 assert (props.indexOf("length") !== -1);
23 assert (props.length === 4);
27 props = Object.getOwnPropertyNames(obj);
28 // props should contain: key1,key2,key3,key4,key5 and the order is not defined!
29 assert (props
[all...]
/third_party/icu/icu4c/source/common/
H A Duchar.cpp50 uint32_t props; in u_charType() local
51 GET_PROPS(c, props); in u_charType()
52 return (int8_t)GET_CATEGORY(props); in u_charType()
91 uint32_t props; in u_islower() local
92 GET_PROPS(c, props); in u_islower()
93 return (UBool)(GET_CATEGORY(props)==U_LOWERCASE_LETTER); in u_islower()
99 uint32_t props; in u_isupper() local
100 GET_PROPS(c, props); in u_isupper()
101 return (UBool)(GET_CATEGORY(props)==U_UPPERCASE_LETTER); in u_isupper()
107 uint32_t props; in u_istitle() local
115 uint32_t props; u_isdigit() local
122 uint32_t props; u_isxdigit() local
139 uint32_t props; u_isalpha() local
152 uint32_t props; u_isalnum() local
169 uint32_t props; u_isdefined() local
177 uint32_t props; u_isbase() local
185 uint32_t props; u_iscntrl() local
206 uint32_t props; u_isspace() local
213 uint32_t props; u_isJavaSpaceChar() local
221 uint32_t props; u_isWhitespace() local
236 uint32_t props; u_isblank() local
250 uint32_t props; u_isprint() local
263 uint32_t props; u_isprintPOSIX() local
274 uint32_t props; u_isgraph() local
291 uint32_t props; u_isgraphPOSIX() local
302 uint32_t props; u_ispunct() local
311 uint32_t props; u_isIDStart() local
320 uint32_t props; u_isIDPart() local
337 uint32_t props; u_isIDIgnorable() local
346 uint32_t props; u_isJavaIDStart() local
356 uint32_t props; u_isJavaIDPart() local
370 uint32_t props; u_charDigitValue() local
383 uint32_t props; u_getNumericValue() local
519 uint32_t props; u_getMainProperties() local
[all...]
/third_party/skia/third_party/externals/icu/source/common/
H A Duchar.cpp50 uint32_t props; in u_charType() local
51 GET_PROPS(c, props); in u_charType()
52 return (int8_t)GET_CATEGORY(props); in u_charType()
91 uint32_t props; in u_islower() local
92 GET_PROPS(c, props); in u_islower()
93 return (UBool)(GET_CATEGORY(props)==U_LOWERCASE_LETTER); in u_islower()
99 uint32_t props; in u_isupper() local
100 GET_PROPS(c, props); in u_isupper()
101 return (UBool)(GET_CATEGORY(props)==U_UPPERCASE_LETTER); in u_isupper()
107 uint32_t props; in u_istitle() local
115 uint32_t props; u_isdigit() local
122 uint32_t props; u_isxdigit() local
139 uint32_t props; u_isalpha() local
152 uint32_t props; u_isalnum() local
169 uint32_t props; u_isdefined() local
177 uint32_t props; u_isbase() local
185 uint32_t props; u_iscntrl() local
206 uint32_t props; u_isspace() local
213 uint32_t props; u_isJavaSpaceChar() local
221 uint32_t props; u_isWhitespace() local
236 uint32_t props; u_isblank() local
250 uint32_t props; u_isprint() local
263 uint32_t props; u_isprintPOSIX() local
274 uint32_t props; u_isgraph() local
291 uint32_t props; u_isgraphPOSIX() local
302 uint32_t props; u_ispunct() local
311 uint32_t props; u_isIDStart() local
320 uint32_t props; u_isIDPart() local
337 uint32_t props; u_isIDIgnorable() local
346 uint32_t props; u_isJavaIDStart() local
356 uint32_t props; u_isJavaIDPart() local
370 uint32_t props; u_charDigitValue() local
383 uint32_t props; u_getNumericValue() local
519 uint32_t props; u_getMainProperties() local
[all...]
/third_party/node/deps/icu-small/source/common/
H A Duchar.cpp50 uint32_t props; in u_charType() local
51 GET_PROPS(c, props); in u_charType()
52 return (int8_t)GET_CATEGORY(props); in u_charType()
91 uint32_t props; in u_islower() local
92 GET_PROPS(c, props); in u_islower()
93 return (UBool)(GET_CATEGORY(props)==U_LOWERCASE_LETTER); in u_islower()
99 uint32_t props; in u_isupper() local
100 GET_PROPS(c, props); in u_isupper()
101 return (UBool)(GET_CATEGORY(props)==U_UPPERCASE_LETTER); in u_isupper()
107 uint32_t props; in u_istitle() local
115 uint32_t props; u_isdigit() local
122 uint32_t props; u_isxdigit() local
139 uint32_t props; u_isalpha() local
152 uint32_t props; u_isalnum() local
169 uint32_t props; u_isdefined() local
177 uint32_t props; u_isbase() local
185 uint32_t props; u_iscntrl() local
206 uint32_t props; u_isspace() local
213 uint32_t props; u_isJavaSpaceChar() local
221 uint32_t props; u_isWhitespace() local
236 uint32_t props; u_isblank() local
250 uint32_t props; u_isprint() local
263 uint32_t props; u_isprintPOSIX() local
274 uint32_t props; u_isgraph() local
291 uint32_t props; u_isgraphPOSIX() local
302 uint32_t props; u_ispunct() local
313 uint32_t props; u_isIDIgnorable() local
322 uint32_t props; u_isJavaIDStart() local
332 uint32_t props; u_isJavaIDPart() local
346 uint32_t props; u_charDigitValue() local
359 uint32_t props; u_getNumericValue() local
495 uint32_t props; u_getMainProperties() local
[all...]
/kernel/linux/linux-5.10/arch/powerpc/platforms/powermac/
H A Dbacklight.c108 struct backlight_properties *props; in pmac_backlight_key_worker() local
111 props = &pmac_backlight->props; in pmac_backlight_key_worker()
113 brightness = props->brightness + in pmac_backlight_key_worker()
115 (props->max_brightness / 15)); in pmac_backlight_key_worker()
119 else if (brightness > props->max_brightness) in pmac_backlight_key_worker()
120 brightness = props->max_brightness; in pmac_backlight_key_worker()
122 props->brightness = brightness; in pmac_backlight_key_worker()
147 struct backlight_properties *props; in __pmac_backlight_set_legacy_brightness() local
149 props in __pmac_backlight_set_legacy_brightness()
196 struct backlight_properties *props; pmac_backlight_get_legacy_brightness() local
[all...]
/kernel/linux/linux-6.6/arch/powerpc/platforms/powermac/
H A Dbacklight.c107 struct backlight_properties *props; in pmac_backlight_key_worker() local
110 props = &pmac_backlight->props; in pmac_backlight_key_worker()
112 brightness = props->brightness + in pmac_backlight_key_worker()
114 (props->max_brightness / 15)); in pmac_backlight_key_worker()
118 else if (brightness > props->max_brightness) in pmac_backlight_key_worker()
119 brightness = props->max_brightness; in pmac_backlight_key_worker()
121 props->brightness = brightness; in pmac_backlight_key_worker()
146 struct backlight_properties *props; in __pmac_backlight_set_legacy_brightness() local
148 props in __pmac_backlight_set_legacy_brightness()
195 struct backlight_properties *props; pmac_backlight_get_legacy_brightness() local
[all...]
/kernel/linux/linux-5.10/drivers/media/usb/dvb-usb-v2/
H A Dusb_urb.c17 struct usb_data_stream_properties *props);
92 struct usb_data_stream_properties *props) in usb_urb_submitv2()
96 if (props) { in usb_urb_submitv2()
97 ret = usb_urb_reconfig(stream, props); in usb_urb_submitv2()
141 for (i = 0; i < stream->props.count; i++) { in usb_urb_alloc_bulk_urbs()
153 stream->props.endpoint), in usb_urb_alloc_bulk_urbs()
155 stream->props.u.bulk.buffersize, in usb_urb_alloc_bulk_urbs()
168 for (i = 0; i < stream->props.count; i++) { in usb_urb_alloc_isoc_urbs()
173 stream->props.u.isoc.framesperurb, GFP_ATOMIC); in usb_urb_alloc_isoc_urbs()
187 stream->props in usb_urb_alloc_isoc_urbs()
91 usb_urb_submitv2(struct usb_data_stream *stream, struct usb_data_stream_properties *props) usb_urb_submitv2() argument
250 usb_urb_reconfig(struct usb_data_stream *stream, struct usb_data_stream_properties *props) usb_urb_reconfig() argument
306 usb_urb_initv2(struct usb_data_stream *stream, const struct usb_data_stream_properties *props) usb_urb_initv2() argument
[all...]
/kernel/linux/linux-6.6/drivers/media/usb/dvb-usb-v2/
H A Dusb_urb.c17 struct usb_data_stream_properties *props);
92 struct usb_data_stream_properties *props) in usb_urb_submitv2()
96 if (props) { in usb_urb_submitv2()
97 ret = usb_urb_reconfig(stream, props); in usb_urb_submitv2()
141 for (i = 0; i < stream->props.count; i++) { in usb_urb_alloc_bulk_urbs()
153 stream->props.endpoint), in usb_urb_alloc_bulk_urbs()
155 stream->props.u.bulk.buffersize, in usb_urb_alloc_bulk_urbs()
168 for (i = 0; i < stream->props.count; i++) { in usb_urb_alloc_isoc_urbs()
173 stream->props.u.isoc.framesperurb, GFP_ATOMIC); in usb_urb_alloc_isoc_urbs()
187 stream->props in usb_urb_alloc_isoc_urbs()
91 usb_urb_submitv2(struct usb_data_stream *stream, struct usb_data_stream_properties *props) usb_urb_submitv2() argument
250 usb_urb_reconfig(struct usb_data_stream *stream, struct usb_data_stream_properties *props) usb_urb_reconfig() argument
306 usb_urb_initv2(struct usb_data_stream *stream, const struct usb_data_stream_properties *props) usb_urb_initv2() argument
[all...]
/kernel/linux/linux-6.6/include/sound/
H A Dsimple_card_utils.h84 #define simple_props_to_dlc_cpu(props, i) ((props)->cpus + i)
85 #define simple_props_to_dlc_codec(props, i) ((props)->codecs + i)
86 #define simple_props_to_dlc_platform(props, i) ((props)->platforms + i)
88 #define simple_props_to_dai_cpu(props, i) ((props)->cpu_dai + i)
89 #define simple_props_to_dai_codec(props, i) ((props)
242 struct simple_dai_props *props = simple_priv_to_props(priv, i); asoc_simple_debug_info() local
[all...]
/kernel/linux/linux-5.10/drivers/media/usb/dvb-usb/
H A Ddvb-usb-init.c31 for (n = 0; n < d->props.num_adapters; n++) { in dvb_usb_adapter_init()
36 memcpy(&adap->props, &d->props.adapter[n], sizeof(struct dvb_usb_adapter_properties)); in dvb_usb_adapter_init()
38 for (o = 0; o < adap->props.num_frontends; o++) { in dvb_usb_adapter_init()
39 struct dvb_usb_adapter_fe_properties *props = &adap->props.fe[o]; in dvb_usb_adapter_init() local
41 if (d->udev->speed == USB_SPEED_FULL && !(props->caps & DVB_USB_ADAP_HAS_PID_FILTER)) { in dvb_usb_adapter_init()
46 if ((d->udev->speed == USB_SPEED_FULL && props->caps & DVB_USB_ADAP_HAS_PID_FILTER) || in dvb_usb_adapter_init()
47 (props->caps & DVB_USB_ADAP_NEED_PID_FILTERING)) { in dvb_usb_adapter_init()
48 info("will use the device's hardware PID filter (table count: %d).", props in dvb_usb_adapter_init()
210 dvb_usb_find_device(struct usb_device *udev, const struct dvb_usb_device_properties *props, int *cold) dvb_usb_find_device() argument
267 dvb_usb_device_init(struct usb_interface *intf, const struct dvb_usb_device_properties *props, struct module *owner, struct dvb_usb_device **du, short *adapter_nums) dvb_usb_device_init() argument
[all...]
/kernel/linux/linux-6.6/drivers/media/usb/dvb-usb/
H A Ddvb-usb-init.c31 for (n = 0; n < d->props.num_adapters; n++) { in dvb_usb_adapter_init()
36 memcpy(&adap->props, &d->props.adapter[n], sizeof(struct dvb_usb_adapter_properties)); in dvb_usb_adapter_init()
38 for (o = 0; o < adap->props.num_frontends; o++) { in dvb_usb_adapter_init()
39 struct dvb_usb_adapter_fe_properties *props = &adap->props.fe[o]; in dvb_usb_adapter_init() local
41 if (d->udev->speed == USB_SPEED_FULL && !(props->caps & DVB_USB_ADAP_HAS_PID_FILTER)) { in dvb_usb_adapter_init()
46 if ((d->udev->speed == USB_SPEED_FULL && props->caps & DVB_USB_ADAP_HAS_PID_FILTER) || in dvb_usb_adapter_init()
47 (props->caps & DVB_USB_ADAP_NEED_PID_FILTERING)) { in dvb_usb_adapter_init()
48 info("will use the device's hardware PID filter (table count: %d).", props in dvb_usb_adapter_init()
210 dvb_usb_find_device(struct usb_device *udev, const struct dvb_usb_device_properties *props, int *cold) dvb_usb_find_device() argument
267 dvb_usb_device_init(struct usb_interface *intf, const struct dvb_usb_device_properties *props, struct module *owner, struct dvb_usb_device **du, short *adapter_nums) dvb_usb_device_init() argument
[all...]
/kernel/linux/linux-5.10/drivers/infiniband/hw/vmw_pvrdma/
H A Dpvrdma_verbs.c60 * @props: the device properties
66 struct ib_device_attr *props, in pvrdma_query_device()
74 props->fw_ver = dev->dsr->caps.fw_ver; in pvrdma_query_device()
75 props->sys_image_guid = dev->dsr->caps.sys_image_guid; in pvrdma_query_device()
76 props->max_mr_size = dev->dsr->caps.max_mr_size; in pvrdma_query_device()
77 props->page_size_cap = dev->dsr->caps.page_size_cap; in pvrdma_query_device()
78 props->vendor_id = dev->dsr->caps.vendor_id; in pvrdma_query_device()
79 props->vendor_part_id = dev->pdev->device; in pvrdma_query_device()
80 props->hw_ver = dev->dsr->caps.hw_ver; in pvrdma_query_device()
81 props in pvrdma_query_device()
65 pvrdma_query_device(struct ib_device *ibdev, struct ib_device_attr *props, struct ib_udata *uhw) pvrdma_query_device() argument
128 pvrdma_query_port(struct ib_device *ibdev, u8 port, struct ib_port_attr *props) pvrdma_query_port() argument
240 pvrdma_modify_device(struct ib_device *ibdev, int mask, struct ib_device_modify *props) pvrdma_modify_device() argument
277 pvrdma_modify_port(struct ib_device *ibdev, u8 port, int mask, struct ib_port_modify *props) pvrdma_modify_port() argument
[all...]
/kernel/linux/linux-6.6/drivers/infiniband/hw/vmw_pvrdma/
H A Dpvrdma_verbs.c60 * @props: the device properties
66 struct ib_device_attr *props, in pvrdma_query_device()
74 props->fw_ver = dev->dsr->caps.fw_ver; in pvrdma_query_device()
75 props->sys_image_guid = dev->dsr->caps.sys_image_guid; in pvrdma_query_device()
76 props->max_mr_size = dev->dsr->caps.max_mr_size; in pvrdma_query_device()
77 props->page_size_cap = dev->dsr->caps.page_size_cap; in pvrdma_query_device()
78 props->vendor_id = dev->dsr->caps.vendor_id; in pvrdma_query_device()
79 props->vendor_part_id = dev->pdev->device; in pvrdma_query_device()
80 props->hw_ver = dev->dsr->caps.hw_ver; in pvrdma_query_device()
81 props in pvrdma_query_device()
65 pvrdma_query_device(struct ib_device *ibdev, struct ib_device_attr *props, struct ib_udata *uhw) pvrdma_query_device() argument
128 pvrdma_query_port(struct ib_device *ibdev, u32 port, struct ib_port_attr *props) pvrdma_query_port() argument
240 pvrdma_modify_device(struct ib_device *ibdev, int mask, struct ib_device_modify *props) pvrdma_modify_device() argument
277 pvrdma_modify_port(struct ib_device *ibdev, u32 port, int mask, struct ib_port_modify *props) pvrdma_modify_port() argument
[all...]
/third_party/node/deps/npm/node_modules/err-code/
H A Dindex.js3 function assign(obj, props) {
4 for (const key in props) {
6 value: props[key],
15 function createError(err, code, props) {
20 if (!props) {
21 props = {};
25 props = code;
30 props.code = code;
34 return assign(err, props);
36 props
[all...]
/third_party/lzma/C/
H A DLzmaLib.c22 CLzmaEncProps props; in LzmaCompress() local
23 LzmaEncProps_Init(&props); in LzmaCompress()
24 props.level = level; in LzmaCompress()
25 props.dictSize = dictSize; in LzmaCompress()
26 props.lc = lc; in LzmaCompress()
27 props.lp = lp; in LzmaCompress()
28 props.pb = pb; in LzmaCompress()
29 props.fb = fb; in LzmaCompress()
30 props.numThreads = numThreads; in LzmaCompress()
32 return LzmaEncode(dest, destLen, src, srcLen, &props, outProp in LzmaCompress()
37 LzmaUncompress(unsigned char *dest, size_t *destLen, const unsigned char *src, size_t *srcLen, const unsigned char *props, size_t propsSize) LzmaUncompress() argument
[all...]
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/grid/
H A Dgrid_item_layout_algorithm.cpp24 auto props = AceType::DynamicCast<GridItemLayoutProperty>(layoutWrapper->GetLayoutProperty()); in Measure() local
25 CHECK_NULL_VOID(props); in Measure()
36 auto props = AceType::DynamicCast<GridItemLayoutProperty>(layoutWrapper->GetLayoutProperty()); in CreateChildConstraint() local
37 auto layoutConstraint = props->CreateChildConstraint(); in CreateChildConstraint()
39 if (!props->GetNeedStretch()) { in CreateChildConstraint()
40 if (props->GetStretchChild()) { in CreateChildConstraint()
41 props->SetStretchChild(false); in CreateChildConstraint()
58 if (props->GetStretchChild() || (!childConstraint->selfIdealSize.MainSize(props->GetAxis()).has_value() && in CreateChildConstraint()
59 layoutConstraint.parentIdealSize.MainSize(props in CreateChildConstraint()
[all...]
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DUCaseProps.java114 private static final int getExceptionsOffset(int props) { in getExceptionsOffset() argument
115 return props>>EXC_SHIFT; in getExceptionsOffset()
118 static final boolean propsHasException(int props) { in propsHasException() argument
119 return (props&EXCEPTION)!=0; in propsHasException()
188 int props=trie.get(c); in tolower()
189 if(!propsHasException(props)) { in tolower()
190 if(isUpperOrTitleFromProps(props)) { in tolower()
191 c+=getDelta(props); in tolower()
194 int excOffset=getExceptionsOffset(props); in tolower()
196 if(hasSlot(excWord, EXC_DELTA) && isUpperOrTitleFromProps(props)) { in tolower()
1587 getTypeFromProps(int props) getTypeFromProps() argument
1592 getTypeAndIgnorableFromProps(int props) getTypeAndIgnorableFromProps() argument
1596 isUpperOrTitleFromProps(int props) isUpperOrTitleFromProps() argument
1616 getDelta(int props) getDelta() argument
[all...]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/
H A DUCaseProps.java118 private static final int getExceptionsOffset(int props) { in getExceptionsOffset() argument
119 return props>>EXC_SHIFT; in getExceptionsOffset()
122 static final boolean propsHasException(int props) { in propsHasException() argument
123 return (props&EXCEPTION)!=0; in propsHasException()
192 int props=trie.get(c); in tolower()
193 if(!propsHasException(props)) { in tolower()
194 if(isUpperOrTitleFromProps(props)) { in tolower()
195 c+=getDelta(props); in tolower()
198 int excOffset=getExceptionsOffset(props); in tolower()
200 if(hasSlot(excWord, EXC_DELTA) && isUpperOrTitleFromProps(props)) { in tolower()
1572 getTypeFromProps(int props) getTypeFromProps() argument
1577 getTypeAndIgnorableFromProps(int props) getTypeAndIgnorableFromProps() argument
1581 isUpperOrTitleFromProps(int props) isUpperOrTitleFromProps() argument
1601 getDelta(int props) getDelta() argument
[all...]
/foundation/arkui/ace_engine/test/unittest/core/property/
H A Daccessibility_property_test_ng.cpp66 AccessibilityProperty props; in HWTEST_F() local
67 auto actions = props.GetSupportAction(); in HWTEST_F()
74 props.supportActions_ = static_cast<uint32_t>(AceAction::ACTION_SCROLL_FORWARD); in HWTEST_F()
75 actions = props.GetSupportAction(); in HWTEST_F()
82 props.supportActions_ = static_cast<uint32_t>(AceAction::ACTION_PREVIOUS_AT_MOVEMENT_GRANULARITY); in HWTEST_F()
83 actions = props.GetSupportAction(); in HWTEST_F()
90 props.supportActions_ = static_cast<uint32_t>(AceAction::ACTION_SET_TEXT); in HWTEST_F()
91 actions = props.GetSupportAction(); in HWTEST_F()
98 props.supportActions_ = static_cast<uint32_t>(AceAction::ACTION_COPY); in HWTEST_F()
99 actions = props in HWTEST_F()
154 AccessibilityProperty props; HWTEST_F() local
203 AccessibilityProperty props; HWTEST_F() local
395 AccessibilityProperty props; HWTEST_F() local
[all...]

Completed in 12 milliseconds

12345678910>>...69