/third_party/typescript/tests/baselines/reference/ |
D | declarationEmitExpressionInExtends5.js | 12 export class Derived extends getClass<IFace>() 16 export function getClass<T>() : new() => T 53 }(getClass())); 55 function getClass() { function 58 Test.getClass = getClass; 71 export function getClass<T>(): new () => T;
|
D | declarationEmitExpressionInExtends5.symbols | 16 export class Derived extends getClass<IFace>() 18 >getClass : Symbol(getClass, Decl(declarationEmitExpressionInExtends5.ts, 12, 2)) 23 export function getClass<T>() : new() => T 24 >getClass : Symbol(getClass, Decl(declarationEmitExpressionInExtends5.ts, 12, 2))
|
D | declarationEmitExpressionInExtends2.symbols | 16 function getClass<T>(c: T) { 17 >getClass : Symbol(getClass, Decl(declarationEmitExpressionInExtends2.ts, 3, 1)) 26 class MyClass extends getClass(2) <string, number> { 28 >getClass : Symbol(getClass, Decl(declarationEmitExpressionInExtends2.ts, 3, 1))
|
D | declarationEmitExpressionInExtends2.types | 12 function getClass<T>(c: T) { 13 >getClass : <T>(c: T) => typeof C 20 class MyClass extends getClass(2) <string, number> { 22 >getClass(2) : C<string, number> 23 >getClass : <T>(c: T) => typeof C
|
D | declarationEmitExpressionInExtends5.types | 14 export class Derived extends getClass<IFace>() 16 >getClass<IFace>() : IFace 17 >getClass : <T>() => new () => T 21 export function getClass<T>() : new() => T 22 >getClass : <T>() => new () => T
|
D | declarationEmitExpressionInExtends2.js | 7 function getClass<T>(c: T) { 11 class MyClass extends getClass(2) <string, number> { 35 function getClass(c) { function 44 }(getClass(2))); 52 declare function getClass<T>(c: T): typeof C;
|
/third_party/protobuf/java/core/src/test/java/com/google/protobuf/ |
D | DiscardUnknownFieldsTest.java | 86 assertEquals(message.getClass().getName(), 0, parsed.getSerializedSize()); in assertReuseCodedInputStreamPreserve() 91 assertEquals(message.getClass().getName(), payload, parsed.toByteString()); in assertReuseCodedInputStreamPreserve() 102 assertEquals(message.getClass().getName(), payload, built.toByteString()); in assertUnknownFieldsInUnknownFieldSetArePreserve() 107 assertEquals(message.getClass().getName(), payload, parsed.toByteString()); in assertUnknownFieldsPreserved() 110 assertEquals(message.getClass().getName(), payload, parsed.toByteString()); in assertUnknownFieldsPreserved() 115 assertEquals(message.getClass().getName(), 0, parsed.getSerializedSize()); in assertUnknownFieldsExplicitlyDiscarded()
|
D | ExtensionRegistryFactoryTest.java | 87 assertEquals(registry.getClass(), ExtensionRegistry.class); in testCreate() 94 assertEquals(emptyRegistry.getClass(), ExtensionRegistry.class); in testEmpty() 120 NonNestedExtensionLite.nonNestedExtensionLite.getClass())); in testAdd() 132 Extension.class.isAssignableFrom(NonNestedExtension.nonNestedExtension.getClass())); in testAdd() 173 assertEquals(registry.getClass(), ExtensionRegistryLite.class); in testCreate() 180 assertEquals(emptyRegistry.getClass(), ExtensionRegistryLite.class); in testEmpty()
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
D | NumberFormatRoundTripTest.java | 161 if (value.getClass().getName().equalsIgnoreCase("java.lang.Double")) in _test() 180 if (value.getClass().getName().equalsIgnoreCase("java.lang.Double")) in _test() 217 /*value.getString(temp) +*/ value.getClass().getName() + " F> " + s + " P> " + in _test() 218 /*n.getString(temp) +*/ n.getClass().getName() + " F> " + s2); in _test() 225 if(a.getClass().getName().equalsIgnoreCase("java.lang.Double")) in proportionalError() 230 if(a.getClass().getName().equalsIgnoreCase("java.lang.Double")) in proportionalError()
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/format/ |
D | NumberFormatRoundTripTest.java | 164 if (value.getClass().getName().equalsIgnoreCase("java.lang.Double")) in _test() 183 if (value.getClass().getName().equalsIgnoreCase("java.lang.Double")) in _test() 220 /*value.getString(temp) +*/ value.getClass().getName() + " F> " + s + " P> " + in _test() 221 /*n.getString(temp) +*/ n.getClass().getName() + " F> " + s2); in _test() 228 if(a.getClass().getName().equalsIgnoreCase("java.lang.Double")) in proportionalError() 233 if(a.getClass().getName().equalsIgnoreCase("java.lang.Double")) in proportionalError()
|
/third_party/protobuf/php/src/Google/Protobuf/Internal/ |
D | DescriptorPool.php | 96 $descriptor->getClass(); 97 $this->class_to_desc[$descriptor->getClass()] = $descriptor; 110 $descriptor->getClass(); 111 $this->class_to_enum_desc[$descriptor->getClass()] = $descriptor;
|
D | Message.php | 111 $value_field->getMessageType()->getClass()); 118 $value_field->getEnumType()->getClass()); 134 $field->getMessageType()->getClass()); 140 $field->getEnumType()->getClass()); 202 $klass = $desc->getClass(); 427 $klass = $field->getMessageType()->getClass(); 558 $value_field->getMessageType()->getClass()); 565 $value_field->getEnumType()->getClass()); 581 $field->getMessageType()->getClass()); 587 $field->getEnumType()->getClass()); [all …]
|
/third_party/typescript/src/services/codefixes/ |
D | fixClassDoesntImplementInheritedAbstractMember.ts | 13 … addMissingMembers(getClass(sourceFile, span.start), sourceFile, context, t, context.preferences)); 20 const classDeclaration = getClass(diag.file, diag.start); 28 function getClass(sourceFile: SourceFile, pos: number): ClassLikeDeclaration { function
|
D | fixClassIncorrectlyImplementsInterface.ts | 12 const classDeclaration = getClass(sourceFile, span.start); 22 const classDeclaration = getClass(diag.file, diag.start); 32 function getClass(sourceFile: SourceFile, pos: number): ClassLikeDeclaration { function
|
/third_party/typescript/tests/cases/compiler/ |
D | declarationEmitExpressionInExtends5.ts | 12 export class Derived extends getClass<IFace>() 16 export function getClass<T>() : new() => T function
|
D | declarationEmitExpressionInExtends2.ts | 8 function getClass<T>(c: T) { function 12 class MyClass extends getClass(2) <string, number> {
|
/third_party/protobuf/php/src/Google/Protobuf/ |
D | EnumDescriptor.php | 58 public function getClass() function in Google\\Protobuf\\EnumDescriptor 60 return $this->internal_desc->getClass();
|
D | Descriptor.php | 62 public function getClass() function in Google\\Protobuf\\Descriptor 64 return $this->internal_desc->getClass();
|
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/ |
D | ExtensionSchemaLite.java | 258 extension.getMessageDefaultInstance().getClass(), extensionRegistry); in parseExtension() 264 extension.getMessageDefaultInstance().getClass(), extensionRegistry); in parseExtension() 418 Protobuf.getInstance().schemaFor(data.get(0).getClass())); in serializeExtension() 430 Protobuf.getInstance().schemaFor(data.get(0).getClass())); in serializeExtension() 489 Protobuf.getInstance().schemaFor(extension.getValue().getClass())); in serializeExtension() 495 Protobuf.getInstance().schemaFor(extension.getValue().getClass())); in serializeExtension() 517 reader.readMessage(extension.getMessageDefaultInstance().getClass(), extensionRegistry); in parseLengthPrefixedMessageSetItem()
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/util/ |
D | UResourceBundle.java | 514 + aKey, this.getClass().getName(), aKey); in get() 579 + this.getClass().getName() + ", key " in get() 580 + getKey(), this.getClass().getName(), getKey()); in get() 875 + this.getClass().getName() + ", key " + aKey, in handleGetObjectImpl() 876 this.getClass().getName(), aKey); in handleGetObjectImpl()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/util/ |
D | UResourceBundle.java | 491 + aKey, this.getClass().getName(), aKey); in get() 554 + this.getClass().getName() + ", key " in get() 555 + getKey(), this.getClass().getName(), getKey()); in get() 832 + this.getClass().getName() + ", key " + aKey, in handleGetObjectImpl() 833 this.getClass().getName(), aKey); in handleGetObjectImpl()
|
/third_party/icu/icu4j/main/tests/localespi/src/com/ibm/icu/dev/test/localespi/ |
D | NumberFormatTest.java | 265 … errln("FAIL: Different results for formatting " + o.getClass().getName() + " by NumberFormat(" in TestICUEquivalent() 284 … + " NumberFormat(" + methodName[0] + ") for parsing " + o.getClass().getName() in TestICUEquivalent() 287 … errln("FAIL: Different results for parsing " + o.getClass().getName() + " by NumberFormat(" in TestICUEquivalent() 291 … + methodName[0] + ") for parsing " + o.getClass().getName() + " in locale " + loc); in TestICUEquivalent()
|
/third_party/skia/third_party/externals/oboe/samples/audio-device/src/main/java/com/google/oboe/samples/audio_device/ |
D | AudioDeviceListEntry.java | 55 if (o == null || getClass() != o.getClass()) return false; in equals()
|
/third_party/skia/third_party/externals/oboe/apps/OboeTester/app/src/main/java/com/google/sample/audio_device/ |
D | AudioDeviceListEntry.java | 55 if (o == null || getClass() != o.getClass()) return false; in equals()
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | ChineseDateFormatSymbols.java | 79 super(cal.getClass(), locale); in ChineseDateFormatSymbols() 91 super(cal.getClass(), locale); in ChineseDateFormatSymbols()
|