/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/StackFrame/ |
D | GetValues002Test.java | 36 MethodInfo suspensionMethodInfo = tester.addTestMethod("breakpointBoolean"); in testGetValues001_Boolean() 38 MethodInfo methodInfo = tester.addTestMethod("runBreakpointBoolean"); in testGetValues001_Boolean() 52 MethodInfo suspensionMethodInfo = tester.addTestMethod("breakpointByte"); in testGetValues002_Byte() 54 MethodInfo methodInfo = tester.addTestMethod("runBreakpointByte"); in testGetValues002_Byte() 68 MethodInfo suspensionMethodInfo = tester.addTestMethod("breakpointChar"); in testGetValues003_Char() 70 MethodInfo methodInfo = tester.addTestMethod("runBreakpointChar"); in testGetValues003_Char() 84 MethodInfo suspensionMethodInfo = tester.addTestMethod("breakpointShort"); in testGetValues004_Short() 86 MethodInfo methodInfo = tester.addTestMethod("runBreakpointShort"); in testGetValues004_Short() 100 MethodInfo suspensionMethodInfo = tester.addTestMethod("breakpointInt"); in testGetValues005_Int() 102 MethodInfo methodInfo = tester.addTestMethod("runBreakpointInt"); in testGetValues005_Int() [all …]
|
D | SetValues002Test.java | 37 MethodInfo suspensionMethodInfo = tester.addTestMethod("breakpointBoolean"); in testSetValues001_Boolean() 39 MethodInfo methodInfo = tester.addTestMethod("runBreakpointBoolean"); in testSetValues001_Boolean() 54 MethodInfo suspensionMethodInfo = tester.addTestMethod("breakpointByte"); in testSetValues002_Byte() 56 MethodInfo methodInfo = tester.addTestMethod("runBreakpointByte"); in testSetValues002_Byte() 71 MethodInfo suspensionMethodInfo = tester.addTestMethod("breakpointChar"); in testSetValues003_Char() 73 MethodInfo methodInfo = tester.addTestMethod("runBreakpointChar"); in testSetValues003_Char() 88 MethodInfo suspensionMethodInfo = tester.addTestMethod("breakpointShort"); in testSetValues004_Short() 90 MethodInfo methodInfo = tester.addTestMethod("runBreakpointShort"); in testSetValues004_Short() 105 MethodInfo suspensionMethodInfo = tester.addTestMethod("breakpointInt"); in testSetValues005_Int() 107 MethodInfo methodInfo = tester.addTestMethod("runBreakpointInt"); in testSetValues005_Int() [all …]
|
D | JDWPStackFrameAccessTest.java | 86 static class MethodInfo { class in JDWPStackFrameAccessTest 90 MethodInfo(String methodName) { in MethodInfo() method in JDWPStackFrameAccessTest.MethodInfo 126 private final List<MethodInfo> testedMethods = new ArrayList<MethodInfo>(); 136 public List<? extends MethodInfo> getTestedMethods() { in getTestedMethods() 140 public MethodInfo addTestMethod(String methodName) { in addTestMethod() 141 MethodInfo methodInfo = new MethodInfo(methodName); in addTestMethod() 164 protected void runStackFrameTest(StackFrameTester tester, MethodInfo suspensionMethodInfo) { in runStackFrameTest() 231 MethodInfo suspensionMethodInfo, boolean firstSuspension) { in checkStackFrame() 232 for (MethodInfo methodInfo : tester.getTestedMethods()) { in checkStackFrame()
|
/external/doclava/src/com/google/doclava/ |
D | ClassInfo.java | 143 ArrayList<MethodInfo> constructors, ArrayList<MethodInfo> methods, in init() 144 ArrayList<MethodInfo> annotationElements, ArrayList<FieldInfo> fields, in init() 524 public ArrayList<MethodInfo> allConstructors() { in allConstructors() 528 public ArrayList<MethodInfo> constructors() { in constructors() 531 return new ArrayList<MethodInfo>(); in constructors() 534 mConstructors = new ArrayList<MethodInfo>(); in constructors() 535 for (MethodInfo m : mAllConstructors) { in constructors() 541 Collections.sort(mConstructors, MethodInfo.comparator); in constructors() 597 public ArrayList<MethodInfo> methods() { in methods() 599 TreeMap<String, MethodInfo> all = new TreeMap<String, MethodInfo>(); in methods() [all …]
|
D | AuxSource.java | 22 public TagInfo[] methodAuxTags(MethodInfo method); in methodAuxTags() 23 public TagInfo[] paramAuxTags(MethodInfo method, ParameterInfo param, String comment); in paramAuxTags() 24 public TagInfo[] returnAuxTags(MethodInfo method); in returnAuxTags() 39 public TagInfo[] methodAuxTags(MethodInfo method) { in methodAuxTags() 44 public TagInfo[] paramAuxTags(MethodInfo method, ParameterInfo param, String comment) { in paramAuxTags() 49 public TagInfo[] returnAuxTags(MethodInfo method) { in returnAuxTags()
|
D | Converter.java | 135 new ArrayList<MethodInfo>(Arrays.asList( in initClass() 137 new ArrayList<MethodInfo>(Arrays.asList(Converter.convertMethods(c.methods(false)))), in initClass() 138 new ArrayList<MethodInfo>(Arrays.asList(Converter.convertMethods(annotationElements))), in initClass() 148 new ArrayList<MethodInfo>(Arrays.asList(Converter.getHiddenMethods(c.methods(false))))); in initClass() 150 … new ArrayList<MethodInfo>(Arrays.asList(Converter.getRemovedMethods(c.methods(false))))); in initClass() 153 new ArrayList<MethodInfo>(Converter.convertAllMethods(c.constructors(false)))); in initClass() 155 new ArrayList<MethodInfo>(Converter.convertAllMethods(c.methods(false)))); in initClass() 162 new ArrayList<MethodInfo>(Arrays.asList(Converter.convertNonWrittenConstructors( in initClass() 359 private static MethodInfo[] getHiddenMethods(MethodDoc[] methods) { in getHiddenMethods() 361 ArrayList<MethodInfo> hiddenMethods = new ArrayList<MethodInfo>(); in getHiddenMethods() [all …]
|
D | Stubs.java | 114 for (MethodInfo m : cl.selfMethods()) { in writeStubsAndApi() 161 for (MethodInfo m : cl.annotationElements()) { in writeStubsAndApi() 416 private static void cantStripThis(ArrayList<MethodInfo> mInfos, HashSet<ClassInfo> notStrippable, in cantStripThis() 421 for (MethodInfo mInfo : mInfos) { in cantStripThis() 658 for (MethodInfo method : cl.constructors()) { in writeClass() 695 for (MethodInfo method : cl.allSelfMethods()) { in writeClass() 712 List<MethodInfo> hiddenAndRemovedMethods = cl.getHiddenMethods(); in writeClass() 714 for (MethodInfo method : hiddenAndRemovedMethods) { in writeClass() 715 MethodInfo overriddenMethod = in writeClass() 728 for (MethodInfo element : cl.annotationElements()) { in writeClass() [all …]
|
D | Linter.java | 21 public void lintMethod(MethodInfo method); in lintMethod() 22 public void lintParameter(MethodInfo method, ParameterInfo param, SourcePositionInfo position, in lintParameter() 32 public void lintMethod(MethodInfo method) { in lintMethod() 36 public void lintParameter(MethodInfo method, ParameterInfo param, SourcePositionInfo position, in lintParameter()
|
D | DoclavaDiff.java | 159 List<MethodInfo> methods = knownMethodsForClass(qualifiedClassName, sites); in generateHdf() 160 for (MethodInfo method : methods) { in generateHdf() 174 Map<String,MethodInfo> siteMethods in generateHdf() 231 private List<MethodInfo> knownMethodsForClass(String qualifiedClassName, in knownMethodsForClass() 234 Map<String, MethodInfo> allMethods = new HashMap<String, MethodInfo>(); in knownMethodsForClass() 241 for (Map.Entry<String, MethodInfo> entry: classInfo.allMethods().entrySet()) { in knownMethodsForClass() 246 List<MethodInfo> methods = new ArrayList<MethodInfo>(); in knownMethodsForClass() 277 List<MethodInfo> methods = knownMethodsForClass(qualifiedClassName, sites); in agreeOnClass() 278 for (MethodInfo method : methods) { in agreeOnClass() 289 private boolean agreeOnMethod(String qualifiedClassName, MethodInfo method, in agreeOnMethod()
|
D | MethodInfo.java | 33 public class MethodInfo extends MemberInfo implements AbstractMethodInfo, Resolvable { class 34 public static final Comparator<MethodInfo> comparator = new Comparator<MethodInfo>() { 35 public int compare(MethodInfo a, MethodInfo b) { 46 MethodInfo m = findOverriddenMethod(name(), signature()); in inherited() 66 public MethodInfo findOverriddenMethod(String name, String signature) { in findOverriddenMethod() 78 for (MethodInfo me : iface.methods()) { in findOverriddenMethod() 100 public MethodInfo findRealOverriddenMethod(String name, String signature, HashSet notStrippable) { in findRealOverriddenMethod() 116 for (MethodInfo me : iface.methods()) { in findRealOverriddenMethod() 127 public MethodInfo findPredicateOverriddenMethod(Predicate<MethodInfo> predicate) { in findPredicateOverriddenMethod() 145 for (MethodInfo me : iface.methods()) { in findPredicateOverriddenMethod() [all …]
|
D | AnnotationValueInfo.java | 23 private MethodInfo mElement; 33 public AnnotationValueInfo(MethodInfo element) { in AnnotationValueInfo() 41 public MethodInfo element() { in element() 45 public void setElement(MethodInfo element) { in setElement() 121 for (MethodInfo m : annotation.annotationElements()) { in resolveResolutions()
|
D | SinceTagger.java | 158 for (MethodInfo constructor : doc.constructors()) { in versionConstructors() 168 MethodInfo specConstructor = spec.allConstructorsMap().get(constructor.getHashableName()); in versionConstructors() 204 for (MethodInfo method : doc.methods()) { in versionMethods() 210 MethodInfo specMethod = spec.allMethods().get(method.getHashableName()); in versionMethods() 251 for (MethodInfo constructor : missingVersions(claz.constructors())) { in warnForMissingVersions() 256 for (MethodInfo method : missingVersions(claz.methods())) { in warnForMissingVersions()
|
D | AttributeInfo.java | 32 public ArrayList<MethodInfo> methods = new ArrayList<MethodInfo>(); 94 for (MethodInfo m : methods) { in makeHDF()
|
/external/javassist/src/main/javassist/compiler/ |
D | AccessorMaker.java | 39 public String getConstructor(CtClass c, String desc, MethodInfo orig) in getConstructor() 52 MethodInfo minfo in getConstructor() 53 = new MethodInfo(cp, MethodInfo.nameInit, consDesc); in getConstructor() 67 code.addInvokespecial(clazz, MethodInfo.nameInit, desc); in getConstructor() 98 MethodInfo orig) in getMethodAccessor() 111 MethodInfo minfo in getMethodAccessor() 112 = new MethodInfo(cp, accName, accDesc); in getMethodAccessor() 149 public MethodInfo getFieldGetter(FieldInfo finfo, boolean is_static) in getFieldGetter() 156 return (MethodInfo)res; // already exists. in getFieldGetter() 170 MethodInfo minfo = new MethodInfo(cp, accName, accDesc); in getFieldGetter() [all …]
|
/external/javassist/src/main/javassist/bytecode/ |
D | ClassFile.java | 171 MethodInfo minfo = (MethodInfo)list.get(i); in compact() 236 MethodInfo minfo = (MethodInfo)list.get(i); in prune() 373 MethodInfo minfo = (MethodInfo)list.get(i); in setSuperclass() 415 MethodInfo minfo = (MethodInfo)list.get(i); in renameClass() 452 MethodInfo minfo = (MethodInfo)list.get(i); in renameClass() 479 MethodInfo minfo = (MethodInfo)list.get(i); in getRefClasses() 612 public MethodInfo getMethod(String name) { in getMethod() 616 MethodInfo minfo = (MethodInfo)list.get(i); in getMethod() 628 public MethodInfo getStaticInitializer() { in getStaticInitializer() 629 return getMethod(MethodInfo.nameClinit); in getStaticInitializer() [all …]
|
D | MethodInfo.java | 33 public class MethodInfo { class 59 private MethodInfo(ConstPool cp) { in MethodInfo() method in MethodInfo 76 public MethodInfo(ConstPool cp, String methodname, String desc) { in MethodInfo() method in MethodInfo 84 MethodInfo(ConstPool cp, DataInputStream in) throws IOException { in MethodInfo() method in MethodInfo 108 public MethodInfo(ConstPool cp, String methodname, MethodInfo src, in MethodInfo() method in MethodInfo 499 private void read(MethodInfo src, String methodname, Map classnames) in read()
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Method/ |
D | JDWPMethodTestCase.java | 42 static class MethodInfo { class in JDWPMethodTestCase 48 public MethodInfo(long methodID, String name, String signature, in MethodInfo() method in JDWPMethodTestCase.MethodInfo 88 protected MethodInfo[] jdwpGetMethodsInfo(long classID) { in jdwpGetMethodsInfo() 99 MethodInfo[] methodsInfo = new MethodInfo[declared]; in jdwpGetMethodsInfo() 101 methodsInfo[i] = new MethodInfo( in jdwpGetMethodsInfo()
|
/external/javassist/src/main/javassist/ |
D | CtConstructor.java | 36 protected CtConstructor(MethodInfo minfo, CtClass declaring) { in CtConstructor() 56 this((MethodInfo)null, declaring); in CtConstructor() 59 methodInfo = new MethodInfo(cp, "<init>", desc); in CtConstructor() 100 this((MethodInfo)null, declaring); in CtConstructor() 127 : ("." + MethodInfo.nameClinit + "()")); in getLongName() 138 return MethodInfo.nameClinit; in getName() 353 MethodInfo minfo = method.getMethodInfo2(); in toMethod()
|
D | CtNewMethod.java | 228 MethodInfo minfo = new MethodInfo(cp, methodName, desc); in getter() 269 MethodInfo minfo = new MethodInfo(cp, methodName, desc); in setter() 330 MethodInfo deleInfo = delegate.getMethodInfo2(); in delegator0() 334 MethodInfo minfo = new MethodInfo(cp, methodName, desc); in delegator0()
|
/external/javassist/src/main/javassist/util/proxy/ |
D | ProxyFactory.java | 858 MethodInfo minfo = new MethodInfo(cp, "<clinit>", "()V"); in addMethodsHolder() 875 MethodInfo minfo = new MethodInfo(cp, HANDLER_SETTER, in addSetter() 890 MethodInfo minfo = new MethodInfo(cp, HANDLER_GETTER, in addGetter() 931 MethodInfo delegator in override() 938 MethodInfo forwarder in override() 955 MethodInfo m = makeConstructor(thisClassName, c, cp, superClass, doHandlerInit); in makeConstructors() 1054 private static MethodInfo makeConstructor(String thisClassName, Constructor cons, in makeConstructor() 1058 MethodInfo minfo = new MethodInfo(cp, "<init>", desc); in makeConstructor() 1095 private static MethodInfo makeDelegator(Method meth, String desc, in makeDelegator() 1097 MethodInfo delegator = new MethodInfo(cp, delegatorName, desc); in makeDelegator() [all …]
|
/external/protobuf/csharp/src/Google.Protobuf/Reflection/ |
D | ReflectionUtil.cs | 59 internal static Func<IMessage, object> CreateFuncIMessageObject(MethodInfo method) in CreateFuncIMessageObject() 72 internal static Func<IMessage, T> CreateFuncIMessageT<T>(MethodInfo method) in CreateFuncIMessageT() 85 internal static Action<IMessage, object> CreateActionIMessageObject(MethodInfo method) in CreateActionIMessageObject() 99 internal static Action<IMessage> CreateActionIMessage(MethodInfo method) in CreateActionIMessage()
|
/external/javassist/src/test/test/javassist/bytecode/analysis/ |
D | AnalyzerTest.java | 14 import javassist.bytecode.MethodInfo; 70 MethodInfo info = method.getMethodInfo2(); in testReusedLocalMerge() 79 private static int findOpcode(MethodInfo info, int opcode) throws BadBytecode { in findOpcode() 94 MethodInfo info = method.getMethodInfo2(); in verifyReturn() 114 MethodInfo info = method.getMethodInfo2(); in verifyArrayLoad() 200 MethodInfo info = method.getMethodInfo2(); in generateDeadCode() 220 MethodInfo info = method.getMethodInfo2(); in generateInvalidCode() 237 MethodInfo info = method.getMethodInfo2(); in generateCodeFalloff() 252 MethodInfo info = method.getMethodInfo2(); in generateJsrMerge() 276 MethodInfo info = method.getMethodInfo2(); in generateJsrMerge2()
|
/external/llvm/include/llvm/DebugInfo/CodeView/ |
D | FieldListRecordBuilder.h | 19 class MethodInfo { 21 MethodInfo() : Access(), Kind(), Options(), Type(), VTableSlotOffset(-1) {} in MethodInfo() function 23 MethodInfo(MemberAccess Access, MethodKind Kind, MethodOptions Options, in MethodInfo() function
|
D | MethodListRecordBuilder.h | 18 class MethodInfo; variable 30 void writeMethod(const MethodInfo &Method);
|
/external/protobuf/csharp/src/Google.Protobuf/Compatibility/ |
D | PropertyInfoExtensions.cs | 48 internal static MethodInfo GetGetMethod(this PropertyInfo target) in GetGetMethod() 58 internal static MethodInfo GetSetMethod(this PropertyInfo target) in GetSetMethod()
|