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

1 2 3 4 5 6 7 8

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
SourceFileData.java 19 import org.eclipse.core.resources.IFile;
32 private final IFile mSourceFile;
33 private final List<IFile> mOutputFiles = new ArrayList<IFile>();
34 private final List<IFile> mDependencyFiles = new ArrayList<IFile>();
36 public SourceFileData(IFile sourceFile) {
40 SourceFileData(IFile sourceFile,
41 List<IFile> outputFiles, List<IFile> dependencyFiles)
    [all...]
DefaultSourceChangeHandler.java 20 import org.eclipse.core.resources.IFile;
32 * {@link #handleSourceFile(IFile, int)}
33 * {@link #handleGeneratedFile(IFile, int)}
34 * {@link #handleResourceFile(IFile, int)}
43 private final Set<IFile> mToCompile = new HashSet<IFile>();
46 private final Set<IFile> mRemoved = new HashSet<IFile>();
49 public boolean handleGeneratedFile(IFile file, int kind) {
51 IFile sourceFile = mProcessor.isOutput(file)
    [all...]
SourceChangeHandler.java 19 import org.eclipse.core.resources.IFile;
23 boolean handleGeneratedFile(IFile file, int kind);
24 void handleSourceFile(IFile file, int kind);
SourceProcessor.java 27 import org.eclipse.core.resources.IFile;
61 private final Map<IFile, SourceFileData> mFiles = new HashMap<IFile, SourceFileData>();
69 private final List<IFile> mToCompile = new ArrayList<IFile>();
72 private final List<IFile> mRemoved = new ArrayList<IFile>();
140 IFile isOutput(IFile file) {
157 List<IFile> isDependency(IFile file)
    [all...]
RsSourceChangeHandler.java 24 import org.eclipse.core.resources.IFile;
42 public boolean handleGeneratedFile(IFile file, int kind) {
65 public void handleSourceFile(IFile file, int kind) {
  /frameworks/base/tools/aapt2/io/
File.h 35 class IFile {
37 virtual ~IFile() = default;
53 IFile* CreateFileSegment(size_t offset, size_t len);
61 // Any segments created from this IFile need to be owned by this IFile, so
66 std::list<std::unique_ptr<IFile>> segments_;
69 // An IFile that wraps an underlying IFile but limits it to a subsection of that file.
70 class FileSegment : public IFile {
72 explicit FileSegment(IFile* file, size_t offset, size_t len
    [all...]
File.cpp 24 IFile* IFile::CreateFileSegment(size_t offset, size_t len) {
26 segments_.push_back(std::unique_ptr<IFile>(file_segment));
FileSystem.h 28 class RegularFile : public IFile {
49 io::IFile* Next() override;
54 std::map<std::string, std::unique_ptr<IFile>>::const_iterator current_, end_;
62 // Adds a file located at path. Returns the IFile representation of that file.
63 IFile* InsertFile(const android::StringPiece& path);
64 IFile* FindFile(const android::StringPiece& path) override;
72 std::map<std::string, std::unique_ptr<IFile>> files_;
ZipArchive.h 31 // An IFile representing a file within a ZIP archive. If the file is compressed, it is uncompressed
33 class ZipFile : public IFile {
55 io::IFile* Next() override;
58 std::vector<std::unique_ptr<IFile>>::const_iterator current_, end_;
67 io::IFile* FindFile(const android::StringPiece& path) override;
77 std::vector<std::unique_ptr<IFile>> files_;
78 std::map<std::string, IFile*> files_by_name_;
FileSystem.cpp 61 IFile* FileCollectionIterator::Next() {
62 IFile* result = current_->second.get();
67 IFile* FileCollection::InsertFile(const StringPiece& path) {
71 IFile* FileCollection::FindFile(const StringPiece& path) {
  /device/linaro/bootloader/edk2/FatPkg/EnhancedFatDxe/
OpenVolume.c 38 FAT_IFILE *IFile;
53 Status = FatAllocateIFile (Volume->Root, &IFile);
55 *File = &IFile->Handle;
Open.c 20 The IFile of the newly opened file is passed out.
23 @param PtrIFile - The newly generated IFile instance.
25 @retval EFI_OUT_OF_RESOURCES - Can not allocate the memory for the IFile
26 @retval EFI_SUCCESS - Create the new IFile for the OFile successfully
35 FAT_IFILE *IFile;
42 IFile = AllocateZeroPool (sizeof (FAT_IFILE));
43 if (IFile == NULL) {
47 IFile->Signature = FAT_IFILE_SIGNATURE;
49 CopyMem (&(IFile->Handle), &FatFileInterface, sizeof (EFI_FILE_PROTOCOL));
55 IFile->Handle.Revision = EFI_FILE_PROTOCOL_REVISION2;
    [all...]
Delete.c 34 FAT_IFILE *IFile;
40 IFile = IFILE_FROM_FHAND (FHand);
41 OFile = IFile->OFile;
43 FatWaitNonblockingTask (IFile);
53 if (IFile->ReadOnly) {
113 FatIFileClose (IFile);
ReadWrite.c 38 FAT_IFILE *IFile;
41 IFile = IFILE_FROM_FHAND (FHand);
42 OFile = IFile->OFile;
52 *Position = IFile->Position;
75 FAT_IFILE *IFile;
78 IFile = IFILE_FROM_FHAND (FHand);
79 OFile = IFile->OFile;
85 FatWaitNonblockingTask (IFile);
109 IFile->Position = Position;
115 Get the file info from the open file of the IFile into Buffer.
    [all...]
Flush.c 38 FAT_IFILE *IFile;
44 IFile = IFILE_FROM_FHAND (FHand);
45 OFile = IFile->OFile;
62 if (IFile->ReadOnly) {
67 FatWaitNonblockingTask (IFile);
76 Task = FatCreateTask (IFile, Token);
92 Status = FatQueueTask (IFile, Task);
137 FAT_IFILE *IFile;
141 IFile = IFILE_FROM_FHAND (FHand);
142 OFile = IFile->OFile;
    [all...]
Misc.c 23 @param IFile - The instance of the open file.
31 FAT_IFILE *IFile,
40 Task->IFile = IFile;
75 @param IFile - The instance of the open file.
80 FAT_IFILE *IFile
87 TaskQueueEmpty = IsListEmpty (&IFile->Tasks);
120 @param IFile - The instance of the open file.
129 IN FAT_IFILE *IFile,
148 InsertTailList (&IFile->Tasks, &Task->Link);
    [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/project/
XmlErrorHandler.java 22 import org.eclipse.core.resources.IFile;
38 private final IFile mFile;
62 public XmlErrorHandler(IJavaProject javaProject, IFile file, XmlErrorListener errorListener) {
68 public XmlErrorHandler(IFile file, XmlErrorListener errorListener) {
108 protected final IFile getFile() {
AndroidManifestHelper.java 28 import org.eclipse.core.resources.IFile;
49 * @param manifestFile the {@link IFile} representing the manifest file.
66 IFile eclipseFile = null;
90 * @param manifestFile the {@link IFile} representing the manifest file.
153 IFile manifestFile = ProjectHelper.getManifest(javaProject.getProject());
167 public static void parseForError(IFile manifestFile, XmlErrorListener errorListener) {
176 public static ManifestData parseForData(IFile manifestFile) {
186 IFile manifestFile = ProjectHelper.getManifest(project);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/io/
IFileWrapper.java 24 import org.eclipse.core.resources.IFile;
36 * An implementation of {@link IAbstractFile} on top of an {@link IFile} object.
40 private final IFile mFile;
42 public IFileWrapper(IFile file) {
116 * Returns the {@link IFile} object that the receiver could represent. Can be <code>null</code>
118 public IFile getIFile() {
133 if (obj instanceof IFile) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/
LayoutEditorMatchingStrategy.java 24 import org.eclipse.core.resources.IFile;
43 // get the IFile object and check it's in one of the layout folders.
44 IFile file = fileInput.getFile();
63 IFile editorFile = editorFileInput.getFile();
  /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;
155 * Returns the active {@link IFile} (hopefully matching our selection) or null.
162 private IFile getSelectedFile(IEditorPart editor) {
168 IFile file = fi.getFile();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/export/
ExportEditor.java 23 import org.eclipse.core.resources.IFile;
83 IFile file = fileInput.getFile();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/
CyclicDependencyValidator.java 21 import org.eclipse.core.resources.IFile;
54 public static IInputValidator create(@Nullable IFile file) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
ChangeViewRefactoringTest.java 20 import org.eclipse.core.resources.IFile;
47 IFile file = getLayoutFile(getProject(), basename);

Completed in 344 milliseconds

1 2 3 4 5 6 7 8