/external/smali/dexlib2/src/test/java/org/jf/dexlib2/analysis/ |
D | TestUtils.java | 43 …public static ClassDef makeClassDef(@Nonnull String classType, @Nullable String superType, String.… in makeClassDef() argument 44 return new ImmutableClassDef(classType, 0, superType, ImmutableSet.copyOf(interfaces), in makeClassDef() 48 public static ClassDef makeInterfaceDef(@Nonnull String classType, String... interfaces) { in makeInterfaceDef() argument 49 … return new ImmutableClassDef(classType, AccessFlags.INTERFACE.getValue(), "Ljava/lang/Object;", in makeInterfaceDef()
|
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/runtime/ |
D | RuntimeTestBase.java | 110 Type classType = Type.getObjectType(className); in generateAndInstantiateClass() local 132 gen.putStatic(classType, InstrSupport.DATAFIELD_NAME, in generateAndInstantiateClass() 143 gen.getStatic(classType, InstrSupport.DATAFIELD_NAME, in generateAndInstantiateClass() 153 gen.getStatic(classType, InstrSupport.DATAFIELD_NAME, in generateAndInstantiateClass() 166 gen.getStatic(classType, InstrSupport.DATAFIELD_NAME, in generateAndInstantiateClass()
|
D | OfflineInstrumentationAccessGeneratorTest.java | 90 Type classType = Type.getObjectType(className); in generateAndInstantiateClass() local 112 gen.putStatic(classType, InstrSupport.DATAFIELD_NAME, in generateAndInstantiateClass() 123 gen.getStatic(classType, InstrSupport.DATAFIELD_NAME, in generateAndInstantiateClass()
|
/external/smali/smalidea/src/main/java/org/jf/smalidea/psi/impl/ |
D | SmaliClassTypeElement.java | 56 @Nullable private SmaliClassType classType = null; field in SmaliClassTypeElement 63 if (classType == null) { in getType() 64 classType = new SmaliClassType(this); in getType() 66 return classType; in getType()
|
D | SmaliAnnotation.java | 74 SmaliClassTypeElement classType = findChildByClass(SmaliClassTypeElement.class); in getSmaliName() local 75 if (classType == null) { in getSmaliName() 78 return classType.getSmaliName(); in getSmaliName()
|
D | SmaliClassStatement.java | 83 SmaliClassTypeElement classType = findChildByClass(SmaliClassTypeElement.class); in getQualifiedName() local 84 if (classType == null) { in getQualifiedName() 89 return NameUtils.smaliToJavaType(classType.getSmaliName()); in getQualifiedName()
|
/external/vogar/src/vogar/ |
D | OptionParser.java | 180 Class<?> classType = (Class) type; in getHandler() local 181 if (Collection.class.isAssignableFrom(classType)) { in getHandler() 189 if (classType.isEnum()) { in getHandler() 190 return new EnumHandler(classType); in getHandler() 192 return handlers.get(classType); in getHandler()
|
/external/mockito/src/main/java/org/mockito/internal/util/reflection/ |
D | GenericMetadataSupport.java | 68 protected void registerAllTypeVariables(Type classType) { in registerAllTypeVariables() argument 71 typesToRegister.add(classType); in registerAllTypeVariables() 108 protected void registerTypeVariablesOn(Type classType) { in registerTypeVariablesOn() argument 109 if (!(classType instanceof ParameterizedType)) { in registerTypeVariablesOn() 112 ParameterizedType parameterizedType = (ParameterizedType) classType; in registerTypeVariablesOn()
|
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/introspector/ |
D | GenericProperty.java | 72 Class<?> classType = (Class<?>) genType; in getActualTypeArguments() local 73 if (classType.isArray()) { in getActualTypeArguments()
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/raw/ |
D | FieldIdItem.java | 73 String classType = dexFile.getType(classIndex); 81 return String.format("%s->%s:%s", classType, fieldName, fieldType);
|
D | MethodIdItem.java | 73 String classType = dexFile.getType(classIndex); 81 return String.format("%s->%s%s", classType, methodName, protoString);
|
D | ClassDefItem.java | 112 private void addClassDataIdentity(int classDataOffset, String classType) { in makeAnnotator() argument 114 classDataAnnotator.setItemIdentity(classDataOffset, classType); in makeAnnotator()
|
/external/skia/tests/ |
D | GrTRecorderTest.cpp | 273 ClassType classType = order.next(); in test_subclasses_iters() local 276 REPORTER_ASSERT(reporter, classType == iter->getType()); in test_subclasses_iters() 281 REPORTER_ASSERT(reporter, classType == reverseIter->getType()); in test_subclasses_iters()
|
/external/smali/smali/src/main/antlr/ |
D | smaliTreeWalker.g | 78 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, St… 177 classType = $class_spec.type; 178 $classType = classType; 263 …$field = dexBuilder.internField(classType, $SIMPLE_NAME.text, $nonvoid_type_descriptor.type, $acce… 459 classType, 510 type = classType; 523 type = classType;
|
/external/smali/smalidea/src/test/java/org/jf/smalidea/ |
D | SmaliPositionManagerTest.java | 167 …ublic Value invokeMethod(EvaluationContext evaluationContext, ClassType classType, Method method, … in invokeMethod() argument 171 …ectReference newInstance(EvaluationContext evaluationContext, ClassType classType, Method construc… in newInstance() argument
|
/external/guice/extensions/persist/lib/ |
D | hibernate-annotations.jar | META-INF/
META-INF/MANIFEST.MF
org/
org/hibernate/
org/ ... |
D | cglib-nodep-3.0.jar | META-INF/MANIFEST.MF
LICENSE
NOTICE
net/sf/cglib/beans/BeanCopier$ ... |
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/ |
D | MethodAnalyzer.java | 1168 RegisterType classType = RegisterType.getRegisterType(RegisterType.REFERENCE, classClass); 1169 setDestinationRegisterTypeAndPropagateChanges(analyzedInstruction, classType); 1275 RegisterType classType = RegisterType.getRegisterType(classPath, typeReference); 1278 RegisterType.getRegisterType(RegisterType.UNINIT_REF, classType.type));
|
/external/smali/smali/src/main/java/org/jf/smali/ |
D | smaliTreeWalker.java | 327 public String classType; field in smaliTreeWalker 446 ….internClassDef((header1!=null?((smaliTreeWalker.header_return)header1).classType:null), (header1!… in smali_file() 470 public String classType; field in smaliTreeWalker.header_return 525 classType = (class_spec5!=null?((smaliTreeWalker.class_spec_return)class_spec5).type:null); in header() 526 retval.classType = classType; in header() 1040 …field = dexBuilder.internField(classType, (SIMPLE_NAME20!=null?SIMPLE_NAME20.getText():null), (non… in field() 2249 classType, in method() 2482 type = classType; in method_reference() 2546 type = classType; in field_reference()
|
/external/ImageMagick/Magick++/lib/Magick++/ |
D | Image.h | 172 void classType(const ClassType class_); 173 ClassType classType(void) const;
|
/external/ImageMagick/Magick++/tests/ |
D | attributes.cpp | 450 if ( image.classType() != DirectClass ) in main()
|
/external/doclava/src/com/google/doclava/ |
D | InfoBuilder.java | 556 String commentText, SourcePositionInfo position, ClassType classType) { in buildClassName() argument 568 switch (classType) { in buildClassName()
|
/external/ImageMagick/Magick++/lib/ |
D | Image.cpp | 500 void Magick::Image::classType(const ClassType class_) in classType() function in Magick::Image 502 if (classType() == PseudoClass && class_ == DirectClass) in classType() 515 if (classType() == DirectClass && class_ == PseudoClass) in classType() 525 Magick::ClassType Magick::Image::classType(void) const in classType() function in Magick::Image 3819 classType(DirectClass ); in pixelColor()
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.jdt.debug_3.6.1.v20100715_r361/ |
D | jdimodel.jar | META-INF/MANIFEST.MF
META-INF/ECLIPSEF.SF
META-INF/ECLIPSEF ... |
/external/guice/lib/build/ |
D | cglib-3.1.jar | META-INF/
META-INF/MANIFEST.MF
net/
net/sf/
net/ ... |