Searched defs:matches (Results 1 - 5 of 5) sorted by relevance

/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/common/
H A DCommonMatchingStrategy.java42 public boolean matches(IEditorReference editorRef, IEditorInput input) { method in class:CommonMatchingStrategy
53 return m.matches(editorRef, fileInput);
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/
H A DLayoutEditorMatchingStrategy.java38 public boolean matches(IEditorReference editorRef, IEditorInput input) { method in class:LayoutEditorMatchingStrategy
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/
H A DSourceRevealer.java119 // 1. if there are > 1 file name matches, try to see if they can be narrowed down
174 // no matches for search by method, so search by filename
206 // multiple matches for search by method, narrow down by filename
222 private boolean revealLineMatch(List<SearchMatch> matches, String fileName, int lineNumber, argument
224 SearchMatch match = getMatchToDisplay(matches,
266 private List<SearchMatch> filterMatchByFileName(List<SearchMatch> matches, String fileName) { argument
268 return matches;
271 // Use a map to collapse multiple matches in a single file into just one match since
274 new HashMap<IResource, SearchMatch>(matches.size());
276 for (SearchMatch m: matches) {
304 filterMatchByResource(List<SearchMatch> matches, IResource resource) argument
317 getMatchToDisplay(List<SearchMatch> matches, String searchTerm) argument
[all...]
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
H A DConfigurationMatcher.java63 * Produces matches for configurations
483 private ConfigMatch selectConfigMatch(List<ConfigMatch> matches) { argument
502 Collections.sort(matches, comparator);
515 for (ConfigMatch match : matches) {
524 return matches.get(0);
668 * Returns the layout {@link IFile} which best matches the configuration
672 * @return the file which best matches the settings
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/relative/
H A DGuidelineHandler.java158 * Suggestions for horizontal matches. There could be more than one, but all matches
162 * however have multiple matches all 5 pixels to the left.)
170 * Suggestions for vertical matches.
257 protected Match pickBestMatch(List<Match> matches) { argument
258 int alternatives = matches.size();
262 Match match = matches.get(0);
266 Collections.sort(matches, new MatchComparator());
267 return matches.get(0);
426 // Center horizontal, center vertical and Baseline only matches th
[all...]

Completed in 1346 milliseconds