Home
last modified time | relevance | path

Searched refs:propName (Results 1 – 25 of 86) sorted by relevance

1234

/third_party/node/test/parallel/
Dtest-dgram-deprecation-error.js25 const propertyCases = propertiesToTest.map((propName) => {
31 `Socket.prototype.${propName} is deprecated`,
34 sock[propName]; // eslint-disable-line no-unused-expressions
40 `Socket.prototype.${propName} is deprecated`,
43 sock[propName] = null;
48 const methodCases = methodsToTest.map((propName) => {
52 `Socket.prototype.${propName}() is deprecated`,
55 sock[propName]();
/third_party/jerryscript/tests/jerry/es2015/
Ddataview.js138 gettersSetters.forEach (function (propName) { argument
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] (20);
/third_party/node/deps/icu-small/source/tools/icuexportdata/
Dicuexportdata.cpp201 const char* propName = u_getPropertyName(uprop, U_SHORT_PROPERTY_NAME); in main() local
202 if (propName == NULL) { in main()
203 propName = u_getPropertyName(uprop, U_LONG_PROPERTY_NAME); in main()
204 if (propName != NULL && VERBOSE) { in main()
205 std::cerr << "Note: falling back to long name for: " << propName << std::endl; in main()
208 if (propName != NULL) { in main()
209 propNames.push_back(propName); in main()
254 for (const char* propName : propNames) { in main() local
255 UProperty propEnum = u_getPropertyEnum(propName); in main()
257 std::cerr << "Error: Invalid property alias: " << propName << std::endl; in main()
[all …]
/third_party/typescript/src/services/codefixes/
DconvertFunctionToEs6Class.ts256 const propName = node.argumentExpression; constant
257 if (isNumericLiteral(propName)) {
258 return propName;
261 if (isStringLiteralLike(propName)) {
262 …return isIdentifierText(propName.text, compilerOptions.target) ? factory.createIdentifier(propName
263 …: isNoSubstitutionTemplateLiteral(propName) ? factory.createStringLiteral(propName.text, quotePref…
264 : propName;
/third_party/typescript/tests/baselines/reference/
DthisTypeInFunctions2.symbols14 …[propName: string]: number | string | boolean | symbol | undefined | null | {} | ((this: any, ...a…
15 >propName : Symbol(propName, Decl(thisTypeInFunctions2.ts, 4, 5))
29 [propName: string]: any;
30 >propName : Symbol(propName, Decl(thisTypeInFunctions2.ts, 10, 5))
DconstAssertions.js105 function accessorNames<S extends string>(propName: S) {
106 return [`get-${propName}`, `set-${propName}`] as const;
192 function accessorNames(propName) { argument
193 return [`get-${propName}`, `set-${propName}`];
312 declare function accessorNames<S extends string>(propName: S): readonly [`get-${S}`, `set-${S}`];
DconstAssertions.types524 function accessorNames<S extends string>(propName: S) {
525 >accessorNames : <S extends string>(propName: S) => readonly [`get-${S}`, `set-${S}`]
526 >propName : S
528 return [`get-${propName}`, `set-${propName}`] as const;
529 >[`get-${propName}`, `set-${propName}`] as const : readonly [`get-${S}`, `set-${S}`]
530 >[`get-${propName}`, `set-${propName}`] : readonly [`get-${S}`, `set-${S}`]
531 >`get-${propName}` : `get-${S}`
532 >propName : S
533 >`set-${propName}` : `set-${S}`
534 >propName : S
[all …]
DcheckOtherObjectAssignProperty.types120 const propName = "prop"
121 >propName : "prop"
124 Object.defineProperty(exports, propName, { value: 42, writable: true });
125 >Object.defineProperty(exports, propName, { value: 42, writable: true }) : any
130 >propName : "prop"
DcheckOtherObjectAssignProperty.symbols89 const propName = "prop"
90 >propName : Symbol(propName, Decl(mod1.js, 9, 5))
92 Object.defineProperty(exports, propName, { value: 42, writable: true });
97 >propName : Symbol(propName, Decl(mod1.js, 9, 5))
DtsxAttributeResolution14.symbols26 [propName: string]: string | number
27 >propName : Symbol(propName, Decl(file.tsx, 2, 3))
DthisTypeInFunctions2.js6 …[propName: string]: number | string | boolean | symbol | undefined | null | {} | ((this: any, ...a…
12 [propName: string]: any;
DthisTypeInFunctions2.types12 …[propName: string]: number | string | boolean | symbol | undefined | null | {} | ((this: any, ...a…
13 >propName : string
26 [propName: string]: any;
27 >propName : string
DconstAssertions.symbols322 function accessorNames<S extends string>(propName: S) {
325 >propName : Symbol(propName, Decl(constAssertions.ts, 103, 41))
328 return [`get-${propName}`, `set-${propName}`] as const;
329 >propName : Symbol(propName, Decl(constAssertions.ts, 103, 41))
330 >propName : Symbol(propName, Decl(constAssertions.ts, 103, 41))
/third_party/typescript/tests/cases/conformance/expressions/typeAssertions/
DconstAssertions.ts108 function accessorNames<S extends string>(propName: S) {
109 return [`get-${propName}`, `set-${propName}`] as const;
/third_party/typescript_eslint/packages/eslint-plugin/src/util/
Dmisc.ts60 const propName: TSESTree.PropertyName | undefined = node.parameters.find( constant
64 return propName ? propName.name : '(index signature)';
/third_party/typescript/tests/cases/conformance/types/thisType/
DthisTypeInFunctions2.ts8 …[propName: string]: number | string | boolean | symbol | undefined | null | {} | ((this: any, ...a…
14 [propName: string]: any;
/third_party/node/lib/internal/fs/
Dutils.js345 const nullCheck = hideStackFrames((path, propName, throwError = true) => {
357 propName,
650 const validatePath = hideStackFrames((path, propName = 'path') => {
652 throw new ERR_INVALID_ARG_TYPE(propName, ['string', 'Buffer', 'URL'], path);
655 const err = nullCheck(path, propName, false);
662 const getValidatedPath = hideStackFrames((fileURLOrPath, propName = 'path') => {
664 validatePath(path, propName);
668 const validateBufferArray = hideStackFrames((buffers, propName = 'buffers') => {
670 throw new ERR_INVALID_ARG_TYPE(propName, 'ArrayBufferView[]', buffers);
674 throw new ERR_INVALID_ARG_TYPE(propName, 'ArrayBufferView[]', buffers);
/third_party/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/
DRegexUtilitiesTest.java105 String propName = UCharacter.getPropertyName(propNum, NameChoice.LONG);
131 String rawPattern = prefix + "[:" + propName + "=" + valueName + ":]" + suffix;
132 … String rawNegativePattern = prefix + "[:^" + propName + "=" + valueName + ":]" + suffix;
137 rawPattern = prefix + "\\p{" + propName + "=" + valueName + "}" + suffix;
138 rawNegativePattern = prefix + "\\P{" + propName + "=" + valueName + "}" + suffix;
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/translit/
DRegexUtilitiesTest.java108 String propName = UCharacter.getPropertyName(propNum, NameChoice.LONG);
134 String rawPattern = prefix + "[:" + propName + "=" + valueName + ":]" + suffix;
135 … String rawNegativePattern = prefix + "[:^" + propName + "=" + valueName + ":]" + suffix;
140 rawPattern = prefix + "\\p{" + propName + "=" + valueName + "}" + suffix;
141 rawNegativePattern = prefix + "\\P{" + propName + "=" + valueName + "}" + suffix;
/third_party/typescript/tests/cases/conformance/jsdoc/
DcheckOtherObjectAssignProperty.ts16 const propName = "prop" constant
17 Object.defineProperty(exports, propName, { value: 42, writable: true });
/third_party/flutter/skia/platform_tools/android/apps/
Dbuild.gradle89 String propName = "${variantPrefix}.out.dir"
90 if (project.hasProperty(propName)) {
91 skiaOutDir = project.getProperties().getAt(propName)
93 skiaOutDir = getLocalProperties().getProperty(propName, "missing_variant_out")
/third_party/skia/platform_tools/android/apps/
Dbuild.gradle89 String propName = "${variantPrefix}.out.dir"
90 if (project.hasProperty(propName)) {
91 skiaOutDir = project.getProperties().getAt(propName)
93 skiaOutDir = getLocalProperties().getProperty(propName, "missing_variant_out")
/third_party/icu/icu4c/source/i18n/
Dregexcmp.cpp4330 UnicodeString propName; in scanPosixProp() local
4343 propName.append(fC.fChar); in scanPosixProp()
4359 uset = createSetForProperty(propName, negated); in scanPosixProp()
4392 UnicodeSet *RegexCompile::createSetForProperty(const UnicodeString &propName, UBool negated) { in createSetForProperty() argument
4407 setExpr.append(propName); in createSetForProperty()
4425 if (propName.caseCompare(u"word", -1, 0) == 0) { in createSetForProperty()
4430 if (propName.compare(u"all", -1) == 0) { in createSetForProperty()
4438 UnicodeString mPropName = propName; in createSetForProperty()
4454 if (propName.startsWith(u"Is", 2) && propName.length()>=3) { in createSetForProperty()
4481 if (propName.startsWith(u"java", -1)) { in createSetForProperty()
[all …]
/third_party/node/deps/icu-small/source/i18n/
Dregexcmp.cpp4333 UnicodeString propName; in scanPosixProp() local
4346 propName.append(fC.fChar); in scanPosixProp()
4362 uset = createSetForProperty(propName, negated); in scanPosixProp()
4395 UnicodeSet *RegexCompile::createSetForProperty(const UnicodeString &propName, UBool negated) { in createSetForProperty() argument
4410 setExpr.append(propName); in createSetForProperty()
4428 if (propName.caseCompare(u"word", -1, 0) == 0) { in createSetForProperty()
4433 if (propName.compare(u"all", -1) == 0) { in createSetForProperty()
4441 UnicodeString mPropName = propName; in createSetForProperty()
4457 if (propName.startsWith(u"Is", 2) && propName.length()>=3) { in createSetForProperty()
4484 if (propName.startsWith(u"java", -1)) { in createSetForProperty()
[all …]
/third_party/flutter/skia/third_party/externals/icu/source/i18n/
Dregexcmp.cpp4312 UnicodeString propName; in scanPosixProp() local
4325 propName.append(fC.fChar); in scanPosixProp()
4341 uset = createSetForProperty(propName, negated); in scanPosixProp()
4374 UnicodeSet *RegexCompile::createSetForProperty(const UnicodeString &propName, UBool negated) { in createSetForProperty() argument
4389 setExpr.append(propName); in createSetForProperty()
4407 if (propName.caseCompare(u"word", -1, 0) == 0) { in createSetForProperty()
4411 if (propName.compare(u"all", -1) == 0) { in createSetForProperty()
4419 UnicodeString mPropName = propName; in createSetForProperty()
4435 if (propName.startsWith(u"Is", 2) && propName.length()>=3) { in createSetForProperty()
4462 if (propName.startsWith(u"java", -1)) { in createSetForProperty()
[all …]

1234