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

12

/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;
41 synchronizer.receiveMessageWithoutException("org.apache.harmony.jpda.tests.jdwp.ClassType.InvokeMethod003Debuggee(#1)");
43 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.
49 c = Class.forName("org.apache.harmony.jpda.tests.jdwp.ClassType.NewInstance002Debuggee$TestClass");
55 synchronizer.receiveMessageWithoutException("org.apache.harmony.jpda.tests.jdwp.ClassType.NewInstance002Debuggee(#1)");
57 synchronizer.receiveMessageWithoutException("org.apache.harmony.jpda.tests.jdwp.ClassType.NewInstance002Debuggee(#2)");
H A DSetValues002Debuggee.java26 package org.apache.harmony.jpda.tests.jdwp.ClassType;
48 logWriter.println("\n--> Debuggee: Before ClassType::SetValues command:");
55 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.
46 return "org.apache.harmony.jpda.tests.jdwp.ClassType.ClassTypeDebuggee";
55 return "Lorg/apache/harmony/jpda/tests/jdwp/ClassType/ClassTypeDebuggee;";
H A DInvokeMethod003Test.java19 package org.apache.harmony.jpda.tests.jdwp.ClassType;
32 * JDWP unit test for ClassType.InvokeMethod command.
36 return "org.apache.harmony.jpda.tests.jdwp.ClassType.InvokeMethod003Debuggee";
40 * This testcase exercises ClassType.InvokeMethod command.
43 * <BR>Then sends ClassType.InvokeMethod command for method with null
52 String debuggeeClassSig = "Lorg/apache/harmony/jpda/tests/jdwp/ClassType/InvokeMethod003Debuggee;";
120 logWriter.println(" Send ClassType.InvokeMethod without Exception");
122 checkReplyPacket(reply, "ClassType::InvokeMethod command");
127 logWriter.println(" ClassType.InvokeMethod: returnValue.getIntValue()="
136 logWriter.println(" ClassType
[all...]
H A DNewInstance002Test.java19 package org.apache.harmony.jpda.tests.jdwp.ClassType;
32 * JDWP unit test for ClassType.NewInstance command.
37 return "org.apache.harmony.jpda.tests.jdwp.ClassType.NewInstance002Debuggee";
41 * This testcase exercises ClassType.NewInstance command.
44 * <BR>Then sends ClassType.NewInstance command to create a new instance and
53 String debuggeeClassSig = "Lorg/apache/harmony/jpda/tests/jdwp/ClassType/NewInstance002Debuggee;";
107 String testClassSig = "Lorg/apache/harmony/jpda/tests/jdwp/ClassType/NewInstance002Debuggee$TestClass;";
126 logWriter.println(" Send ClassType.NewInstance (without Exception)");
128 checkReplyPacket(reply, "ClassType::NewInstance command");
131 logWriter.println(" ClassType
[all...]
H A DSetValues002Test.java26 package org.apache.harmony.jpda.tests.jdwp.ClassType;
38 * JDWP unit test for ClassType.SetValues command with incorrect types of values.
44 static final String thisCommandName = "ClassType::SetValues command";
45 static final String debuggeeSignature = "Lorg/apache/harmony/jpda/tests/jdwp/ClassType/SetValues002Debuggee;";
48 return "org.apache.harmony.jpda.tests.jdwp.ClassType.SetValues002Debuggee";
52 * The test checks ClassType.SetValues command for
H A DSuperClassTest.java26 package org.apache.harmony.jpda.tests.jdwp.ClassType;
39 * JDWP unit test for ClassType.SuperClass command.
49 checkReplyPacket(reply, "ClassType.Superclass command", errorExpected);
60 ("ClassType::Superclass command returned invalid expectedSignature that must be null",
65 assertString("ClassType::Superclass command returned invalid signature,",
71 * This testcase exercises ClassType.Superclass command.
138 * This testcase exercises ClassType.Superclass command.
182 * This testcase exercises ClassType.Superclass command.
H A DSetValuesTest.java26 package org.apache.harmony.jpda.tests.jdwp.ClassType;
39 * JDWP unit test for ClassType.SetValues command.
44 * This testcase exercises ClassType.SetValues command.
47 * Then sets values for these fields with ClassType.SetValues command
135 checkReplyPacket(reply, "ClassType::SetValues command");
145 checkReplyPacket(reply, "ClassType::GetValues command");
148 assertEquals("ClassType::SetValues returne invalid fields number,", 1, fields);
150 assertEquals("ClassType::SetValues returne invalid returned value,", value, returnedValue);
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSImageGeneratorValue.h72 explicit CSSImageGeneratorValue(ClassType);
H A DCSSValue.h128 enum ClassType { enum in class:blink::CSSValue
182 ClassType classType() const { return static_cast<ClassType>(m_classType); }
184 explicit CSSValue(ClassType classType, bool isCSSOMSafe = false)
217 unsigned m_classType : ClassTypeBits; // ClassType
H A DCSSValueList.cpp29 CSSValueList::CSSValueList(ClassType classType, ValueListSeparator listSeparator)
H A DCSSValueList.h67 CSSValueList(ClassType, ValueListSeparator);
H A DCSSGradientValue.h112 CSSGradientValue(ClassType classType, CSSGradientRepeat repeat, CSSGradientType gradientType)
120 CSSGradientValue(const CSSGradientValue& other, ClassType classType, CSSGradientType gradientType)
H A DCSSImageGeneratorValue.cpp36 CSSImageGeneratorValue::CSSImageGeneratorValue(ClassType classType)
H A DCSSValue.cpp83 static PassRefPtrWillBeRawPtr<TextCloneCSSValue> create(ClassType classType, const String& text)
93 TextCloneCSSValue(ClassType classType, const String& text)
/external/clang/test/SemaCXX/
H A Dtype-traits.cpp232 typedef Derives ClassType; typedef
238 { int arr[T(__is_class(ClassType))]; }
282 { int arr[F(__is_enum(ClassType))]; }
312 { int arr[F(__is_final(ClassType))]; }
343 { int arr[F(__is_sealed(ClassType))]; }
364 { int arr[F(__is_polymorphic(ClassType))]; }
392 int t27[F(__is_integral(ClassType))];
421 int t27[F(__is_floating_point(ClassType))];
450 int t27[F(__is_arithmetic(ClassType))];
505 int t27[F(__is_void(ClassType))];
[all...]
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/share/
H A DAllTests.java65 suite.addTestSuite(org.apache.harmony.jpda.tests.jdwp.ClassType.InvokeMethod002Test.class);
66 suite.addTestSuite(org.apache.harmony.jpda.tests.jdwp.ClassType.InvokeMethod003Test.class);
67 suite.addTestSuite(org.apache.harmony.jpda.tests.jdwp.ClassType.InvokeMethodTest.class);
68 suite.addTestSuite(org.apache.harmony.jpda.tests.jdwp.ClassType.NewInstance002Test.class);
69 suite.addTestSuite(org.apache.harmony.jpda.tests.jdwp.ClassType.NewInstanceTest.class);
70 suite.addTestSuite(org.apache.harmony.jpda.tests.jdwp.ClassType.SetValues002Test.class);
71 suite.addTestSuite(org.apache.harmony.jpda.tests.jdwp.ClassType.SetValuesTest.class);
72 suite.addTestSuite(org.apache.harmony.jpda.tests.jdwp.ClassType.SuperClassTest.class);
/external/chromium_org/v8/src/
H A Dtypes.h298 class ClassType;
306 typedef typename Config::template Handle<ClassType>::type ClassHandle;
328 return ClassType::New(map, region);
442 ClassType* AsClass() { return ClassType::cast(this); }
712 class TypeImpl<Config>::ClassType : public StructuralType { class in class:v8::internal::TypeImpl
726 Config::template cast<ClassType>(Config::from_class(map, region));
728 type = Config::template cast<ClassType>(
736 static ClassType* cast(TypeImpl* type) {
738 return static_cast<ClassType*>(typ
[all...]
/external/clang/lib/AST/
H A DDeclarationName.cpp150 QualType ClassType = N.getCXXNameType(); local
151 if (const RecordType *ClassRec = ClassType->getAs<RecordType>())
155 return OS << ClassType.getAsString(PrintingPolicy(LO));
H A DDeclCXX.cpp1259 QualType ClassType = Context.getTypeDeclType(this); local
1263 Context.getCanonicalType(ClassType));
1489 QualType ClassType local
1491 return Context.hasSameUnqualifiedType(ClassType, ParamType);
1510 QualType ClassType local
1512 return Context.hasSameUnqualifiedType(ClassType, ParamType);
/external/lldb/test/unittest2/
H A Dmain.py221 if isinstance(self.testRunner, (type, types.ClassType)):
/external/doclava/src/com/google/doclava/
H A DInfoBuilder.java469 ClassType.ORDINARY);
537 * ClassType exists solely to tell buildClassName which type of ClassInfo is being built.
539 private enum ClassType { enum in class:InfoBuilder
555 String commentText, SourcePositionInfo position, ClassType classType) {
566 // set appropriate flags based on ClassType
1201 commentAndPosition.getPosition(), ClassType.ENUM);
1321 commentAndPosition.getPosition(), ClassType.INTERFACE);
1416 commentAndPosition.getPosition(), ClassType.INTERFACE);

Completed in 445 milliseconds

12