Searched refs:fqmn (Results 1 – 5 of 5) sorted by relevance
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/ |
D | SourceRevealer.java | 105 public boolean revealMethod(String fqmn, String fileName, int lineNumber, String perspective) { in revealMethod() argument 116 List<SearchMatch> methodMatches = searchForMethod(fqmn); in revealMethod() 148 boolean isConstructor = fqmn.endsWith(CONSTRUCTOR_NAME); in revealMethod() 181 if (fileMatches.isEmpty() && fqmn.indexOf('.') != -1) { in revealMethod() 182 String className = fqmn.substring(0, fqmn.lastIndexOf('.')); in revealMethod() 214 SearchMatch match = getMatchToDisplay(methodMatches, fqmn); in revealMethod() 378 private List<SearchMatch> searchForMethod(String fqmn) { in searchForMethod() argument 379 if (fqmn.endsWith(CONSTRUCTOR_NAME)) { in searchForMethod() 380 fqmn = fqmn.substring(0, fqmn.length() - CONSTRUCTOR_NAME.length() - 1); // -1: dot in searchForMethod() 381 return searchForPattern(fqmn, IJavaSearchConstants.CONSTRUCTOR, in searchForMethod() [all …]
|
/sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/ |
D | JavaSourceRevealer.java | 69 public static boolean revealMethod(String fqmn, String fileName, int linenumber, in revealMethod() argument 73 if (revealer.revealMethod(fqmn, fileName, linenumber, perspective)) { in revealMethod()
|
D | ISourceRevealer.java | 42 boolean revealMethod(String fqmn, String fileName, int lineNumber, String perspective); in revealMethod() argument
|
/sdk/eclipse/plugins/com.android.ide.eclipse.pdt/src/com/android/ide/eclipse/pdt/internal/ |
D | SourceRevealer.java | 117 public boolean revealMethod(String fqmn, String fileName, int lineNumber, String perspective) { in revealMethod() argument 120 fqmn, in revealMethod()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.traceview/src/com/android/ide/eclipse/traceview/editors/ |
D | TraceviewEditor.java | 312 String fqmn = className + "." + methodName; //$NON-NLS-1$ in handleMethod() local 314 JavaSourceRevealer.revealMethod(fqmn, null, -1, null); in handleMethod()
|