Searched defs:sourceFile (Results 1 - 7 of 7) sorted by relevance

/sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
H A DNativeStackCallInfo.java52 * @param sourceFile the name of the source file and the line number
55 public NativeStackCallInfo(long address, String lib, String method, String sourceFile) { argument
60 Matcher m = SOURCE_NAME_PATTERN.matcher(sourceFile);
69 mSourceFile = sourceFile;
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
H A DSourceFileData.java36 public SourceFileData(IFile sourceFile) { argument
37 this(sourceFile, null, null);
40 SourceFileData(IFile sourceFile, argument
42 mSourceFile = sourceFile;
51 SourceFileData(IFile sourceFile, IFile outputFile) { argument
52 mSourceFile = sourceFile;
H A DAidlProcessor.java146 for (IFile sourceFile : sources) {
148 String name = sourceFile.getName();
149 IPath sourceFolderPath = getSourceFolderFor(sourceFile);
152 IPath relative = sourceFile.getFullPath().makeRelativeTo(sourceFolderPath);
159 builder.removeMarkersFromResource(sourceFile, AdtConstants.MARKER_AIDL);
162 IPath sourcePath = sourceFile.getLocation();
166 SourceFileData data = getFileData(sourceFile);
168 data = new SourceFileData(sourceFile);
174 IFile javaFile = getAidlOutputFile(sourceFile, genFolder,
184 if (execAidl(builder, project, commands, sourceFile, verbos
368 getAidlOutputFile(IFile sourceFile, IFolder outputFolder, boolean replaceExt, boolean createFolders, IProgressMonitor monitor) argument
[all...]
H A DRenderScriptProcessor.java100 IFile sourceFile = sourceFolder.getFile(relative);
101 SourceFileData data = processor.getFileData(sourceFile);
103 addFileToCompile(sourceFile);
182 for (IFile sourceFile : sources) {
184 String name = sourceFile.getName();
185 IPath sourceFolderPath = getSourceFolderFor(sourceFile);
188 IPath relative = sourceFile.getFullPath().makeRelativeTo(sourceFolderPath);
195 builder.removeMarkersFromResource(sourceFile, AdtConstants.MARKER_RENDERSCRIPT);
196 SourceFileData data = getFileData(sourceFile);
204 IPath sourcePath = sourceFile
231 execLlvmRsCc(BaseBuilder builder, IProject project, String[] command, IFile sourceFile, boolean verbose) argument
406 parseDependencyFileFor(IFile sourceFile) argument
422 getDependencyFolder(IFile sourceFile) argument
439 getDependencyFileFor(IFile sourceFile) argument
[all...]
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
H A DExtractIncludeWizard.java43 IFile sourceFile = ref.getSourceFile();
44 addPage(new InputPage(mDelegate.getEditor().getProject(), sourceFile, initialName));
55 public InputPage(IProject project, IFile sourceFile, String suggestedName) { argument
58 mSourceFile = sourceFile;
H A DExtractIncludeRefactoring.java240 IFile sourceFile = mDelegate.getEditor().getInputFile();
241 if (sourceFile == null) {
246 handleIncludingFile(changes, sourceFile, mSelectionStart, mSelectionEnd,
252 List<IFile> layouts = getOtherLayouts(sourceFile);
318 IContainer parent = sourceFile.getParent();
345 IFile sourceFile, int begin, int end, Document document, Element primary) {
346 TextFileChange change = new TextFileChange(sourceFile.getName(), sourceFile);
364 model = StructuredModelManager.getModelManager().getModelForRead(sourceFile);
399 private List<IFile> getOtherLayouts(IFile sourceFile) { argument
344 handleIncludingFile(List<Change> changes, IFile sourceFile, int begin, int end, Document document, Element primary) argument
[all...]
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/
H A DExtractStringRefactoring.java1535 * @param sourceFile The file to process.
1545 private List<Change> computeXmlSourceChanges(IFile sourceFile, argument
1553 if (!sourceFile.exists()) {
1555 sourceFile.getFullPath().toOSString()));
1570 files.add(sourceFile);
1572 if (allConfigurations && SdkConstants.EXT_XML.equals(sourceFile.getFileExtension())) {
1573 IPath path = sourceFile.getFullPath();
1575 IProject project = sourceFile.getProject();
1580 IContainer res = sourceFile.getParent().getParent();

Completed in 225 milliseconds