Searched refs:filePath (Results 1 – 3 of 3) sorted by relevance
/development/tools/repo_diff/service/repodiff/persistence/filesystem/ |
D | csv.go | 15 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),
|
D | xml.go | 8 func ReadXMLAsEntity(filePath string, entity interface{}) error { 9 xmlBytes, err := ioutil.ReadFile(filePath)
|
/development/samples/browseable/DragAndDropAcrossApps/DragSource/src/com.example.android/dragsource/ |
D | DragSourceFragment.java | 198 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()
|