HomeSort by relevance Sort by last modified time
    Searched refs:IFile (Results 1 - 25 of 55) sorted by null

1 2 3

  /external/webkit/JavaScriptCore/wtf/brew/
OwnPtrBrew.cpp 34 template <> void freeOwnedPtrBrew<IFile>(IFile* ptr)
OwnPtrBrew.h 33 typedef struct _IFile IFile;
40 template<> void freeOwnedPtrBrew<IFile>(IFile*);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/manager/files/
IFileWrapper.java 22 import org.eclipse.core.resources.IFile;
29 * An implementation of {@link IAbstractFile} on top of an {@link IFile} object.
33 private final IFile mFile;
35 public IFileWrapper(IFile file) {
68 * Returns the {@link IFile} object that the receiver could represent. Can be <code>null</code>
70 public IFile getIFile() {
80 if (obj instanceof IFile) {
IFolderWrapper.java 24 import org.eclipse.core.resources.IFile;
64 if (f instanceof IFile) {
65 afiles[i] = new IFileWrapper((IFile) f);
96 IFile file = mFolder.getFile(name);
100 IFile file = mContainer.getFile(new Path(name));
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/
IGraphicalLayoutEditor.java 23 import org.eclipse.core.resources.IFile;
39 abstract void openFile(IFile file);
45 abstract void replaceFile(IFile file);
52 abstract void changeFileOnNewConfig(IFile file);
MatchingStrategy.java 23 import org.eclipse.core.resources.IFile;
41 // get the IFile object and check it's in one of the layout folders.
42 IFile iFile = fileInput.getFile();
43 ResourceFolder resFolder = ResourceManager.getInstance().getResourceFolder(iFile);
52 IFile editorIFile = editorFileInput.getFile();
54 return editorIFile.getProject().equals(iFile.getProject())
55 && editorIFile.getName().equals(iFile.getName());
ProjectCallback.java 26 import org.eclipse.core.resources.IFile;
94 IFile manifestFile = AndroidManifestParser.getManifest(mProject);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
XmlErrorHandler.java 21 import org.eclipse.core.resources.IFile;
33 private IFile mFile;
57 public XmlErrorHandler(IFile file, XmlErrorListener errorListener) {
98 protected final IFile getFile() {
AndroidManifestParser.java 25 import org.eclipse.core.resources.IFile;
187 ManifestHandler(IFile manifestFile, XmlErrorListener errorListener,
631 * This method is useful to parse a specific {@link IFile} in a Java project.
633 * If you only want to gather data, consider {@link #parseForData(IFile)} instead.
636 * @param manifestFile the {@link IFile} representing the manifest file.
647 IFile manifestFile,
773 IFile manifestFile = getManifest(javaProject.getProject());
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/
DelayedLaunchInfo.java 21 import org.eclipse.core.resources.IFile;
50 /** IFile to the package (.apk) file */
51 private final IFile mPackageFile;
86 * @param pack IFile to the package (.apk) file
93 IAndroidLaunchAction launchAction, IFile pack, Boolean debuggable,
148 public IFile getPackageFile() {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/
ExtractStringAction.java 21 import org.eclipse.core.resources.IFile;
65 * <ul> TODO: change this to find the {@link IFile} being manipulated. The {@link ICompilationUnit}
66 * can be inferred using {@link JavaCore#createCompilationUnitFrom(IFile)}. This will allow
78 private IFile mFile;
151 * Returns the active {@link IFile} (hopefully matching our selection) or null.
158 private IFile getSelectedFile(IEditorPart editor) {
164 IFile file = fi.getFile();
XmlStringFileHelper.java 21 import org.eclipse.core.resources.IFile;
110 source = new InputSource(((IFile) resource).getContents());
135 // IFile.getContents failed. Ignore.
ExtractStringRefactoring.java 31 import org.eclipse.core.resources.IFile;
158 private final IFile mFile;
206 mFile = (IFile) ResourcesPlugin.getWorkspace().getRoot().findMember(path);
246 public ExtractStringRefactoring(IFile file, IEditorPart editor, ITextSelection selection) {
475 private boolean findSelectionInXmlFile(IFile file,
731 private boolean checkSourceFile(IFile file,
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/manager/
ResourceFolder.java 26 import org.eclipse.core.resources.IFile;
71 * Attempts to remove the {@link ResourceFile} associated with a specified {@link IFile}.
72 * @param file the IFile object.
75 public ResourceFile removeFile(IFile file) {
83 IFile iFile = ((IFileWrapper)resFile.getFile()).getIFile();
84 if (iFile != null && iFile.equals(file)) {
162 * @param file The {@link IFile} object.
177 * Returns the {@link ResourceFile} matching a {@link IFile} object
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
PreCompilerDeltaVisitor.java 29 import org.eclipse.core.resources.IFile;
222 (IFile)resource, this);
261 IFile file = (IFile)resource;
302 IFile sourceFile = findFile(sourceFolder, segments, 2, aidlFileName);
455 * @return the {@link IFile} representing the searched file, or null if not found
457 private IFile findFile(IFolder folder, String[] segments, int index, String filename) {
463 return (IFile)resource;
498 private AidlType getAidlType(IFile file) throws CoreException {
PreCompilerBuilder.java 36 import org.eclipse.core.resources.IFile;
90 IFile aidlFile;
93 AidlData(IFolder sourceFolder, IFile aidlFile) {
149 private final ArrayList<IFile> mFileList = new ArrayList<IFile>();
154 void addFile(IFile file) {
169 for (IFile file : mFileList) {
318 IFile manifest = AndroidManifestParser.getManifest(project);
561 * @param manifest the {@link IFile} representing the project manifest
566 IFile manifest, IProject[] libProjects) throws CoreException
    [all...]
ApkDeltaVisitor.java 23 import org.eclipse.core.resources.IFile;
265 if (ApkBuilder.checkFileForPackaging((IFile)resource)) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/resources/
ResourcesTreePage.java 25 import org.eclipse.core.resources.IFile;
61 IFile iFile = fileInput.getFile();
63 ResourceFolder resFolder = ResourceManager.getInstance().getResourceFolder(iFile);
ResourcesEditor.java 27 import org.eclipse.core.resources.IFile;
103 IFile file = fileInput.getFile();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newxmlfile/
NewXmlFileWizard.java 26 import org.eclipse.core.resources.IFile;
107 IFile file = createXmlFile();
130 private IFile createXmlFile() {
131 IFile file = mMainPage.getDestinationFile();
183 file.delete(IFile.KEEP_HISTORY | IFile.FORCE, null /*monitor*/);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/xml/
XmlEditor.java 31 import org.eclipse.core.resources.IFile;
75 public static boolean canHandleFile(IFile file) {
142 IFile file = fileInput.getFile();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/
ManifestEditor.java 35 import org.eclipse.core.resources.IFile;
148 IFile inputFile = getInputFile();
225 final IFile inputFile = getInputFile();
230 public void fileChanged(IFile file, IMarkerDelta[] markerDeltas, int kind) {
242 * Processes the markers of the specified {@link IFile} and updates the error status of
246 private void updateFromExistingMarkers(IFile inputFile) {
383 * Returns the {@link IFile} being edited, or <code>null</code> if it couldn't be computed.
385 private IFile getInputFile() {
  /sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/views/
LogCatView.java 29 import org.eclipse.core.resources.IFile;
357 IMarker createMarkerFromSearchMatch(IFile file, SearchMatch match) {
373 void openFile(IFile file, IMarker marker) {
437 if (match.getResource() instanceof IFile
441 IFile matched_file = (IFile) match
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/pages/
OverviewExportPart.java 25 import org.eclipse.core.resources.IFile;
107 IFile file = fileInput.getFile();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/menu/
MenuEditor.java 27 import org.eclipse.core.resources.IFile;
101 IFile file = fileInput.getFile();

Completed in 116 milliseconds

1 2 3