HomeSort by relevance Sort by last modified time
    Searched full:classtype (Results 1 - 25 of 670) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CodeGenCXX/
debug-info-artificial-arg.cpp 25 // CHECK: ![[CLASSTYPE:.*]] = distinct !DICompositeType(tag: DW_TAG_class_type, name: "A",
27 // CHECK: ![[ARTARG:.*]] = !DIDerivedType(tag: DW_TAG_pointer_type, baseType: ![[CLASSTYPE]],{{.*}} DIFlagArtificial
28 // CHECK: !DISubprogram(name: "A", scope: ![[CLASSTYPE]]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ClassType/
NewInstanceTagTest.java 19 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.NewInstance of a subclass of java.lang.ThreadGroup return
    [all...]
NewInstanceStringTest.java 19 package org.apache.harmony.jpda.tests.jdwp.ClassType;
28 * JDWP unit test for ClassType.NewInstance command with java.lang.String class.
38 * Test ClassType.NewInstance using the constructor
46 * Test ClassType.NewInstance using the constructor
63 * Test ClassType.NewInstance using the constructor
81 * Test ClassType.NewInstance using the constructor
103 * Test ClassType.NewInstance using the constructor
123 * Test ClassType.NewInstance using the constructor
146 * Test ClassType.NewInstance using the constructor
166 * Test ClassType.NewInstance using the constructo
    [all...]
NewInstance002Test.java 19 package org.apache.harmony.jpda.tests.jdwp.ClassType;
32 * JDWP unit test for ClassType.NewInstance command.
38 return "org.apache.harmony.jpda.tests.jdwp.ClassType.NewInstance002Debuggee";
42 * This testcase exercises ClassType.NewInstance command.
45 * <BR>Then sends ClassType.NewInstance command to create a new instance and
54 String debuggeeClassSig = "Lorg/apache/harmony/jpda/tests/jdwp/ClassType/NewInstance002Debuggee;";
108 String testClassSig = "Lorg/apache/harmony/jpda/tests/jdwp/ClassType/NewInstance002Debuggee$TestClass;";
127 logWriter.println(" Send ClassType.NewInstance (without Exception)");
129 checkReplyPacket(reply, "ClassType::NewInstance command");
132 logWriter.println(" ClassType.NewInstance: newObject.tag=
    [all...]
NewInstance002Debuggee.java 19 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)");
InvokeMethod003Test.java 19 package org.apache.harmony.jpda.tests.jdwp.ClassType;
32 * JDWP unit test for ClassType.InvokeMethod command.
37 return "org.apache.harmony.jpda.tests.jdwp.ClassType.InvokeMethod003Debuggee";
41 * This testcase exercises ClassType.InvokeMethod command.
44 * <BR>Then sends ClassType.InvokeMethod command for method with null
53 String debuggeeClassSig = "Lorg/apache/harmony/jpda/tests/jdwp/ClassType/InvokeMethod003Debuggee;";
121 logWriter.println(" Send ClassType.InvokeMethod without Exception");
123 checkReplyPacket(reply, "ClassType::InvokeMethod command");
128 logWriter.println(" ClassType.InvokeMethod: returnValue.getIntValue()="
137 logWriter.println(" ClassType.InvokeMethod: exception.tag=
    [all...]
NewInstanceTest.java 26 package org.apache.harmony.jpda.tests.jdwp.ClassType;
39 * JDWP unit test for ClassType.NewInstance command.
49 * This testcase exercises ClassType.NewInstance command.
52 * <BR>&nbsp;&nbsp; - send ClassType.NewInstance command for class,
56 * <BR>&nbsp;&nbsp; - send ClassType.NewInstance command for class,
152 logWriter.println(" Send ClassType.NewInstance (without Exception)");
154 checkReplyPacket(reply, "ClassType::NewInstance command");
157 logWriter.println(" ClassType.NewInstance: newObject.tag="
160 logWriter.println(" ClassType.NewInstance: exception.tag="
165 assertEquals("ClassType::NewInstance returned invalid newObject.tag,", JDWPConstants.Tag.OBJECT_TAG, newObject.ta
    [all...]
InvokeMethod003Debuggee.java 19 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)");
JDWPClassTypeTestCase.java 26 package org.apache.harmony.jpda.tests.jdwp.ClassType;
33 * Super class of some JDWP unit tests for JDWP ClassType command set.
44 return "org.apache.harmony.jpda.tests.jdwp.ClassType.ClassTypeDebuggee";
53 return "Lorg/apache/harmony/jpda/tests/jdwp/ClassType/ClassTypeDebuggee;";
SetValuesTest.java 26 package org.apache.harmony.jpda.tests.jdwp.ClassType;
38 * JDWP unit test for ClassType.SetValues command.
43 * This testcase exercises ClassType.SetValues command.
46 * Then sets values for these fields with ClassType.SetValues command
134 checkReplyPacket(reply, "ClassType::SetValues command");
144 checkReplyPacket(reply, "ClassType::GetValues command");
147 assertEquals("ClassType::SetValues returne invalid fields number,", 1, fields);
149 assertEquals("ClassType::SetValues returne invalid returned value,", value, returnedValue);
InvokeMethod002Test.java 25 package org.apache.harmony.jpda.tests.jdwp.ClassType;
39 * JDWP unit test for ClassType.InvokeMethod command.
48 * This testcase checks ClassType.InvokeMethod command.
216 logWriter.println(" Send ClassType.InvokeMethod");
220 checkReplyPacket(reply, "ClassType::InvokeMethod command",
223 checkReplyPacket(reply, "ClassType::InvokeMethod command");
226 logWriter.println(" ClassType.InvokeMethod: returnValue=" + returnValue);
229 logWriter.println(" ClassType.InvokeMethod: returnedString=" + returnedString);
233 assertNotNull("ClassType::InvokeMethod returned null exception",
235 assertEquals("ClassType::InvokeMethod returned invalid exception objectID,"
    [all...]
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/
HasParentNode.java 55 default <N> Optional<N> getAncestorOfType(Class<N> classType) {
58 if (classType.isAssignableFrom(parent.getClass())) {
59 return Optional.of(classType.cast(parent));
  /external/skia/tests/
GrTRecorderTest.cpp 118 enum ClassType {
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()
    [all...]
  /external/skqp/tests/
GrTRecorderTest.cpp 118 enum ClassType {
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()
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
new.py 11 from types import ClassType as classobj
  /external/python/cpython2/Lib/
new.py 11 from types import ClassType as classobj
  /external/smali/dexlib2/src/test/java/org/jf/dexlib2/analysis/
TestUtils.java 43 public static ClassDef makeClassDef(@Nonnull String classType, @Nullable String superType, String... interfaces) {
44 return new ImmutableClassDef(classType, 0, superType, ImmutableSet.copyOf(interfaces),
48 public static ClassDef makeInterfaceDef(@Nonnull String classType, String... interfaces) {
49 return new ImmutableClassDef(classType, AccessFlags.INTERFACE.getValue(), "Ljava/lang/Object;",
  /prebuilts/gdb/darwin-x86/lib/python2.7/
new.py 11 from types import ClassType as classobj
  /prebuilts/gdb/linux-x86/lib/python2.7/
new.py 11 from types import ClassType as classobj
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
new.py 11 from types import ClassType as classobj
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
new.py 11 from types import ClassType as classobj
  /tools/metalava/src/main/java/com/android/tools/metalava/model/psi/
ClassType.kt 22 enum class ClassType {
30 fun getClassType(psiClass: PsiClass): ClassType {
  /art/tools/
external_oj_libjdwp_art_failures.txt 33 "org.apache.harmony.jpda.tests.jdwp.ClassType.InvokeMethod002Test#testInvokeMethod_wrong_argument_types",
34 "org.apache.harmony.jpda.tests.jdwp.ClassType.InvokeMethodTest#testInvokeMethod002",
35 "org.apache.harmony.jpda.tests.jdwp.ClassType.InvokeMethodTest#testInvokeMethod003",
36 "org.apache.harmony.jpda.tests.jdwp.ClassType.NewInstanceTest#testNewInstance002",
37 "org.apache.harmony.jpda.tests.jdwp.ClassType.SetValues002Test#testSetValues002",
  /cts/tests/jdwp/runner/host-side/resources/expectations/
external_oj_libjdwp_art_failures.txt 30 "org.apache.harmony.jpda.tests.jdwp.ClassType.InvokeMethod002Test#testInvokeMethod_wrong_argument_types",
31 "org.apache.harmony.jpda.tests.jdwp.ClassType.InvokeMethodTest#testInvokeMethod002",
32 "org.apache.harmony.jpda.tests.jdwp.ClassType.InvokeMethodTest#testInvokeMethod003",
33 "org.apache.harmony.jpda.tests.jdwp.ClassType.NewInstanceTest#testNewInstance002",
34 "org.apache.harmony.jpda.tests.jdwp.ClassType.SetValues002Test#testSetValues002",
  /external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/javassistmodel/
JavassistUtils.java 136 if (signatureType instanceof SignatureAttribute.ClassType) {
137 SignatureAttribute.ClassType classType = (SignatureAttribute.ClassType) signatureType;
138 List<ResolvedType> typeArguments = classType.getTypeArguments() == null ? Collections.emptyList() : Arrays.stream(classType.getTypeArguments()).map(ta -> typeArgumentToType(ta, typeSolver, typeParametrizable)).collect(Collectors.toList());
140 classType.getDeclaringClass() != null ?
141 classType.getDeclaringClass().getName() + "." + classType.getName() :
142 classType.getName()
    [all...]

Completed in 407 milliseconds

1 2 3 4 5 6 7 8 91011>>