Searched refs:ClassType (Results 1 - 25 of 75) sorted by relevance

123

/external/javassist/src/main/javassist/bytecode/
H A DSignatureAttribute.java177 ClassType superClass;
178 ClassType[] interfaces;
179 ClassSignature(TypeParameter[] p, ClassType s, ClassType[] i) {
197 public ClassType getSuperClass() { return superClass; }
204 public ClassType[] getInterfaces() { return interfaces; }
461 public static class ClassType extends ObjectType { class in class:SignatureAttribute
465 static ClassType make(String s, int b, int e,
466 TypeArgument[] targs, ClassType parent) {
468 return new ClassType(
473 ClassType(String signature, int begin, int end, TypeArgument[] targs) { method in class:SignatureAttribute.ClassType
[all...]
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ClassType/
H A DInvokeMethod003Debuggee.java19 package org.apache.harmony.jpda.tests.jdwp.ClassType;
42 synchronizer.receiveMessageWithoutException("org.apache.harmony.jpda.tests.jdwp.ClassType.InvokeMethod003Debuggee(#1)");
44 synchronizer.receiveMessageWithoutException("org.apache.harmony.jpda.tests.jdwp.ClassType.InvokeMethod003Debuggee(#2)");
H A DClassTypeDebuggee.java26 package org.apache.harmony.jpda.tests.jdwp.ClassType;
32 * Common debuggee of some JDWP unit tests for JDWP ClassType command set.
H A DNewInstance002Debuggee.java19 package org.apache.harmony.jpda.tests.jdwp.ClassType;
31 // Constructor invoked from JDWP ClassType.NewInstance command.
51 c = Class.forName("org.apache.harmony.jpda.tests.jdwp.ClassType.NewInstance002Debuggee$TestClass");
57 synchronizer.receiveMessageWithoutException("org.apache.harmony.jpda.tests.jdwp.ClassType.NewInstance002Debuggee(#1)");
59 synchronizer.receiveMessageWithoutException("org.apache.harmony.jpda.tests.jdwp.ClassType.NewInstance002Debuggee(#2)");
H A DNewInstanceTagDebuggee.java19 package org.apache.harmony.jpda.tests.jdwp.ClassType;
54 // Suspend the debuggee on breakpoint so the test can send ClassType.NewInstance command.
H A DInvokeMethodAfterMultipleThreadSuspensionTest.java19 package org.apache.harmony.jpda.tests.jdwp.ClassType;
30 * JDWP unit test for ClassType.InvokeCommand command with thread suspended more than once before
55 return "ClassType.InvokeCommand";
H A DInvokeMethodWithSuspensionTest.java19 package org.apache.harmony.jpda.tests.jdwp.ClassType;
30 * JDWP unit test for ClassType.InvokeCommand command with a thread suspension.
53 return "ClassType.InvokeCommand";
H A DNewInstanceAfterMultipleThreadSuspensionTest.java19 package org.apache.harmony.jpda.tests.jdwp.ClassType;
29 * JDWP unit test for ClassType.NewInstance command with thread suspended more than once before the
54 return "ClassType.NewInstance";
H A DNewInstanceStringDebuggee.java19 package org.apache.harmony.jpda.tests.jdwp.ClassType;
52 // Suspend the debuggee on breakpoint so the test can send ClassType.NewInstance command.
H A DNewInstanceWithSuspensionTest.java19 package org.apache.harmony.jpda.tests.jdwp.ClassType;
29 * JDWP unit test for ClassType.NewInstance command with a thread suspension.
52 return "ClassType.NewInstance";
H A DSetValues002Debuggee.java26 package org.apache.harmony.jpda.tests.jdwp.ClassType;
49 logWriter.println("\n--> Debuggee: Before ClassType::SetValues command:");
56 logWriter.println("\n--> Debuggee: After ClassType::SetValues command:");
H A DJDWPClassTypeTestCase.java26 package org.apache.harmony.jpda.tests.jdwp.ClassType;
36 * Super class of some JDWP unit tests for JDWP ClassType command set.
47 return "org.apache.harmony.jpda.tests.jdwp.ClassType.ClassTypeDebuggee";
56 return "Lorg/apache/harmony/jpda/tests/jdwp/ClassType/ClassTypeDebuggee;";
H A DNewInstanceTagTest.java19 package org.apache.harmony.jpda.tests.jdwp.ClassType;
27 * JDWP unit test for ClassType.NewInstance command for particular reference
44 * Test ClassType.NewInstance of java.lang.Object returns JT_OBJECT tag.
52 * Test ClassType.NewInstance of a subclass of java.lang.Object returns JT_OBJECT tag.
61 * Test ClassType.NewInstance of java.lang.String returns JT_STRING tag.
69 * Test ClassType.NewInstance of a subclass of java.lang.ClassLoader returns
82 * Test ClassType.NewInstance of java.lang.Thread returns JT_THREAD tag.
90 * Test ClassType.NewInstance of a subclass of java.lang.Thread returns
100 * Test ClassType.NewInstance of java.lang.ThreadGroup returns
119 * Test ClassType
[all...]
H A DAbstractNewInstanceTestCase.java19 package org.apache.harmony.jpda.tests.jdwp.ClassType;
35 * Base class to test ClassType.NewInstance for specific reference types.
67 * Checks that ClassType.NewInstance command for the given type and constructor returns the
70 * Once the debuggee is suspended on the breakpoint, send ClassType.NewInstance command
119 .println("Sending ClassType.NewInstance command for constructor " + fullMethodName);
131 checkReplyPacket(reply, "ClassType.NewInstance command");
/external/skia/tests/
H A DGrTRecorderTest.cpp118 enum ClassType { enum
139 virtual ClassType getType() { return kBase_ClassType; }
153 virtual ClassType getType() { return kSubclass_ClassType; }
168 virtual ClassType getType() { return kSubSubclass_ClassType; }
190 virtual ClassType getType() { return kSubclassExtraData_ClassType; }
207 virtual ClassType getType() { return kSubclassEmpty_ClassType; }
214 ClassType next() {
216 return static_cast<ClassType>(fCurrent % kNumClassTypes);
273 ClassType classType = order.next();
/external/ImageMagick/MagickCore/
H A Dcache-view.h57 extern MagickExport ClassType
83 SetCacheViewStorageClass(CacheView *,const ClassType,ExceptionInfo *),
H A Dcache-private.h131 ClassType
234 extern MagickPrivate ClassType
H A Dmagick-type.h143 } ClassType; typedef in typeref:enum:__anon61
H A Dimage.h156 ClassType
539 SetImageStorageClass(Image *,const ClassType,ExceptionInfo *),
H A Dpixel.h169 ClassType
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/share/
H A DAllTests.java71 suite.addTestSuite(org.apache.harmony.jpda.tests.jdwp.ClassType.InvokeMethod002Test.class);
72 suite.addTestSuite(org.apache.harmony.jpda.tests.jdwp.ClassType.InvokeMethod003Test.class);
73 suite.addTestSuite(org.apache.harmony.jpda.tests.jdwp.ClassType.InvokeMethodAfterMultipleThreadSuspensionTest.class);
74 suite.addTestSuite(org.apache.harmony.jpda.tests.jdwp.ClassType.InvokeMethodWithSuspensionTest.class);
75 suite.addTestSuite(org.apache.harmony.jpda.tests.jdwp.ClassType.InvokeMethodTest.class);
76 suite.addTestSuite(org.apache.harmony.jpda.tests.jdwp.ClassType.NewInstance002Test.class);
77 suite.addTestSuite(org.apache.harmony.jpda.tests.jdwp.ClassType.NewInstanceTagTest.class);
78 suite.addTestSuite(org.apache.harmony.jpda.tests.jdwp.ClassType.NewInstanceAfterMultipleThreadSuspensionTest.class);
79 suite.addTestSuite(org.apache.harmony.jpda.tests.jdwp.ClassType.NewInstanceStringTest.class);
80 suite.addTestSuite(org.apache.harmony.jpda.tests.jdwp.ClassType
[all...]
/external/libcxx/test/libcxx/utilities/function.objects/func.require/
H A Dbullet_1_2_3.pass.cpp132 // ClassType - The type of the class being tested.
138 template <class ClassType, class CallSig, int Arity, class CV,
150 typedef ClassType T;
215 typedef CallSig (ClassType::*MemPtr);
218 b.runTest( (MemPtr)&ClassType::f, obj);
225 typedef CallSig (ClassType::*MemPtr);
228 b.runTest( (MemPtr)&ClassType::f, obj);
235 typedef CallSig (ClassType::*MemPtr);
238 b.runTest( (MemPtr)&ClassType::f, obj);
H A Dbullet_7.pass.cpp164 // ClassType - The type of the call object.
169 template <class ClassType, class CallSig, int Arity,
174 typedef MethodID<CallSig ClassType::*> MID;
176 typedef ClassType T;
/external/llvm/include/llvm/DebugInfo/CodeView/
H A DTypeRecord.h95 TypeIndex ClassType; member in struct:llvm::codeview::MemberPointerInfo::Layout
185 MemberFunctionRecord(TypeIndex ReturnType, TypeIndex ClassType, argument
190 ClassType(ClassType), ThisType(ThisType), CallConv(CallConv),
203 TypeIndex getClassType() const { return ClassType; }
214 TypeIndex ClassType; member in struct:llvm::codeview::MemberFunctionRecord::Layout
224 TypeIndex ClassType; member in class:llvm::codeview::MemberFunctionRecord
236 MemberFuncIdRecord(TypeIndex ClassType, TypeIndex FunctionType, argument
238 : TypeRecord(TypeRecordKind::MemberFuncId), ClassType(ClassType),
253 TypeIndex ClassType; member in struct:llvm::codeview::MemberFuncIdRecord::Layout
257 TypeIndex ClassType; member in class:llvm::codeview::MemberFuncIdRecord
[all...]
/external/clang/test/SemaCXX/
H A Dtype-traits.cpp250 typedef Derives ClassType; typedef
256 { int arr[T(__is_class(ClassType))]; }
300 { int arr[F(__is_enum(ClassType))]; }
345 { int arr[F(__is_final(ClassType))]; }
368 { int arr[F(__is_sealed(ClassType))]; }
391 { int arr[F(__is_polymorphic(ClassType))]; }
419 int t27[F(__is_integral(ClassType))];
448 int t27[F(__is_floating_point(ClassType))];
477 int t27[F(__is_arithmetic(ClassType))];
532 int t27[F(__is_void(ClassType))];
[all...]

Completed in 533 milliseconds

123