Home
last modified time | relevance | path

Searched refs:FileType (Results 1 – 25 of 135) sorted by relevance

123456

/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/Generic/
D2003-05-30-BadFoldGEP.ll19 %FileType = type { i32, [256 x i8], i32, i32, i32, i32 }
20 @OutputFiles = external global [16 x %FileType] ; <[16 x %FileType]*> [#uses=1]
21 @Output = internal global %FileType* null ; <%FileType**> [#uses=1]
25 %tmp.0 = load %FileType*, %FileType** @Output ; <%FileType*> [#uses=1]
26 %tmp.4 = getelementptr %FileType, %FileType* %tmp.0, i64 1 ; <%FileType*> [#uses=1]
27 …%addrOfGlobal = getelementptr [16 x %FileType], [16 x %FileType]* @OutputFiles, i64 0 …
28 …%constantGEP = getelementptr [16 x %FileType], [16 x %FileType]* %addrOfGlobal, i64 1 …
29 …GEP.upgrd.1 = getelementptr [16 x %FileType], [16 x %FileType]* %constantGEP, i64 0, i64 0 …
30 %tmp.10 = icmp eq %FileType* %tmp.4, %constantGEP.upgrd.1 ; <i1> [#uses=1]
/external/llvm/test/CodeGen/Generic/
D2003-05-30-BadFoldGEP.ll19 %FileType = type { i32, [256 x i8], i32, i32, i32, i32 }
20 @OutputFiles = external global [16 x %FileType] ; <[16 x %FileType]*> [#uses=1]
21 @Output = internal global %FileType* null ; <%FileType**> [#uses=1]
25 %tmp.0 = load %FileType*, %FileType** @Output ; <%FileType*> [#uses=1]
26 %tmp.4 = getelementptr %FileType, %FileType* %tmp.0, i64 1 ; <%FileType*> [#uses=1]
27 …%addrOfGlobal = getelementptr [16 x %FileType], [16 x %FileType]* @OutputFiles, i64 0 …
28 …%constantGEP = getelementptr [16 x %FileType], [16 x %FileType]* %addrOfGlobal, i64 1 …
29 …GEP.upgrd.1 = getelementptr [16 x %FileType], [16 x %FileType]* %constantGEP, i64 0, i64 0 …
30 %tmp.10 = icmp eq %FileType* %tmp.4, %constantGEP.upgrd.1 ; <i1> [#uses=1]
/external/puffin/src/
Dmain.cc67 enum class FileType { kDeflate, kZlib, kGzip, kZip, kRaw, kUnknown }; enum
71 FileType StringToFileType(const string& file_type) { in StringToFileType()
73 return FileType::kRaw; in StringToFileType()
76 return FileType::kDeflate; in StringToFileType()
78 return FileType::kZlib; in StringToFileType()
80 return FileType::kGzip; in StringToFileType()
82 return FileType::kZip; in StringToFileType()
84 return FileType::kUnknown; in StringToFileType()
96 auto file_type = FileType::kUnknown; in LocateDeflatesBasedOnFileType()
108 if (override_file_type == FileType::kUnknown) { in LocateDeflatesBasedOnFileType()
[all …]
/external/clang/lib/Frontend/Rewrite/
DInclusionRewriter.cpp34 SrcMgr::CharacteristicKind FileType; member
35 IncludedFile(FileID Id, SrcMgr::CharacteristicKind FileType) in IncludedFile()
36 : Id(Id), FileType(FileType) {} in IncludedFile()
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, in WriteLineInfo() argument
122 if (FileType == SrcMgr::C_System) in WriteLineInfo()
126 else if (FileType == SrcMgr::C_ExternCSystem) in WriteLineInfo()
[all …]
/external/robolectric-shadows/resources/src/main/java/org/robolectric/res/android/
DAssetDir.java3 import org.robolectric.res.android.CppAssetManager.FileType;
46 private FileType mFileType; // regular, directory, etc
53 mFileType = FileType.kFileTypeUnknown; in FileInfo()
81 void set(final String8 path, FileType type) { in set()
89 FileType getFileType() { return mFileType; } in getFileType()
90 void setFileType(FileType type) { mFileType = type; } in setFileType()
DCppAssetManager.java4 import static org.robolectric.res.android.CppAssetManager.FileType.kFileTypeDirectory;
42 enum FileType { enum in CppAssetManager
62 this(new String8(), FileType.kFileTypeRegular, new String8(""), false, false); in asset_path()
65 public asset_path(String8 path, FileType fileType, String8 idmap, in asset_path()
76 FileType type;
235 if (ap.type == FileType.kFileTypeRegular) { in addAssetPath()
240 if (ap.type != kFileTypeDirectory && ap.type != FileType.kFileTypeRegular) { in addAssetPath()
539 FileType getFileType(final String fileName) { in getFileType()
544 return FileType.kFileTypeNonexistent; in getFileType()
546 return FileType.kFileTypeRegular; in getFileType()
[all …]
DCppApkAssets.java6 import static org.robolectric.res.android.CppAssetManager.FileType.kFileTypeDirectory;
7 import static org.robolectric.res.android.CppAssetManager.FileType.kFileTypeRegular;
19 import org.robolectric.res.android.CppAssetManager.FileType;
329 void callback(String string, FileType fileType); in callback()
/external/llvm/lib/CodeGen/
DParallelCG.cpp30 TargetMachine::CodeGenFileType FileType) { in codegen() argument
33 if (TM->addPassesToEmitFile(CodeGenPasses, OS, FileType)) in codegen()
42 TargetMachine::CodeGenFileType FileType, bool PreserveLocals) { in splitCodeGen() argument
48 codegen(M.get(), *OSs[0], TMFactory, FileType); in splitCodeGen()
79 [TMFactory, FileType, ThreadOS](const SmallString<0> &BC) { in splitCodeGen()
89 codegen(MPartInCtx.get(), *ThreadOS, TMFactory, FileType); in splitCodeGen()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/
DParallelCG.cpp30 TargetMachine::CodeGenFileType FileType) { in codegen() argument
33 if (TM->addPassesToEmitFile(CodeGenPasses, OS, nullptr, FileType)) in codegen()
42 TargetMachine::CodeGenFileType FileType, bool PreserveLocals) { in splitCodeGen() argument
48 codegen(M.get(), *OSs[0], TMFactory, FileType); in splitCodeGen()
79 [TMFactory, FileType, ThreadOS](const SmallString<0> &BC) { in splitCodeGen()
89 codegen(MPartInCtx.get(), *ThreadOS, TMFactory, FileType); in splitCodeGen()
DLLVMTargetMachine.cpp126 CodeGenFileType FileType, in addAsmPrinter() argument
138 switch (FileType) { in addAsmPrinter()
200 CodeGenFileType FileType, in addPassesToEmitFile() argument
211 addAsmPrinter(PM, Out, DwoOut, FileType, *Context)) in addPassesToEmitFile()
/external/yapf/
D.vimrc2 autocmd FileType python set shiftwidth=2
3 autocmd FileType python set tabstop=2
4 autocmd FileType python set softtabstop=2
/external/swiftshader/third_party/llvm-7.0/llvm/tools/bugpoint/
DToolRunner.h50 enum FileType { AsmFile, ObjectFile, CFile }; enum
64 FileType fileType, const std::string &InputFile,
72 Error MakeSharedObject(const std::string &InputFile, FileType fileType,
121 virtual Expected<CC::FileType> OutputCode(const std::string &Bitcode,
176 Expected<CC::FileType> OutputCode(const std::string &Bitcode,
/external/clang/lib/Frontend/
DDependencyFile.cpp41 SrcMgr::CharacteristicKind FileType, in FileChanged()
58 FileType != SrcMgr::C_User, in FileChanged()
168 SrcMgr::CharacteristicKind FileType);
186 SrcMgr::CharacteristicKind FileType,
261 SrcMgr::CharacteristicKind FileType) { in FileMatchesDepCriteria() argument
268 return FileType == SrcMgr::C_User; in FileMatchesDepCriteria()
273 SrcMgr::CharacteristicKind FileType, in FileChanged() argument
288 if (!FileMatchesDepCriteria(Filename.data(), FileType)) in FileChanged()
/external/llvm/tools/bugpoint/
DToolRunner.h48 enum FileType { AsmFile, ObjectFile, CFile }; enum
63 FileType fileType,
75 int MakeSharedObject(const std::string &InputFile, FileType fileType,
125 virtual CC::FileType OutputCode(const std::string &Bitcode,
192 CC::FileType OutputCode(const std::string &Bitcode,
/external/libgav1/libgav1/examples/
Dfile_writer.h33 enum FileType : uint8_t { enum
73 FileType type,
97 FileType file_type_ = kFileTypeRaw;
Dfile_reader.h34 enum FileType { enum
89 FileType type_ = kFileTypeUnknown;
/external/clang/include/clang/Lex/
DPPCallbacks.h51 SrcMgr::CharacteristicKind FileType,
65 SrcMgr::CharacteristicKind FileType) { in FileSkipped() argument
334 SrcMgr::CharacteristicKind FileType, in FileChanged() argument
336 First->FileChanged(Loc, Reason, FileType, PrevFID); in FileChanged()
337 Second->FileChanged(Loc, Reason, FileType, PrevFID); in FileChanged()
342 SrcMgr::CharacteristicKind FileType) override { in FileSkipped() argument
343 First->FileSkipped(SkippedFile, FilenameTok, FileType); in FileSkipped()
344 Second->FileSkipped(SkippedFile, FilenameTok, FileType); in FileSkipped()
/external/python/cpython3/Parser/pgen/
D__main__.py16 type=argparse.FileType('w'),
21 type=argparse.FileType('w'),
/external/python/cpython3/Lib/json/
Dtool.py24 type=argparse.FileType(encoding="utf-8"),
28 type=argparse.FileType('w', encoding="utf-8"),
/external/skqp/tools/
Dembed_resources.py35 parser.add_argument('--input', required=True, type=argparse.FileType('rb'),
37 parser.add_argument('--output', required=True, type=argparse.FileType('w'),
/external/skia/tools/
Dembed_resources.py35 parser.add_argument('--input', required=True, type=argparse.FileType('rb'),
37 parser.add_argument('--output', required=True, type=argparse.FileType('w'),
/external/google-breakpad/src/common/mac/
Dmacho_reader.h63 typedef uint32_t FileType; typedef
385 FileType file_type() const { return file_type_; } in file_type()
444 FileType file_type_; // mach_header[_64].filetype
/external/minijail/tools/
Dgenerate_constants_json.py84 type=argparse.FileType('w'),
91 type=argparse.FileType('r'))
Dcompile_seccomp_policy.py64 'policy', help='The seccomp policy.', type=argparse.FileType('r'))
66 'output', help='The BPF program.', type=argparse.FileType('wb'))
/external/llvm/tools/llc/
Dllc.cpp162 switch (FileType) { in GetOutputStream()
189 switch (FileType) { in GetOutputStream()
382 FileType != TargetMachine::CGFT_ObjectFile) in compileModule()
393 if ((FileType != TargetMachine::CGFT_AssemblyFile && in compileModule()
463 if (Target->addPassesToEmitFile(PM, *OS, FileType, NoVerify, in compileModule()

123456