Home
last modified time | relevance | path

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

/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
DTemplateHandler.java608 String fromPath = attributes.getValue(ATTR_FROM); in execute()
616 instantiate(freemarker, paramMap, fromPath, to); in execute()
618 copyTemplateResource(fromPath, to); in execute()
621 String fromPath = attributes.getValue(ATTR_FROM); in execute()
629 merge(freemarker, paramMap, fromPath, to); in execute()
683 private File getFullPath(@NonNull String fromPath) { in getFullPath() argument
684 if (fromPath.startsWith(VALUE_TEMPLATE_DIR)) { in getFullPath()
686 + fromPath.substring(VALUE_TEMPLATE_DIR.length() + 1).replace('/', in getFullPath()
689 return new File(mRootPath, DATA_ROOT + File.separator + fromPath); in getFullPath()