Home
last modified time | relevance | path

Searched refs:getClass (Results 1 – 25 of 294) sorted by relevance

12345678910>>...12

/third_party/typescript/tests/baselines/reference/
DdeclarationEmitExpressionInExtends5.js12 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;
DdeclarationEmitExpressionInExtends5.symbols16 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))
DdeclarationEmitExpressionInExtends2.symbols16 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))
DdeclarationEmitExpressionInExtends2.types12 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
DdeclarationEmitExpressionInExtends5.types14 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
DdeclarationEmitExpressionInExtends2.js7 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/
DDiscardUnknownFieldsTest.java86 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()
DExtensionRegistryFactoryTest.java87 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/
DNumberFormatRoundTripTest.java161 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/
DNumberFormatRoundTripTest.java164 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/
DDescriptorPool.php96 $descriptor->getClass();
97 $this->class_to_desc[$descriptor->getClass()] = $descriptor;
110 $descriptor->getClass();
111 $this->class_to_enum_desc[$descriptor->getClass()] = $descriptor;
DMessage.php111 $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/
DfixClassDoesntImplementInheritedAbstractMember.ts13 … 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
DfixClassIncorrectlyImplementsInterface.ts12 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/
DdeclarationEmitExpressionInExtends5.ts12 export class Derived extends getClass<IFace>()
16 export function getClass<T>() : new() => T function
DdeclarationEmitExpressionInExtends2.ts8 function getClass<T>(c: T) { function
12 class MyClass extends getClass(2) <string, number> {
/third_party/protobuf/php/src/Google/Protobuf/
DEnumDescriptor.php58 public function getClass() function in Google\\Protobuf\\EnumDescriptor
60 return $this->internal_desc->getClass();
DDescriptor.php62 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/
DExtensionSchemaLite.java258 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/
DUResourceBundle.java514 + 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/
DUResourceBundle.java491 + 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/
DNumberFormatTest.java265 … 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/
DAudioDeviceListEntry.java55 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/
DAudioDeviceListEntry.java55 if (o == null || getClass() != o.getClass()) return false; in equals()
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DChineseDateFormatSymbols.java79 super(cal.getClass(), locale); in ChineseDateFormatSymbols()
91 super(cal.getClass(), locale); in ChineseDateFormatSymbols()

12345678910>>...12