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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/libs/androidfw/include/androidfw/
misc.h 31 typedef enum FileType {
41 } FileType;
43 FileType getFileType(const char* fileName);
AssetDir.h 63 FileType getFileType(int idx) {
110 void set(const String8& path, FileType type) {
118 FileType getFileType(void) const { return mFileType; }
119 void setFileType(FileType type) { mFileType = type; }
133 FileType mFileType; // regular, directory, etc
  /external/llvm/lib/CodeGen/
ParallelCG.cpp 30 TargetMachine::CodeGenFileType FileType) {
33 if (TM->addPassesToEmitFile(CodeGenPasses, OS, FileType))
42 TargetMachine::CodeGenFileType FileType, bool PreserveLocals) {
48 codegen(M.get(), *OSs[0], TMFactory, FileType);
79 [TMFactory, FileType, ThreadOS](const SmallString<0> &BC) {
89 codegen(MPartInCtx.get(), *ThreadOS, TMFactory, FileType);
  /frameworks/base/tools/aapt2/util/
Files.cpp 50 FileType GetFileType(const std::string& path) {
53 return FileType::kNonexistant;
58 return FileType::kNonexistant;
62 return FileType::kDirectory;
66 return FileType::kRegular;
69 FileType GetFileType(const std::string& path) {
75 return FileType::kNonexistant;
77 return FileType::kUnknown;
81 return FileType::kRegular;
83 return FileType::kDirectory
    [all...]
Files.h 43 enum class FileType {
55 FileType GetFileType(const std::string& path);
105 bool operator()(const std::string& filename, FileType type) const;
  /device/linaro/bootloader/edk2/MdeModulePkg/Include/Library/
FileExplorerLib.h 30 @param FileType The file type need to choose.
42 IN CHAR16 *FileType, OPTIONAL
  /frameworks/compile/mclinker/include/mcld/Support/
FileSystem.h 28 enum FileType {
52 explicit FileStatus(FileType v) : m_Value(v) {}
54 void setType(FileType v) { m_Value = v; }
55 FileType type() const { return m_Value; }
58 FileType m_Value;
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/GenFds/
Section.py 108 # @param FileType File type to get
113 def GetFileList(FfsInf, FileType, FileExtension, Dict = {}):
114 if FileType in Section.SectFileType.keys() :
122 Suffix = Section.SectionType.get(FileType)
124 Suffix = Section.BinFileType.get(FileType)
129 if FileType != None:
132 if File.Type == FileType or (int(FfsInf.PiSpecVersion, 16) >= 0x0001000A \
133 and FileType == 'DXE_DPEX'and File.Type == 'SMM_DEPEX') \
134 or (FileType == 'TE'and File.Type == 'PE32'):
140 GenFdsGlobalVariable.VerboseLogger ("\nFile Type \'%s\' of File %s in %s is not same with file type \'%s\' from Rule in FDF" %(File.Type, File.File, FfsInf.InfFileName, FileType))
    [all...]
OptRomFileStatement.py 31 self.FileType = None
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Ecc/MetaFileWorkspace/
MetaFileTable.py 29 def __init__(self, Cursor, MetaFile, FileType, TableName, Temporary = False):
32 if (FileType == MODEL_FILE_INF):
34 if (FileType == MODEL_FILE_DSC):
39 if (FileType == MODEL_FILE_DEC):
230 def __init__(self, Cursor, MetaFile = '', FileType = MODEL_FILE_DSC, Temporary = False):
231 MetaFileTable.__init__(self, Cursor, MetaFile, FileType, "Dsc", Temporary)
318 def __new__(Class, Cursor, MetaFile, FileType=None, Temporary=False):
320 if not FileType:
322 FileType = Class._FILE_TYPE_[MetaFile.Type]
324 FileType = MODEL_FILE_OTHERS
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/DxeFileExplorerProtocol/
DxeFileExplorerProtocol.c 72 @param FileType The file type need to choose.
86 IN CHAR16 *FileType, OPTIONAL
91 return mProtocol->ChooseFile (RootDirectory, FileType, ChooseHandler, File);
  /external/swiftshader/third_party/LLVM/lib/Target/CBackend/
CTargetMachine.h 30 CodeGenFileType FileType,
  /external/swiftshader/third_party/LLVM/lib/Target/CppBackend/
CPPTargetMachine.h 32 CodeGenFileType FileType,
  /device/linaro/bootloader/edk2/MdeModulePkg/Include/Protocol/
FileExplorer.h 52 @param FileType The file type need to choose.
64 IN CHAR16 *FileType, OPTIONAL
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellDebug1CommandsLib/
EditTitleBar.h 52 @param[in] FileType The type fo the file.
65 IN CONST EDIT_FILE_TYPE FileType,
  /external/puffin/src/
main.cc 67 enum class FileType { kDeflate, kZlib, kGzip, kZip, kRaw, kUnknown };
71 FileType StringToFileType(const string& file_type) {
73 return FileType::kRaw;
76 return FileType::kDeflate;
78 return FileType::kZlib;
80 return FileType::kGzip;
82 return FileType::kZip;
84 return FileType::kUnknown;
96 auto file_type = FileType::kUnknown;
108 if (override_file_type == FileType::kUnknown)
    [all...]
  /prebuilts/jdk/jdk8/darwin-x86/sample/nio/file/
FileType.java 44 public class FileType {
47 System.err.println("usage: java FileType file...");
  /prebuilts/jdk/jdk8/linux-x86/sample/nio/file/
FileType.java 44 public class FileType {
47 System.err.println("usage: java FileType file...");
  /external/clang/lib/Frontend/Rewrite/
InclusionRewriter.cpp 34 SrcMgr::CharacteristicKind FileType;
35 IncludedFile(FileID Id, SrcMgr::CharacteristicKind FileType)
36 : Id(Id), FileType(FileType) {}
55 bool Process(FileID FileId, SrcMgr::CharacteristicKind FileType);
62 SrcMgr::CharacteristicKind FileType,
65 SrcMgr::CharacteristicKind FileType) override;
72 SrcMgr::CharacteristicKind FileType,
106 SrcMgr::CharacteristicKind FileType,
122 if (FileType == SrcMgr::C_System
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Workspace/
MetaFileTable.py 33 def __init__(self, Cursor, MetaFile, FileType, Temporary):
41 FileId = self._FileIndexTable.InsertFile(MetaFile, FileType)
44 TableName = "_%s_%s_%s" % (FileType, FileId, uuid.uuid4().hex)
46 TableName = "_%s_%s" % (FileType, FileId)
379 def __new__(Class, Cursor, MetaFile, FileType=None, Temporary=False):
381 if not FileType:
383 FileType = Class._FILE_TYPE_[MetaFile.Type]
385 FileType = MODEL_FILE_OTHERS
388 if FileType == MODEL_FILE_OTHERS:
389 Args = (Cursor, MetaFile, FileType, Temporary)
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Core/Dxe/FwVol/
FwVolRead.c 76 @param FileType FileType is a pointer to a caller allocated
79 value of *FileType input. A *FileType input
82 file's type is returned in *FileType.
83 *FileType is not modified if no file is
111 IN OUT EFI_FV_FILETYPE *FileType,
139 if (*FileType > EFI_FV_FILETYPE_SMM_CORE) {
182 if (*FileType == EFI_FV_FILETYPE_ALL) {
189 if (*FileType == FfsFileHeader->Type) {
    [all...]
  /external/python/cpython3/Lib/json/
tool.py 24 parser.add_argument('infile', nargs='?', type=argparse.FileType(),
26 parser.add_argument('outfile', nargs='?', type=argparse.FileType('w'),
  /external/skia/tools/
embed_resources.py 35 parser.add_argument('--input', required=True, type=argparse.FileType('rb'),
37 parser.add_argument('--output', required=True, type=argparse.FileType('w'),
  /external/skqp/tools/
embed_resources.py 35 parser.add_argument('--input', required=True, type=argparse.FileType('rb'),
37 parser.add_argument('--output', required=True, type=argparse.FileType('w'),
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Universal/FirmwareVolume/UpdateDriverDxe/
UpdateDispatcher.c 29 @param FileType FFS file type.
41 IN EFI_FV_FILETYPE FileType,
121 if (FileType != EFI_FV_FILETYPE_FIRMWARE_VOLUME_IMAGE) {
139 FileType,
366 EFI_FV_FILETYPE FileType;
381 &FileType,
403 if (FileType != EFI_FV_FILETYPE_FIRMWARE_VOLUME_IMAGE) {
432 FileType,
449 if (FileType != EFI_FV_FILETYPE_RAW) {
480 FileType,
    [all...]

Completed in 566 milliseconds

1 2 3 4 5 6 7 8 91011>>