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.java567 String fromPath = attributes.getValue(ATTR_FROM); in execute()
575 instantiate(freemarker, paramMap, fromPath, to); in execute()
577 copyTemplateResource(fromPath, to); in execute()
580 String fromPath = attributes.getValue(ATTR_FROM); in execute()
588 merge(freemarker, paramMap, fromPath, to); in execute()
612 private File getFullPath(@NonNull String fromPath) { in getFullPath() argument
613 if (fromPath.startsWith(VALUE_TEMPLATE_DIR)) { in getFullPath()
615 + fromPath.substring(VALUE_TEMPLATE_DIR.length() + 1).replace('/', in getFullPath()
618 return new File(mRootPath, DATA_ROOT + File.separator + fromPath); in getFullPath()