Searched refs:classType (Results 1 - 25 of 55) sorted by relevance

123

/external/smali/dexlib2/src/test/java/org/jf/dexlib2/analysis/
H A DTestUtils.java43 public static ClassDef makeClassDef(@Nonnull String classType, @Nullable String superType, String... interfaces) { argument
44 return new ImmutableClassDef(classType, 0, superType, ImmutableSet.copyOf(interfaces),
48 public static ClassDef makeInterfaceDef(@Nonnull String classType, String... interfaces) { argument
49 return new ImmutableClassDef(classType, AccessFlags.INTERFACE.getValue(), "Ljava/lang/Object;",
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/
H A DHasParentNode.java55 default <N> Optional<N> getAncestorOfType(Class<N> classType) { argument
58 if (classType.isAssignableFrom(parent.getClass())) {
59 return Optional.of(classType.cast(parent));
/external/smali/smalidea/src/main/java/org/jf/smalidea/psi/impl/
H A DSmaliAnnotation.java74 SmaliClassTypeElement classType = findChildByClass(SmaliClassTypeElement.class);
75 if (classType == null) {
78 return classType.getSmaliName();
H A DSmaliClassStatement.java83 SmaliClassTypeElement classType = findChildByClass(SmaliClassTypeElement.class);
84 if (classType == null) {
89 return NameUtils.smaliToJavaType(classType.getSmaliName());
H A DSmaliClassTypeElement.java56 @Nullable private SmaliClassType classType = null; field in class:SmaliClassTypeElement
63 if (classType == null) {
64 classType = new SmaliClassType(this);
66 return classType;
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/introspector/
H A DGenericProperty.java72 Class<?> classType = (Class<?>) genType;
73 if (classType.isArray()) {
/external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/javassistmodel/
H A DJavassistUtils.java137 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();
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/runtime/
H A DRuntimeTestBase.java109 Type classType = Type.getObjectType(className);
131 gen.putStatic(classType, InstrSupport.DATAFIELD_NAME,
142 gen.getStatic(classType, InstrSupport.DATAFIELD_NAME,
152 gen.getStatic(classType, InstrSupport.DATAFIELD_NAME,
165 gen.getStatic(classType, InstrSupport.DATAFIELD_NAME,
H A DOfflineInstrumentationAccessGeneratorTest.java90 Type classType = Type.getObjectType(className);
112 gen.putStatic(classType, InstrSupport.DATAFIELD_NAME,
123 gen.getStatic(classType, InstrSupport.DATAFIELD_NAME,
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/raw/
H A DFieldIdItem.java73 String classType = dexFile.getType(classIndex);
81 return String.format("%s->%s:%s", classType, fieldName, fieldType);
H A DMethodIdItem.java73 String classType = dexFile.getType(classIndex);
81 return String.format("%s->%s%s", classType, methodName, protoString);
H A DClassDefItem.java112 private void addClassDataIdentity(int classDataOffset, String classType) {
114 classDataAnnotator.setItemIdentity(classDataOffset, classType);
/external/robolectric-shadows/sandbox/src/main/java/org/robolectric/internal/bytecode/
H A DSandboxClassLoader.java368 final Type classType; field in class:SandboxClassLoader.ClassInstrumentor
376 this.classType = Type.getObjectType(internalClassName);
437 generator.invokeVirtual(classType, new Method(ROBO_INIT_METHOD_NAME, "()V"));
450 generator.getField(classType, ShadowConstants.CLASS_HANDLER_DATA_FIELD_NAME, OBJECT_TYPE); // contents of __robo_data__
456 generator.putField(classType, ShadowConstants.CLASS_HANDLER_DATA_FIELD_NAME, OBJECT_TYPE);
468 generator.getField(classType, ShadowConstants.CLASS_HANDLER_DATA_FIELD_NAME, OBJECT_TYPE); // contents of __robo_data__
567 generator.invokeVirtual(classType, new Method(ROBO_INIT_METHOD_NAME, "()V"));
775 generator.push(classType);
1023 "<init>", "(" + DIRECT_OBJECT_MARKER_TYPE_DESC + classType.getDescriptor() + ")V", null, null);
1035 generator.putField(classType, ShadowConstant
[all...]
/external/skia/tests/
H A DGrTRecorderTest.cpp273 ClassType classType = order.next(); local
276 REPORTER_ASSERT(reporter, classType == iter->getType());
281 REPORTER_ASSERT(reporter, classType == reverseIter->getType());
/external/skqp/tests/
H A DGrTRecorderTest.cpp273 ClassType classType = order.next(); local
276 REPORTER_ASSERT(reporter, classType == iter->getType());
281 REPORTER_ASSERT(reporter, classType == reverseIter->getType());
/external/mockito/src/main/java/org/mockito/internal/util/reflection/
H A DGenericMetadataSupport.java68 protected void registerAllTypeVariables(Type classType) { argument
71 typesToRegister.add(classType);
108 protected void registerTypeVariablesOn(Type classType) { argument
109 if (!(classType instanceof ParameterizedType)) {
112 ParameterizedType parameterizedType = (ParameterizedType) classType;
/external/vogar/src/vogar/
H A DOptionParser.java180 Class<?> classType = (Class) type;
181 if (Collection.class.isAssignableFrom(classType)) {
189 if (classType.isEnum()) {
190 return new EnumHandler(classType);
192 return handlers.get(classType);
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/
H A DNode.java228 public <T> T getParentNodeOfType(Class<T> classType) { argument
231 if (classType.isAssignableFrom(parent.getClass()))
/external/smali/smalidea/src/test/java/org/jf/smalidea/
H A DSmaliPositionManagerTest.java167 @Override public Value invokeMethod(EvaluationContext evaluationContext, ClassType classType, Method method, List args) throws EvaluateException { return null; } argument
171 @Override public ObjectReference newInstance(EvaluationContext evaluationContext, ClassType classType, Method constructor, List paramList) throws EvaluateException { return null; } argument
/external/smali/smali/src/main/antlr/
H A DsmaliTreeWalker.g78 public String classType;
163 $classDef = dexBuilder.internClassDef($header.classType, $header.accessFlags, $header.superType,
174 header returns[String classType, int accessFlags, String superType, List<String> implementsList, String sourceSpec]
177 classType = $class_spec.type;
178 $classType = classType;
263 $field = dexBuilder.internField(classType, $SIMPLE_NAME.text, $nonvoid_type_descriptor.type, $access_list.value,
459 classType,
510 type = classType;
523 type = classType;
[all...]
/external/guice/extensions/persist/lib/
H A Dhibernate-annotations.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/hibernate/ org/hibernate/annotationfactory/ org/hibernate/annotations/ org/ ...
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
H A DMethodAnalyzer.java1182 RegisterType classType = RegisterType.getRegisterType(RegisterType.REFERENCE, classClass);
1183 setDestinationRegisterTypeAndPropagateChanges(analyzedInstruction, classType);
1307 RegisterType classType = RegisterType.getRegisterType(classPath, typeReference);
1310 RegisterType.getRegisterType(RegisterType.UNINIT_REF, classType.type));
/external/ImageMagick/Magick++/lib/Magick++/
H A DImage.h172 void classType(const ClassType class_);
173 ClassType classType(void) const;
/external/oj-libjdwp/make/data/jdwp/
H A Djdwp.spec1037 (classType clazz "The class type ID.")
1040 (classType superclass
1060 (classType clazz "The class type ID.")
1135 (classType clazz "The class type ID.")
1211 (classType clazz "The class type ID.")
1652 (classType clazz "The class type.")
/external/smali/smali/src/main/java/org/jf/smali/
H A DsmaliTreeWalker.java327 public String classType; field in class:smaliTreeWalker
446 classDef = dexBuilder.internClassDef((header1!=null?((smaliTreeWalker.header_return)header1).classType:null), (header1!=null?((smaliTreeWalker.header_return)header1).accessFlags:0), (header1!=null?((smaliTreeWalker.header_return)header1).superType:null),
470 public String classType; field in class:smaliTreeWalker.header_return
479 // smaliTreeWalker.g:174:1: header returns [String classType, int accessFlags, String superType, List<String> implementsList, String sourceSpec] : class_spec ( super_spec )? implements_list source_spec ;
525 classType = (class_spec5!=null?((smaliTreeWalker.class_spec_return)class_spec5).type:null);
526 retval.classType = classType;
1040 field = dexBuilder.internField(classType, (SIMPLE_NAME20!=null?SIMPLE_NAME20.getText():null), (nonvoid_type_descriptor21!=null?((smaliTreeWalker.nonvoid_type_descriptor_return)nonvoid_type_descriptor21).type:null), access_list18,
2249 classType,
2482 type = classType;
[all...]

Completed in 809 milliseconds

123