Home
last modified time | relevance | path

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

/development/tools/repo_diff/service/repodiff/persistence/filesystem/
Dcsv.go15 func GenerateCSVLines(filePath string, handler lineHandler) error {
16 csvFile, err := os.Open(filePath)
20 fmt.Sprintf("Could not open %s", filePath),
35 fmt.Sprintf("Could not read line from file %s", filePath),
Dxml.go8 func ReadXMLAsEntity(filePath string, entity interface{}) error {
9 xmlBytes, err := ioutil.ReadFile(filePath)
/development/samples/browseable/DragAndDropAcrossApps/DragSource/src/com.example.android/dragsource/
DDragSourceFragment.java198 File filePath = new File(getContext().getFilesDir(), "images"); in getFileUri() local
199 if (!filePath.exists() && !filePath.mkdir()) { in getFileUri()
204 File newFile = new File(filePath, targetName); in getFileUri()
217 private void copyImageResourceToFile(int resourceId, File filePath) { in copyImageResourceToFile() argument
222 out = new FileOutputStream(filePath); in copyImageResourceToFile()