/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/ |
H A D | ANTLRFileStream.cs | 50 protected string fileName; field in class:Antlr.Runtime.ANTLRFileStream 52 public ANTLRFileStream( string fileName ) 53 : this( fileName, null ) 57 public ANTLRFileStream( string fileName, Encoding encoding ) argument 59 this.fileName = fileName; 60 Load( fileName, encoding ); 63 public virtual void Load( string fileName, Encoding encoding ) argument 65 if ( fileName == null ) 72 text = File.ReadAllText(fileName); [all...] |
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/ |
H A D | ANTLRFileStream.java | 39 protected String fileName; field in class:ANTLRFileStream 41 public ANTLRFileStream(String fileName) throws IOException { argument 42 this(fileName, null); 45 public ANTLRFileStream(String fileName, String encoding) throws IOException { argument 46 this.fileName = fileName; 47 load(fileName, encoding); 50 public void load(String fileName, String encoding) argument 53 if ( fileName==null ) { 56 File f = new File(fileName); [all...] |
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/model/ |
H A D | TestCaseInputFile.java | 40 private String fileName; field in class:TestCaseInputFile 43 this.fileName = file; 47 return "FILE:" + fileName; 51 this.fileName = script; 56 return fileName; 60 return this.fileName;
|
/external/lzma/CPP/7zip/UI/Common/ |
H A D | DefaultName.cpp | 7 static UString GetDefaultName3(const UString &fileName,
argument 11 int fileNameLength = fileName.Length();
15 if (fileName[dotPos] == '.')
16 if (extension.CompareNoCase(fileName.Mid(dotPos + 1)) == 0)
17 return fileName.Left(dotPos) + addSubExtension;
19 int dotPos = fileName.ReverseFind(L'.');
21 return fileName.Left(dotPos) + addSubExtension;
24 return fileName + L"~";
26 return fileName + addSubExtension;
29 UString GetDefaultName2(const UString &fileName,
argument [all...] |
H A D | DefaultName.h | 8 UString GetDefaultName2(const UString &fileName,
|
/external/apache-http/android/src/com/android/internal/http/multipart/ |
H A D | ByteArrayPartSource.java | 47 private String fileName; field in class:ByteArrayPartSource 55 * @param fileName the name of the file these bytes represent 58 public ByteArrayPartSource(String fileName, byte[] bytes) { argument 60 this.fileName = fileName; 76 return fileName;
|
H A D | FilePartSource.java | 55 private String fileName = null; field in class:FilePartSource 74 this.fileName = file.getName(); 81 * @param fileName the file name of the FilePart 87 public FilePartSource(String fileName, File file) argument 90 if (fileName != null) { 91 this.fileName = fileName; 114 return (fileName == null) ? "noname" : fileName;
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/ |
H A D | ANTLRFileStream.cs | 67 public ANTLRFileStream(string fileName) : argument 68 this(fileName, Encoding.Default) 76 public ANTLRFileStream(string fileName, Encoding encoding) argument 78 this.fileName = fileName; 79 Load(fileName, encoding); 87 get { return fileName; } 99 /// <param name="fileName">File to load</param> 101 public virtual void Load(string fileName, Encoding encoding) argument 103 if (fileName 133 protected string fileName; field in class:Antlr.Runtime.ANTLRFileStream [all...] |
/external/icu/icu4c/source/samples/layout/ |
H A D | ucreader.cpp | 15 const UChar *uc_readFile(const char *fileName, gs_guiSupport *guiSupport, int32_t *charCount) argument 17 return UnicodeReader::readFile(fileName, (GUISupport *) guiSupport, *charCount);
|
H A D | UnicodeReader.h | 28 static const UChar *readFile(const char *fileName, GUISupport *guiSupport, int32_t &charCount);
|
H A D | ucreader.h | 15 const UChar *uc_readFile(const char *fileName, gs_guiSupport *guiSupport, int32_t *charCount);
|
/external/deqp/framework/common/ |
H A D | tcuImageIO.hpp | 39 void loadImage (TextureLevel& dst, const tcu::Archive& archive, const char* fileName); 41 void loadPNG (TextureLevel& dst, const tcu::Archive& archive, const char* fileName); 42 void savePNG (const ConstPixelBufferAccess& src, const char* fileName); 44 void loadPKM (CompressedTexture& dst, const tcu::Archive& archive, const char* fileName);
|
/external/lzma/CPP/Common/ |
H A D | ListFileUtils.h | 9 bool ReadNamesFromListFile(LPCWSTR fileName, UStringVector &strings, UINT codePage = CP_OEMCP);
|
/external/deqp/framework/delibs/decpp/ |
H A D | deDynamicLibrary.cpp | 32 DynamicLibrary::DynamicLibrary (const char* fileName) argument 35 m_library = deDynamicLibrary_open(fileName); 37 throw std::runtime_error(std::string("Failed to open dynamic library: '") + fileName + "'");
|
/external/okhttp/okhttp-hpacktests/src/test/java/com/squareup/okhttp/internal/spdy/hpackjson/ |
H A D | Story.java | 27 private transient String fileName; field in class:Story 35 void setFileName(String fileName) { argument 36 this.fileName = fileName; 51 story.fileName = this.fileName; 64 return fileName;
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/ |
H A D | ANTLRFileStream.h | 37 __strong NSString *fileName; variable 41 + (id) newANTLRFileStream:(NSString*) fileName; 45 - (void) load:(NSString *)fileName encoding:(NSStringEncoding)encoding; 48 @property (retain) NSString *fileName; variable
|
/external/sonic/ |
H A D | wave.h | 12 waveFile openInputWaveFile(char *fileName, int *sampleRate, int *numChannels); 13 waveFile openOutputWaveFile(char *fileName, int sampleRate, int numChannels);
|
/external/lzma/CPP/Windows/ |
H A D | DLL.cpp | 40 bool CLibrary::LoadEx(LPCTSTR fileName, DWORD flags)
argument 42 // MessageBox(0, fileName, TEXT("LoadEx"), 0);
43 return LoadOperations(::LoadLibraryEx(fileName, NULL, flags));
46 bool CLibrary::Load(LPCTSTR fileName)
argument 48 // MessageBox(0, fileName, TEXT("Load"), 0);
50 // OutputDebugString(fileName);
52 return LoadOperations(::LoadLibrary(fileName));
60 bool CLibrary::LoadEx(LPCWSTR fileName, DWORD flags)
argument 63 return LoadOperations(::LoadLibraryExW(fileName, NULL, flags));
64 return LoadEx(GetSysPath(fileName), flag 66 Load(LPCWSTR fileName) argument [all...] |
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/ |
H A D | ANTLRFileStream.js | 7 * @param {String} fileName path of the file to be loaded 10 org.antlr.runtime.ANTLRFileStream = function(fileName, encoding) { 11 this.fileName = fileName; 24 var data = this[method](fileName, encoding); 36 return this.fileName; 42 * @param {String} fileName path of the file to be loaded 46 loadFileUsingJava: function(fileName, encoding) { 48 var f = new java.io.File(fileName),
|
/external/jmonkeyengine/engine/src/niftygui/com/jme3/niftygui/ |
H A D | SoundHandleJme.java | 45 private String fileName; field in class:SoundHandleJme 59 * @param fileName 61 public SoundHandleJme(AudioRenderer ar, AssetManager am, String fileName){ argument 66 if (fileName == null) 69 this.fileName = fileName; 73 if (fileName != null){ 78 node = new AudioNode(am, fileName, true);
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/generators/ |
H A D | PlatformStatus.java | 24 private String fileName; field in class:PlatformStatus 32 this.fileName = (String) attributes.getNamedItem("fileName").getNodeValue(); 49 return fileName;
|
/external/lzma/CPP/7zip/Common/ |
H A D | FileStreams.h | 44 bool Open(LPCTSTR fileName);
47 bool Open(LPCWSTR fileName);
51 bool OpenShared(LPCTSTR fileName, bool shareForWrite);
54 bool OpenShared(LPCWSTR fileName, bool shareForWrite);
88 bool Create(LPCTSTR fileName, bool createAlways)
argument 91 return File.Create(fileName, createAlways);
93 bool Open(LPCTSTR fileName, DWORD creationDisposition)
argument 96 return File.Open(fileName, creationDisposition);
100 bool Create(LPCWSTR fileName, bool createAlways)
argument 103 return File.Create(fileName, createAlway 105 Open(LPCWSTR fileName, DWORD creationDisposition) argument [all...] |
/external/deqp/framework/delibs/deutil/ |
H A D | deDynamicLibrary.h | 35 * \param fileName Name or path to dynamic library. 41 deDynamicLibrary* deDynamicLibrary_open (const char* fileName);
|
/external/icu/icu4c/source/tools/toolutil/ |
H A D | flagparser.h | 28 parseFlagsFile(const char *fileName, char **flagBuffer, int32_t flagBufferSize, const char ** flagNames, int32_t numOfFlags, UErrorCode *status);
|
/external/webrtc/src/system_wrappers/interface/ |
H A D | trace.h | 48 static WebRtc_Word32 SetTraceFile(const char* fileName, 52 static WebRtc_Word32 TraceFile(char fileName[1024]);
|