/third_party/jerryscript/tests/jerry/es2015/ |
H A D | dataview.js | 138 gettersSetters.forEach (function (propName) { 140 var routine = DataView.prototype[propName]; 142 DataView.prototype[propName].call (5); 150 DataView.prototype[propName].call ({}); 160 view[propName] ({ toString : function () { throw new ReferenceError ('fooBar') } }); 171 if (propName.indexOf("get") !== -1) { 172 assert(view[propName] (1.5) === 0); 174 assert(view[propName] (1.5) === undefined); 179 view[propName] (-1); 187 view[propName] (2 [all...] |
H A D | proxy_delete.js | 22 }, get (object, propName) { 23 if (propName == "length") {
|
/third_party/typescript/tests/baselines/reference/ |
H A D | derivedClassSuperProperties.js | 281 propName = "prop"; 285 get [this.propName]() { 288 set [this.propName](param) { 297 propName = "prop"; 313 propName = "prop"; 316 prop: this.propName, 323 propName = "prop"; 326 [this.propName]: true, 822 Object.defineProperty(_a, _this.propName, {
829 Object.defineProperty(_a, _this.propName, {
[all...] |
H A D | constAssertions.js | 105 function accessorNames<S extends string>(propName: S) { 106 return [`get-${propName}`, `set-${propName}`] as const; 192 function accessorNames(propName) {
193 return [`get-${propName}`, `set-${propName}`];
312 declare function accessorNames<S extends string>(propName: S): readonly [`get-${S}`, `set-${S}`];
|
H A D | tsxAttributeResolution14.js | 15 [propName: string]: string | number
|
H A D | propTypeValidatorInference.js | 13 (props: object, propName: string, componentName: string, location: string, propFullName: string): Error | null;
|
/third_party/icu/tools/unicode/c/genprops/ |
H A D | emojipropsbuilder.cpp | 210 const char *propName; 323 char *propName = const_cast<char *>(u_skipWhitespace(fields[1][0])); 324 u_rtrim(propName); 327 if (strcmp(pn2i.propName, propName) == 0) { 334 unrecognized.insert(propName); 344 "genprops/emoji error: single code points %s for %s\n", rangeOrString, propName); 362 rangeOrString, propName, fields[2][0]); 370 "genprops/emoji error: single code point %s for %s\n", rangeOrString, propName);
|
/third_party/node/lib/internal/fs/ |
H A D | utils.js | 369 const nullCheck = hideStackFrames((path, propName, throwError = true) => { 381 propName, 700 const validatePath = hideStackFrames((path, propName = 'path') => { 702 throw new ERR_INVALID_ARG_TYPE(propName, ['string', 'Buffer', 'URL'], path); 705 const err = nullCheck(path, propName, false); 712 const getValidatedPath = hideStackFrames((fileURLOrPath, propName = 'path') => { 714 validatePath(path, propName); 718 const getValidatedFd = hideStackFrames((fd, propName = 'fd') => { 723 validateInt32(fd, propName, 0); 728 const validateBufferArray = hideStackFrames((buffers, propName [all...] |
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/translit/ |
H A D | RegexUtilitiesTest.java | 108 String propName = UCharacter.getPropertyName(propNum, NameChoice.LONG); in TestUnicodeProperties() 134 String rawPattern = prefix + "[:" + propName + "=" + valueName + ":]" + suffix; in TestUnicodeProperties() 135 String rawNegativePattern = prefix + "[:^" + propName + "=" + valueName + ":]" + suffix; in TestUnicodeProperties() 140 rawPattern = prefix + "\\p{" + propName + "=" + valueName + "}" + suffix; in TestUnicodeProperties() 141 rawNegativePattern = prefix + "\\P{" + propName + "=" + valueName + "}" + suffix; in TestUnicodeProperties()
|
/third_party/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/ |
H A D | RegexUtilitiesTest.java | 113 String propName = UCharacter.getPropertyName(propNum, NameChoice.LONG); in TestUnicodeProperties() 139 String rawPattern = prefix + "[:" + propName + "=" + valueName + ":]" + suffix; in TestUnicodeProperties() 140 String rawNegativePattern = prefix + "[:^" + propName + "=" + valueName + ":]" + suffix; in TestUnicodeProperties() 145 rawPattern = prefix + "\\p{" + propName + "=" + valueName + "}" + suffix; in TestUnicodeProperties() 146 rawNegativePattern = prefix + "\\P{" + propName + "=" + valueName + "}" + suffix; in TestUnicodeProperties()
|
/third_party/node/deps/icu-small/source/tools/icuexportdata/ |
H A D | icuexportdata.cpp | 1181 const char* propName = u_getPropertyName(uprop, U_SHORT_PROPERTY_NAME); in exportUprops() local 1182 if (propName == nullptr) { in exportUprops() 1183 propName = u_getPropertyName(uprop, U_LONG_PROPERTY_NAME); in exportUprops() 1184 if (propName != nullptr && VERBOSE) { in exportUprops() 1185 std::cerr << "Note: falling back to long name for: " << propName << std::endl; in exportUprops() 1188 if (propName != nullptr) { in exportUprops() 1189 propNames.push_back(propName); in exportUprops() 1237 for (const char* propName : propNames) { in exportUprops() 1238 UProperty propEnum = u_getPropertyEnum(propName); in exportUprops() 1240 std::cerr << "Error: Invalid property alias: " << propName << st in exportUprops() [all...] |
/third_party/icu/icu4c/source/tools/icuexportdata/ |
H A D | icuexportdata.cpp | 1021 const char* propName = u_getPropertyName(uprop, U_SHORT_PROPERTY_NAME); in exportUprops() local 1022 if (propName == NULL) { in exportUprops() 1023 propName = u_getPropertyName(uprop, U_LONG_PROPERTY_NAME); in exportUprops() 1024 if (propName != NULL && VERBOSE) { in exportUprops() 1025 std::cerr << "Note: falling back to long name for: " << propName << std::endl; in exportUprops() 1028 if (propName != NULL) { in exportUprops() 1029 propNames.push_back(propName); in exportUprops() 1077 for (const char* propName : propNames) { in exportUprops() 1078 UProperty propEnum = u_getPropertyEnum(propName); in exportUprops() 1080 std::cerr << "Error: Invalid property alias: " << propName << st in exportUprops() [all...] |
/third_party/icu/icu4c/source/i18n/ |
H A D | regexcmp.cpp | 4333 UnicodeString propName; 4346 propName.append(fC.fChar); 4362 uset = createSetForProperty(propName, negated); 4395 UnicodeSet *RegexCompile::createSetForProperty(const UnicodeString &propName, UBool negated) { 4410 setExpr.append(propName); 4428 if (propName.caseCompare(u"word", -1, 0) == 0) { 4433 if (propName.compare(u"all", -1) == 0) { 4441 UnicodeString mPropName = propName; 4457 if (propName.startsWith(u"Is", 2) && propName [all...] |
H A D | regexcmp.h | 123 UnicodeSet *createSetForProperty(const UnicodeString &propName, UBool negated);
|
/third_party/node/deps/icu-small/source/i18n/ |
H A D | regexcmp.cpp | 4333 UnicodeString propName; 4346 propName.append(fC.fChar); 4362 uset = createSetForProperty(propName, negated); 4395 UnicodeSet *RegexCompile::createSetForProperty(const UnicodeString &propName, UBool negated) { 4410 setExpr.append(propName); 4428 if (propName.caseCompare(u"word", -1, 0) == 0) { 4433 if (propName.compare(u"all", -1) == 0) { 4441 UnicodeString mPropName = propName; 4457 if (propName.startsWith(u"Is", 2) && propName [all...] |
H A D | regexcmp.h | 123 UnicodeSet *createSetForProperty(const UnicodeString &propName, UBool negated);
|
/third_party/skia/third_party/externals/icu/source/i18n/ |
H A D | regexcmp.cpp | 4330 UnicodeString propName; 4343 propName.append(fC.fChar); 4359 uset = createSetForProperty(propName, negated); 4392 UnicodeSet *RegexCompile::createSetForProperty(const UnicodeString &propName, UBool negated) { 4407 setExpr.append(propName); 4425 if (propName.caseCompare(u"word", -1, 0) == 0) { 4430 if (propName.compare(u"all", -1) == 0) { 4438 UnicodeString mPropName = propName; 4454 if (propName.startsWith(u"Is", 2) && propName [all...] |
H A D | regexcmp.h | 127 UnicodeSet *createSetForProperty(const UnicodeString &propName, UBool negated);
|
/third_party/skia/experimental/docs/ |
H A D | animationCommon.js | 254 function loopAddProp(action, propName) { 256 var prop = action[propName]; 257 if ('draw' != propName && isArray(prop)) {
|
/third_party/icu/icu4c/source/common/ |
H A D | uniset_props.cpp | 1077 UnicodeString propName, valueName; in applyPropertyPattern() local 1080 pattern.extractBetween(pos, equals, propName); in applyPropertyPattern() 1086 pattern.extractBetween(pos, close, propName); in applyPropertyPattern() 1095 valueName = propName; in applyPropertyPattern() 1096 propName = UnicodeString(NAME_PROP, NAME_PROP_LENGTH, US_INV); in applyPropertyPattern() 1100 applyPropertyAlias(propName, valueName, ec); in applyPropertyPattern()
|
/third_party/node/deps/icu-small/source/common/ |
H A D | uniset_props.cpp | 1074 UnicodeString propName, valueName; in applyPropertyPattern() local 1077 pattern.extractBetween(pos, equals, propName); in applyPropertyPattern() 1083 pattern.extractBetween(pos, close, propName); in applyPropertyPattern() 1092 valueName = propName; in applyPropertyPattern() 1093 propName = UnicodeString(NAME_PROP, NAME_PROP_LENGTH, US_INV); in applyPropertyPattern() 1097 applyPropertyAlias(propName, valueName, ec); in applyPropertyPattern()
|
/third_party/skia/third_party/externals/icu/source/common/ |
H A D | uniset_props.cpp | 1077 UnicodeString propName, valueName; in applyPropertyPattern() local 1080 pattern.extractBetween(pos, equals, propName); in applyPropertyPattern() 1086 pattern.extractBetween(pos, close, propName); in applyPropertyPattern() 1095 valueName = propName; in applyPropertyPattern() 1096 propName = UnicodeString(NAME_PROP, NAME_PROP_LENGTH, US_INV); in applyPropertyPattern() 1100 applyPropertyAlias(propName, valueName, ec); in applyPropertyPattern()
|
/third_party/node/lib/ |
H A D | child_process.js | 971 function validateArgumentNullCheck(arg, propName) { 973 throw new ERR_INVALID_ARG_VALUE(propName, arg, 'must be a string without null bytes'); 978 function validateArgumentsNullCheck(args, propName) { 980 validateArgumentNullCheck(args[i], `${propName}[${i}]`);
|
/third_party/icu/icu4c/source/test/intltest/ |
H A D | ucdtest.cpp | 188 UnicodeString propName(fields[1][0], (int32_t)(fields[1][1]-fields[1][0])); in derivedPropsLineFn() 189 propName.trim(); in derivedPropsLineFn() 190 if(me->unknownPropertyNames->find(propName)==NULL) { in derivedPropsLineFn() 192 me->unknownPropertyNames->puti(propName, 1, errorCode); in derivedPropsLineFn()
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/lang/ |
H A D | UnicodeSetTest.java | 105 String propName; in TestPropertyAccess() 107 propName = UCharacter.getPropertyName(propNum, nameChoice); in TestPropertyAccess() 108 if (propName == null) { in TestPropertyAccess() 119 logln("Property (" + propNum + "): " + propName); in TestPropertyAccess() 139 + "Property (" + propNum + "): " + propName + ", " in TestPropertyAccess() 148 testSet = new UnicodeSet("[:" + propName + "=" + valueName + ":]"); in TestPropertyAccess() 151 + "Property (" + propNum + "): " + propName + ", " in TestPropertyAccess() 165 + "Property (" + propNum + "): " + propName + ", " in TestPropertyAccess()
|