/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/tests/ |
D | EclipseTestCollector.java | 54 String filePath = entry.getPath().replace(".class", ""); in addTestCases() local 56 Class<?> testClass = getClass(filePath, expectedPackage); in addTestCases() 111 …protected Class<?> getClass(String filePath, String expectedPackage) throws ClassNotFoundException… in getClass() argument 112 String dotPath = filePath.replace('/', '.'); in getClass()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/ |
D | RenderScriptLauncher.java | 198 String filePath = m.group(1); in parseLlvmOutput() local 199 if (filePath.startsWith(rootPath) == false) { in parseLlvmOutput() 207 filePath = filePath.substring(rootPathLength); in parseLlvmOutput() 209 if (filePath.startsWith(File.separator)) { in parseLlvmOutput() 210 filePath = filePath.substring(1); in parseLlvmOutput() 214 IFile f = mProject.getFile(new Path(filePath)); in parseLlvmOutput()
|
/sdk/dumpeventlog/src/com/android/dumpeventlog/ |
D | DumpEventLog.java | 46 public LogWriter(String filePath) throws IOException { in LogWriter() argument 47 mOutputStream = new FileOutputStream(filePath); in LogWriter() 138 private static void grabLogFrom(IDevice device, String filePath) throws IOException, in grabLogFrom() argument 140 LogWriter writer = new LogWriter(filePath); in grabLogFrom()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/build/ |
D | AaptQuickFixTest.java | 95 String filePath = osRoot + File.separator + fileRelativePath; in checkResourceFix() local 104 errors.add(filePath + ":7: error: Error: No resource found that matches the given name" in checkResourceFix() 106 errors.add(filePath + ":7: error: Error: No resource found that matches the given name" in checkResourceFix() 108 errors.add(filePath + ":13: error: Error: No resource found that matches the given name" in checkResourceFix() 217 String filePath = osRoot + File.separator + fileRelativePath; in checkNamespaceFix() local 219 errors.add(filePath + ":5: error: Error parsing XML: unbound prefix"); in checkNamespaceFix()
|
D | AaptParserTest.java | 164 String filePath = osRoot + File.separator + fileRelativePath; in checkRanges() local 165 String originalError = filePath + aaptError.substring(aaptError.indexOf(':')); in checkRanges()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/binaryxml/ |
D | BinaryXMLMultiPageEditorPart.java | 65 IPath filePath = path.append(SdkConstants.FD_DATA).append( in setInput() local 67 File file = new File(filePath.toOSString()); in setInput()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/ |
D | ExtractStringInputPage.java | 281 String filePath = sLastResFilePath.get(projPath); in initUi() local 283 mResFileCombo.setText(filePath != null ? filePath : DEFAULT_RES_FILE_PATH); in initUi() 521 for (String filePath : filePaths) { in run() 522 mResFileCombo.add(filePath); in run()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.traceview/src/com/android/ide/eclipse/traceview/editors/ |
D | TraceviewEditor.java | 133 IPath filePath = dialog.getResult(); in doSaveAs() local 134 if (filePath == null) { in doSaveAs() 139 IFile file = workspace.getRoot().getFile(filePath); in doSaveAs()
|
/sdk/eventanalyzer/src/com/android/eventanalyzer/ |
D | EventAnalyzer.java | 206 private void parseTextLogFile(String filePath) throws IOException { in parseTextLogFile() argument 209 String tagFile = filePath + TAG_FILE_EXT; in parseTextLogFile() 224 new InputStreamReader(new FileInputStream(filePath))); in parseTextLogFile()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
D | LayoutCanvas.java | 1145 IPath filePath = graphicalEditor.findResourceFile(url); in showInclude() local 1146 if (filePath == null) { in showInclude() 1164 if (workspacePath.isPrefixOf(filePath)) { in showInclude() 1165 IPath relativePath = filePath.makeRelativeTo(workspacePath); in showInclude() 1167 } else if (filePath.isAbsolute()) { in showInclude() 1168 xmlFile = workspace.getFileForLocation(filePath); in showInclude() 1216 if (filePath.isAbsolute()) { in showInclude() 1217 IFileStore fileStore = EFS.getLocalFileSystem().getStore(filePath); in showInclude()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ |
D | Hyperlinks.java | 580 private static void openPath(IPath filePath, IRegion region, int offset) { in openPath() argument 584 IFile file = AdtUtils.pathToIFile(filePath); in openPath() 590 AdtPlugin.log(ex, "Can't open %$1s", filePath); //$NON-NLS-1$ in openPath() 595 if (filePath.isAbsolute()) { in openPath() 596 IFileStore fileStore = EFS.getLocalFileSystem().getStore(filePath); in openPath() 617 AdtPlugin.log(ex, "Can't open %$1s", filePath); //$NON-NLS-1$ in openPath() 624 displayError(String.format("Could not find resource %1$s", filePath)); in openPath()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/ |
D | AdtUtils.java | 502 IPath filePath = new Path(file.getPath()); in fileToIFile() local 503 return pathToIFile(filePath); in fileToIFile() 523 IPath filePath = new Path(file.getPath()); in fileToResource() local 524 return pathToResource(filePath); in fileToResource()
|