Home
last modified time | relevance | path

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

1234

/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/libgdx/gdx/src/com/badlogic/gdx/files/
DFileHandle.java37 import com.badlogic.gdx.Files.FileType;
53 protected FileType type;
63 this.type = FileType.Absolute; in FileHandle()
71 this.type = FileType.Absolute; in FileHandle()
74 protected FileHandle (String fileName, FileType type) { in FileHandle()
79 protected FileHandle (File file, FileType type) { in FileHandle()
119 public FileType type () { in type()
126 …if (type == FileType.External) return new File(Gdx.files.getExternalStoragePath(), file.getPath()); in file()
133 if (type == FileType.Classpath || (type == FileType.Internal && !file().exists()) in read()
134 || (type == FileType.Local && !file().exists())) { in read()
[all …]
/external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/preloader/
DFileWrapper.java34 import com.badlogic.gdx.Files.FileType;
44 protected FileType type;
54 this.type = FileType.Absolute; in FileWrapper()
62 this.type = FileType.Absolute; in FileWrapper()
65 protected FileWrapper (String fileName, FileType type) { in FileWrapper()
70 protected FileWrapper (File file, FileType type) { in FileWrapper()
97 public FileType type () { in type()
104 …if (type == FileType.External) return new File(Gdx.files.getExternalStoragePath(), file.getPath()); in file()
111 if (type == FileType.Classpath || (type == FileType.Internal && !file.exists()) in read()
112 || (type == FileType.Local && !file.exists())) { in read()
[all …]
/external/libgdx/backends/gdx-backend-moe/src/com/badlogic/gdx/backends/iosmoe/
DIOSFileHandle.java19 import com.badlogic.gdx.Files.FileType;
26 protected IOSFileHandle (String fileName, FileType type) { in IOSFileHandle()
30 protected IOSFileHandle (File file, FileType type) { in IOSFileHandle()
44 if (type == FileType.Absolute) in parent()
60 if (type == FileType.Internal) return new File(IOSFiles.internalPath, file.getPath()); in file()
61 if (type == FileType.External) return new File(IOSFiles.externalPath, file.getPath()); in file()
62 if (type == FileType.Local) return new File(IOSFiles.localPath, file.getPath()); in file()
DIOSFiles.java37 public FileHandle getFileHandle (String fileName, FileType type) { in getFileHandle()
43 return new IOSFileHandle(path, FileType.Classpath); in classpath()
48 return new IOSFileHandle(path, FileType.Internal); in internal()
53 return new IOSFileHandle(path, FileType.External); in external()
58 return new IOSFileHandle(path, FileType.Absolute); in absolute()
63 return new IOSFileHandle(path, FileType.Local); in local()
/external/libgdx/backends/gdx-backend-robovm/src/com/badlogic/gdx/backends/iosrobovm/
DIOSFileHandle.java21 import com.badlogic.gdx.Files.FileType;
26 protected IOSFileHandle (String fileName, FileType type) { in IOSFileHandle()
30 protected IOSFileHandle (File file, FileType type) { in IOSFileHandle()
44 if (type == FileType.Absolute) in parent()
60 if (type == FileType.Internal) return new File(IOSFiles.internalPath, file.getPath()); in file()
61 if (type == FileType.External) return new File(IOSFiles.externalPath, file.getPath()); in file()
62 if (type == FileType.Local) return new File(IOSFiles.localPath, file.getPath()); in file()
DIOSFiles.java38 public FileHandle getFileHandle (String fileName, FileType type) { in getFileHandle()
44 return new IOSFileHandle(path, FileType.Classpath); in classpath()
49 return new IOSFileHandle(path, FileType.Internal); in internal()
54 return new IOSFileHandle(path, FileType.External); in external()
59 return new IOSFileHandle(path, FileType.Absolute); in absolute()
64 return new IOSFileHandle(path, FileType.Local); in local()
/external/libgdx/extensions/gdx-jnigen/src/com/badlogic/gdx/jnigen/
DFileDescriptor.java40 public enum FileType { enum in FileDescriptor
51 protected FileType type;
61 this.type = FileType.Absolute; in FileDescriptor()
69 this.type = FileType.Absolute; in FileDescriptor()
72 protected FileDescriptor (String fileName, FileType type) { in FileDescriptor()
77 protected FileDescriptor (File file, FileType type) { in FileDescriptor()
104 public FileType type () { in type()
117 if (type == FileType.Classpath && !file.exists()) { in read()
263 …if (type == FileType.Classpath) throw new RuntimeException("Cannot write to a classpath file: " + … in write()
318 …if (type == FileType.Classpath) throw new RuntimeException("Cannot write to a classpath file: " + … in writer()
[all …]
/external/libgdx/backends/gdx-backend-android/src/com/badlogic/gdx/backends/android/
DAndroidFileHandle.java28 import com.badlogic.gdx.Files.FileType;
39 AndroidFileHandle (AssetManager assets, String fileName, FileType type) { in AndroidFileHandle()
44 AndroidFileHandle (AssetManager assets, File file, FileType type) { in AndroidFileHandle()
64 if (type == FileType.Absolute) in parent()
73 if (type == FileType.Internal) { in read()
84 if (type == FileType.Internal) { in list()
99 if (type == FileType.Internal) { in list()
125 if (type == FileType.Internal) { in list()
150 if (type == FileType.Internal) { in list()
175 if (type == FileType.Internal) { in isDirectory()
[all …]
DAndroidFiles.java49 public FileHandle getFileHandle (String path, FileType type) { in getFileHandle()
50 FileHandle handle = new AndroidFileHandle(type == FileType.Internal ? assets : null, path, type); in getFileHandle()
51 …if (expansionFile != null && type == FileType.Internal) handle = getZipFileHandleIfExists(handle, … in getFileHandle()
71 return new AndroidFileHandle(null, path, FileType.Classpath); in classpath()
76 FileHandle handle = new AndroidFileHandle(assets, path, FileType.Internal); in internal()
83 return new AndroidFileHandle(null, path, FileType.External); in external()
88 return new AndroidFileHandle(null, path, FileType.Absolute); in absolute()
93 return new AndroidFileHandle(null, path, FileType.Local); in local()
/external/libgdx/backends/gdx-backend-jglfw/src/com/badlogic/gdx/backends/jglfw/
DJglfwFiles.java30 public FileHandle getFileHandle (String fileName, FileType type) { in getFileHandle()
35 return new JglfwFileHandle(path, FileType.Classpath); in classpath()
39 return new JglfwFileHandle(path, FileType.Internal); in internal()
43 return new JglfwFileHandle(path, FileType.External); in external()
47 return new JglfwFileHandle(path, FileType.Absolute); in absolute()
51 return new JglfwFileHandle(path, FileType.Local); in local()
DJglfwFileHandle.java21 import com.badlogic.gdx.Files.FileType;
28 public JglfwFileHandle (String fileName, FileType type) { in JglfwFileHandle()
32 public JglfwFileHandle (File file, FileType type) { in JglfwFileHandle()
49 if (type == FileType.Absolute) in parent()
58 if (type == FileType.External) return new File(JglfwFiles.externalPath, file.getPath()); in file()
59 if (type == FileType.Local) return new File(JglfwFiles.localPath, file.getPath()); in file()
/external/libgdx/backends/gdx-backend-lwjgl3/src/com/badlogic/gdx/backends/lwjgl3/
DLwjgl3Files.java31 public FileHandle getFileHandle (String fileName, FileType type) { in getFileHandle()
37 return new Lwjgl3FileHandle(path, FileType.Classpath); in classpath()
42 return new Lwjgl3FileHandle(path, FileType.Internal); in internal()
47 return new Lwjgl3FileHandle(path, FileType.External); in external()
52 return new Lwjgl3FileHandle(path, FileType.Absolute); in absolute()
57 return new Lwjgl3FileHandle(path, FileType.Local); in local()
DLwjgl3FileHandle.java21 import com.badlogic.gdx.Files.FileType;
28 public Lwjgl3FileHandle (String fileName, FileType type) { in Lwjgl3FileHandle()
32 public Lwjgl3FileHandle (File file, FileType type) { in Lwjgl3FileHandle()
49 if (type == FileType.Absolute) in parent()
58 if (type == FileType.External) return new File(Lwjgl3Files.externalPath, file.getPath()); in file()
59 if (type == FileType.Local) return new File(Lwjgl3Files.localPath, file.getPath()); in file()
/external/libgdx/backends/gdx-backend-headless/src/com/badlogic/gdx/backends/headless/
DHeadlessFiles.java31 public FileHandle getFileHandle (String fileName, FileType type) { in getFileHandle()
37 return new HeadlessFileHandle(path, FileType.Classpath); in classpath()
42 return new HeadlessFileHandle(path, FileType.Internal); in internal()
47 return new HeadlessFileHandle(path, FileType.External); in external()
52 return new HeadlessFileHandle(path, FileType.Absolute); in absolute()
57 return new HeadlessFileHandle(path, FileType.Local); in local()
DHeadlessFileHandle.java19 import com.badlogic.gdx.Files.FileType;
28 public HeadlessFileHandle(String fileName, FileType type) { in HeadlessFileHandle()
32 public HeadlessFileHandle(File file, FileType type) { in HeadlessFileHandle()
49 if (type == FileType.Absolute) in parent()
58 if (type == FileType.External) return new File(HeadlessFiles.externalPath, file.getPath()); in file()
59 if (type == FileType.Local) return new File(HeadlessFiles.localPath, file.getPath()); in file()
/external/libgdx/backends/gdx-backend-lwjgl/src/com/badlogic/gdx/backends/lwjgl/
DLwjglFiles.java31 public FileHandle getFileHandle (String fileName, FileType type) { in getFileHandle()
37 return new LwjglFileHandle(path, FileType.Classpath); in classpath()
42 return new LwjglFileHandle(path, FileType.Internal); in internal()
47 return new LwjglFileHandle(path, FileType.External); in external()
52 return new LwjglFileHandle(path, FileType.Absolute); in absolute()
57 return new LwjglFileHandle(path, FileType.Local); in local()
DLwjglFileHandle.java21 import com.badlogic.gdx.Files.FileType;
28 public LwjglFileHandle (String fileName, FileType type) { in LwjglFileHandle()
32 public LwjglFileHandle (File file, FileType type) { in LwjglFileHandle()
49 if (type == FileType.Absolute) in parent()
58 if (type == FileType.External) return new File(LwjglFiles.externalPath, file.getPath()); in file()
59 if (type == FileType.Local) return new File(LwjglFiles.localPath, file.getPath()); in file()
DLwjglApplicationConfiguration.java25 import com.badlogic.gdx.Files.FileType;
90 public Files.FileType preferencesFileType = FileType.External;
97 Array<FileType> iconFileTypes = new Array();
101 public void addIcon (String path, FileType fileType) { in addIcon()
/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/llvm/lib/CodeGen/
DParallelCG.cpp32 TargetMachine::CodeGenFileType FileType) { in codegen() argument
37 if (TM->addPassesToEmitFile(CodeGenPasses, OS, FileType)) in codegen()
47 TargetMachine::CodeGenFileType FileType) { in splitCodeGen() argument
56 OL, FileType); in splitCodeGen()
73 [TheTarget, CPU, Features, Options, RM, CM, OL, FileType, in splitCodeGen()
85 Options, RM, CM, OL, FileType); in splitCodeGen()
/external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/
DGwtFiles.java36 public FileHandle getFileHandle (String path, FileType type) { in getFileHandle()
37 …if (type != FileType.Internal) throw new GdxRuntimeException("FileType '" + type + "' not supporte… in getFileHandle()
43 return new GwtFileHandle(preloader, path, FileType.Classpath); in classpath()
48 return new GwtFileHandle(preloader, path, FileType.Internal); in internal()
DGwtFileHandle.java32 import com.badlogic.gdx.Files.FileType;
41 private final FileType type;
43 public GwtFileHandle (Preloader preloader, String fileName, FileType type) { in GwtFileHandle()
44 if (type != FileType.Internal && type != FileType.Classpath) in GwtFileHandle()
52 this.type = FileType.Internal; in GwtFileHandle()
89 public FileType type () { in type()
331 FileType.Internal); in child()
/external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/emu/com/badlogic/gdx/files/
DFileHandle.java29 import com.badlogic.gdx.Files.FileType;
34 protected FileType type;
45 protected FileHandle (String fileName, FileType type) { in FileHandle()
48 protected FileHandle (File file, FileType type) { in FileHandle()
72 public FileType type () { in type()
/external/lldb/include/lldb/Host/
DFileSpec.h42 typedef enum FileType enum
52 } FileType; typedef
420 FileType
663 FileType file_type,

1234