Home
last modified time | relevance | path

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

12345678910>>...27

/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/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...]
H A Dubidi_props.cpp135 uint16_t props=UTRIE2_GET16(&ubidi_props_singleton.trie, c); in ubidi_getClass() local
136 return (UCharDirection)UBIDI_GET_CLASS(props); in ubidi_getClass()
141 uint16_t props=UTRIE2_GET16(&ubidi_props_singleton.trie, c); in ubidi_isMirrored() local
142 return (UBool)UBIDI_GET_FLAG(props, UBIDI_IS_MIRRORED_SHIFT); in ubidi_isMirrored()
146 getMirror(UChar32 c, uint16_t props) { in getMirror() argument
147 int32_t delta=UBIDI_GET_MIRROR_DELTA(props); in getMirror()
179 uint16_t props=UTRIE2_GET16(&ubidi_props_singleton.trie, c); in ubidi_getMirror() local
180 return getMirror(c, props); in ubidi_getMirror()
185 uint16_t props=UTRIE2_GET16(&ubidi_props_singleton.trie, c); in ubidi_isBidiControl() local
186 return (UBool)UBIDI_GET_FLAG(props, UBIDI_BIDI_CONTROL_SHIF in ubidi_isBidiControl()
191 uint16_t props=UTRIE2_GET16(&ubidi_props_singleton.trie, c); ubidi_isJoinControl() local
197 uint16_t props=UTRIE2_GET16(&ubidi_props_singleton.trie, c); ubidi_getJoiningType() local
220 uint16_t props=UTRIE2_GET16(&ubidi_props_singleton.trie, c); ubidi_getPairedBracketType() local
226 uint16_t props=UTRIE2_GET16(&ubidi_props_singleton.trie, c); ubidi_getPairedBracket() 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/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/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...]
H A Dubidi_props.cpp135 uint16_t props=UTRIE2_GET16(&ubidi_props_singleton.trie, c); in ubidi_getClass() local
136 return (UCharDirection)UBIDI_GET_CLASS(props); in ubidi_getClass()
141 uint16_t props=UTRIE2_GET16(&ubidi_props_singleton.trie, c); in ubidi_isMirrored() local
142 return (UBool)UBIDI_GET_FLAG(props, UBIDI_IS_MIRRORED_SHIFT); in ubidi_isMirrored()
146 getMirror(UChar32 c, uint16_t props) { in getMirror() argument
147 int32_t delta=UBIDI_GET_MIRROR_DELTA(props); in getMirror()
179 uint16_t props=UTRIE2_GET16(&ubidi_props_singleton.trie, c); in ubidi_getMirror() local
180 return getMirror(c, props); in ubidi_getMirror()
185 uint16_t props=UTRIE2_GET16(&ubidi_props_singleton.trie, c); in ubidi_isBidiControl() local
186 return (UBool)UBIDI_GET_FLAG(props, UBIDI_BIDI_CONTROL_SHIF in ubidi_isBidiControl()
191 uint16_t props=UTRIE2_GET16(&ubidi_props_singleton.trie, c); ubidi_isJoinControl() local
197 uint16_t props=UTRIE2_GET16(&ubidi_props_singleton.trie, c); ubidi_getJoiningType() local
220 uint16_t props=UTRIE2_GET16(&ubidi_props_singleton.trie, c); ubidi_getPairedBracketType() local
226 uint16_t props=UTRIE2_GET16(&ubidi_props_singleton.trie, c); ubidi_getPairedBracket() local
[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...]
/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/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/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...]
/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...]
/third_party/vulkan-loader/tests/
H A Dloader_phys_dev_inst_ext_tests.cpp44 void FillInRandomDeviceProps(VkPhysicalDeviceProperties& props, uint32_t api_vers, uint32_t vendor, uint32_t driver_vers) { in FillInRandomDeviceProps() argument
45 props.apiVersion = api_vers; in FillInRandomDeviceProps()
46 props.driverVersion = driver_vers; in FillInRandomDeviceProps()
47 props.vendorID = vendor; in FillInRandomDeviceProps()
48 props.deviceID = (static_cast<uint32_t>(rand()) >> 4) + (static_cast<uint32_t>(rand()) << 2); in FillInRandomDeviceProps()
49 props.deviceType = static_cast<VkPhysicalDeviceType>(rand() % 5); in FillInRandomDeviceProps()
51 props.pipelineCacheUUID[idx] = static_cast<uint8_t>(rand() % 255); in FillInRandomDeviceProps()
106 VkPhysicalDeviceProperties props{}; in TEST()
107 instance->vkGetPhysicalDeviceProperties(physical_device, &props); in TEST()
112 ASSERT_EQ(props in TEST()
719 FillInRandomFormatProperties(std::vector<VkFormatProperties>& props) FillInRandomFormatProperties() argument
1007 FillInRandomImageFormatData(VkImageFormatProperties& props) FillInRandomImageFormatData() argument
1429 FillInRandomMemoryData(VkPhysicalDeviceMemoryProperties& props) FillInRandomMemoryData() argument
1717 FillInRandomQueueFamilyData(std::vector<MockQueueFamilyProperties>& props) FillInRandomQueueFamilyData() argument
2071 FillInRandomSparseImageFormatData(std::vector<VkSparseImageFormatProperties>& props) FillInRandomSparseImageFormatData() argument
2508 FillInRandomExtMemoryData(VkExternalMemoryProperties& props) FillInRandomExtMemoryData() argument
2771 FillInRandomExtSemData(VkExternalSemaphoreProperties& props) FillInRandomExtSemData() argument
3031 FillInRandomExtFenceData(VkExternalFenceProperties& props) FillInRandomExtFenceData() argument
3290 FillInRandomSurfaceCapsData(VkSurfaceCapabilitiesKHR& props) FillInRandomSurfaceCapsData() argument
3518 FillInRandomSurfaceFormatsData(std::vector<VkSurfaceFormatKHR>& props) FillInRandomSurfaceFormatsData() argument
3749 FillInRandomDisplayPropData(std::vector<VkDisplayPropertiesKHR>& props) FillInRandomDisplayPropData() argument
3948 FillInRandomDisplayPlanePropData(std::vector<VkDisplayPlanePropertiesKHR>& props) FillInRandomDisplayPlanePropData() argument
[all...]
/third_party/icu/tools/unicode/c/genprops/
H A Dcasepropsbuilder.cpp243 props(otherProps), in ExcProps()
247 UniProps props; member
393 CasePropsBuilder::setProps(const UniProps &props, const UnicodeSet &newValues, in setProps() argument
397 UChar32 start=props.start; in setProps()
398 UChar32 end=props.end; in setProps()
405 if(props.binProps[UCHAR_LOWERCASE]) { in setProps()
407 } else if(props.binProps[UCHAR_UPPERCASE]) { in setProps()
409 } else if(props.getIntProp(UCHAR_GENERAL_CATEGORY)==U_TITLECASE_LETTER) { in setProps()
418 if(props.suc>=0) { in setProps()
422 delta=props in setProps()
[all...]

Completed in 20 milliseconds

12345678910>>...27