Home
last modified time | relevance | path

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

/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/
DExtractStringInputPage.java462 String currPath = mResFileCombo.getText(); in run() local
463 Matcher m = mPathRegex.matcher(currPath); in run()
467 currPath = m.group(1); in run()
470 currPath = ""; //$NON-NLS-1$ in run()
481 if (newPath.equals(currPath) && newPath.equals(mLastFolderUsedInCombo)) { in run()
510 currPath = newPath + leafName; in run()
511 if (leafName.length() > 0 && !filePaths.contains(currPath)) { in run()
512 filePaths.add(currPath); in run()
527 index = mResFileCombo.indexOf(currPath); in run()
534 mResFileCombo.setText(currPath); in run()