Home
last modified time | relevance | path

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

/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/exportgradle/
DProjectSetupBuilder.java325 private static IPath findCommonRoot(@NonNull IPath path1, @NonNull IPath path2) in findCommonRoot() argument
327 if (path1.getDevice() != null && !path1.getDevice().equals(path2.getDevice())) { in findCommonRoot()
335 final int count = Math.min(path1.segmentCount(), path2.segmentCount()); in findCommonRoot()
337 if (path1.segment(i).equals(path2.segment(i))) { in findCommonRoot()
338 result = result.append(Path.SEPARATOR + path2.segment(i)); in findCommonRoot()