Home
last modified time | relevance | path

Searched refs:methodItem (Results 1 – 4 of 4) sorted by relevance

/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
DLabelMethodItem.java52 public int compareTo(MethodItem methodItem) { in compareTo() argument
53 int result = super.compareTo(methodItem); in compareTo()
56 if (methodItem instanceof LabelMethodItem) { in compareTo()
57 result = labelPrefix.compareTo(((LabelMethodItem)methodItem).labelPrefix); in compareTo()
DMethodItem.java49 public int compareTo(MethodItem methodItem) { in compareTo() argument
50 int result = ((Integer) codeAddress).compareTo(methodItem.codeAddress); in compareTo()
53 return ((Double)getSortOrder()).compareTo(methodItem.getSortOrder()); in compareTo()
DMethodDefinition.java239 for (MethodItem methodItem: methodItems) { in writeTo()
240 if (methodItem.writeTo(writer)) { in writeTo()
409 … MethodItem methodItem = InstructionMethodItemFactory.makeInstructionFormatMethodItem(this, in addInstructionMethodItems() local
412 methodItems.add(methodItem); in addInstructionMethodItems()
482 MethodItem methodItem = InstructionMethodItemFactory.makeInstructionFormatMethodItem( in addAnalyzedInstructionMethodItems() local
485 methodItems.add(methodItem); in addAnalyzedInstructionMethodItems()
/external/emma/core/java12/com/vladium/emma/report/
DReportDataModel.java114 …final MethodItem methodItem = new MethodItem (classItem, m, method.getName (), method.getDescripto… in getView() local
117 classItem.addChild (methodItem); in getView()