Home
last modified time | relevance | path

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

12345678910>>...35

/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...]
H A DdeepExcessPropertyCheckingWhenTargetIsIntersection.js3 (props: P & { children?: number }, context?: any): null;
6 const TestComponent: StatelessComponent<TestProps> = (props) => {
15 props: TProps;
22 TestComponent({icon: { props: { INVALID_PROP_NAME: 'share', ariaLabel: 'test label' } }});
24 const TestComponent2: StatelessComponent<TestProps | {props2: {x: number}}> = (props) => {
28 TestComponent2({icon: { props: { INVALID_PROP_NAME: 'share', ariaLabel: 'test label' } }});
32 var TestComponent = function (props) {
35 TestComponent({ icon: { props: { INVALID_PROP_NAME: 'share', ariaLabel: 'test label' } } });
36 var TestComponent2 = function (props) {
39 TestComponent2({ icon: { props
[all...]
H A DtsxGenericAttributesType7.js4 declare function Component<T>(props: T) : JSX.Element;
5 const decorator = function <U>(props: U) {
6 return <Component {...props} />;
9 const decorator1 = function <U extends {x: string}>(props: U) {
10 return <Component {...props} x="hi"/>;
17 var decorator = function (props) {
18 return <Component {...props}/>;
20 var decorator1 = function (props) {
21 return <Component {...props} x="hi"/>;
H A DtsxGenericAttributesType8.js4 declare function Component<T>(props: T) : JSX.Element;
5 const decorator = function <U>(props: U) {
6 return <Component {...props} />;
9 const decorator1 = function <U extends {x: string}>(props: U) {
10 return <Component {...props} />;
17 var decorator = function (props) {
18 return <Component {...props}/>;
20 var decorator1 = function (props) {
21 return <Component {...props}/>;
/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...]
/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...]
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/option/
H A Doption_pattern.cpp268 auto props = GetPaintProperty<OptionPaintProperty>(); in OnPress() local
269 CHECK_NULL_VOID(props); in OnPress()
281 props->UpdatePress(true); in OnPress()
294 props->UpdatePress(false); in OnPress()
310 auto props = GetPaintProperty<OptionPaintProperty>(); in OnHover() local
311 CHECK_NULL_VOID(props); in OnHover()
319 props->UpdateHover(true); in OnHover()
325 props->UpdateHover(false); in OnHover()
352 auto props = DynamicCast<FrameNode>(nextNode)->GetPaintProperty<OptionPaintProperty>(); in UpdateNextNodeDivider() local
353 CHECK_NULL_VOID(props); in UpdateNextNodeDivider()
370 auto props = text_->GetLayoutProperty<TextLayoutProperty>(); SetFontSize() local
380 auto props = text_->GetLayoutProperty<TextLayoutProperty>(); SetItalicFontStyle() local
389 auto props = text_->GetLayoutProperty<TextLayoutProperty>(); SetFontWeight() local
398 auto props = text_->GetLayoutProperty<TextLayoutProperty>(); SetFontFamily() local
407 auto props = text_->GetLayoutProperty<TextLayoutProperty>(); SetFontColor() local
421 auto props = text_->GetLayoutProperty<TextLayoutProperty>(); InspectorGetFont() local
440 auto props = text_->GetLayoutProperty<TextLayoutProperty>(); GetFontSize() local
450 auto props = text_->GetLayoutProperty<TextLayoutProperty>(); GetItalicFontStyle() local
459 auto props = text_->GetLayoutProperty<TextLayoutProperty>(); GetFontWeight() local
468 auto props = text_->GetLayoutProperty<TextLayoutProperty>(); GetFontFamily() local
477 auto props = text_->GetLayoutProperty<TextLayoutProperty>(); GetFontColor() local
494 auto props = text_->GetLayoutProperty<TextLayoutProperty>(); UpdateText() local
526 auto props = icon_->GetLayoutProperty<ImageLayoutProperty>(); UpdateIcon() local
[all...]
/third_party/vk-gl-cts/external/vulkancts/framework/vulkan/
H A DvkNullDriver.cpp966 VKAPI_ATTR void VKAPI_CALL getPhysicalDeviceProperties (VkPhysicalDevice, VkPhysicalDeviceProperties* props) in getPhysicalDeviceProperties() argument
968 deMemset(props, 0, sizeof(VkPhysicalDeviceProperties)); in getPhysicalDeviceProperties()
970 props->apiVersion = VK_API_VERSION_1_1; in getPhysicalDeviceProperties()
971 props->driverVersion = 1u; in getPhysicalDeviceProperties()
972 props->deviceType = VK_PHYSICAL_DEVICE_TYPE_OTHER; in getPhysicalDeviceProperties()
974 deMemcpy(props->deviceName, "null", 5); in getPhysicalDeviceProperties()
977 props->limits.maxImageDimension1D = 4096; in getPhysicalDeviceProperties()
978 props->limits.maxImageDimension2D = 4096; in getPhysicalDeviceProperties()
979 props->limits.maxImageDimension3D = 256; in getPhysicalDeviceProperties()
980 props in getPhysicalDeviceProperties()
1093 getPhysicalDeviceQueueFamilyProperties(VkPhysicalDevice, deUint32* count, VkQueueFamilyProperties* props) getPhysicalDeviceQueueFamilyProperties() argument
1107 getPhysicalDeviceMemoryProperties(VkPhysicalDevice, VkPhysicalDeviceMemoryProperties* props) getPhysicalDeviceMemoryProperties() argument
[all...]
/third_party/node/deps/icu-small/source/tools/toolutil/
H A Dppucd.cpp213 UniProps *props; in getProps() local
239 props=&defaultProps; in getProps()
244 props=&blockProps; in getProps()
276 props=&cpProps; in getProps()
283 props->start=start; in getProps()
284 props->end=end; in getProps()
286 if(!parseProperty(*props, field, newValues, errorCode)) { return nullptr; } in getProps()
304 return props; in getProps()
318 PreparsedUCD::parseProperty(UniProps &props, const char *field, UnicodeSet &newValues, in parseProperty() argument
360 props in parseProperty()
[all...]
/third_party/icu/icu4c/source/tools/toolutil/
H A Dppucd.cpp213 UniProps *props; in getProps() local
239 props=&defaultProps; in getProps()
244 props=&blockProps; in getProps()
276 props=&cpProps; in getProps()
283 props->start=start; in getProps()
284 props->end=end; in getProps()
286 if(!parseProperty(*props, field, newValues, errorCode)) { return NULL; } in getProps()
304 return props; in getProps()
318 PreparsedUCD::parseProperty(UniProps &props, const char *field, UnicodeSet &newValues, in parseProperty() argument
360 props in parseProperty()
[all...]
/third_party/skia/third_party/externals/icu/source/tools/toolutil/
H A Dppucd.cpp206 UniProps *props; in getProps() local
232 props=&defaultProps; in getProps()
237 props=&blockProps; in getProps()
269 props=&cpProps; in getProps()
276 props->start=start; in getProps()
277 props->end=end; in getProps()
279 if(!parseProperty(*props, field, newValues, errorCode)) { return NULL; } in getProps()
297 return props; in getProps()
311 PreparsedUCD::parseProperty(UniProps &props, const char *field, UnicodeSet &newValues, in parseProperty() argument
353 props in parseProperty()
[all...]
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/dialog/
H A Ddialog_layout_property.h37 auto props = MakeRefPtr<DialogLayoutProperty>(); variable
38 props->LayoutProperty::UpdateLayoutProperty(DynamicCast<LayoutProperty>(this));
39 props->propDialogAlignment_ = CloneDialogAlignment();
40 props->propDialogOffset_ = CloneDialogOffset();
41 props->propGridCount_ = CloneGridCount();
42 props->propUseCustomStyle_ = CloneUseCustomStyle();
43 props->propAutoCancel_ = CloneAutoCancel();
44 props->propShowInSubWindow_ = CloneShowInSubWindow();
45 props->propIsModal_ = CloneIsModal();
46 props
[all...]

Completed in 16 milliseconds

12345678910>>...35