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

1 2 3 4 5 6 7 8 91011>>

  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
ANTLRFileStream.cs 50 protected string fileName;
52 public ANTLRFileStream( string fileName )
53 : this( fileName, null )
57 public ANTLRFileStream( string fileName, Encoding encoding )
59 this.fileName = fileName;
60 Load( fileName, encoding );
63 public virtual void Load( string fileName, Encoding encoding )
65 if ( fileName == null )
72 text = File.ReadAllText(fileName);
    [all...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
ANTLRFileStream.java 39 protected String fileName;
41 public ANTLRFileStream(String fileName) throws IOException {
42 this(fileName, null);
45 public ANTLRFileStream(String fileName, String encoding) throws IOException {
46 this.fileName = fileName;
47 load(fileName, encoding);
50 public void load(String fileName, String encoding)
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/
TestCaseInputFile.java 40 private String fileName;
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/
DefaultName.cpp 7 static UString GetDefaultName3(const UString &fileName,
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,
    [all...]
DefaultName.h 8 UString GetDefaultName2(const UString &fileName,
  /dalvik/libdex/
OptInvocation.h 26 char* dexOptGenerateCacheFileName(const char* fileName,
  /external/apache-http/android/src/com/android/internal/http/multipart/
ByteArrayPartSource.java 47 private String fileName;
55 * @param fileName the name of the file these bytes represent
58 public ByteArrayPartSource(String fileName, byte[] bytes) {
60 this.fileName = fileName;
76 return fileName;
FilePartSource.java 55 private String fileName = null;
74 this.fileName = file.getName();
81 * @param fileName the file name of the FilePart
87 public FilePartSource(String fileName, File file)
90 if (fileName != null) {
91 this.fileName = fileName;
109 * Return the current filename
110 * @return the filename.
114 return (fileName == null) ? "noname" : fileName
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
ANTLRFileStream.cs 67 public ANTLRFileStream(string fileName) :
68 this(fileName, Encoding.Default)
76 public ANTLRFileStream(string fileName, Encoding encoding)
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)
103 if (fileName == null
    [all...]
  /external/icu/icu4c/source/samples/layout/
ucreader.cpp 15 const UChar *uc_readFile(const char *fileName, gs_guiSupport *guiSupport, int32_t *charCount)
17 return UnicodeReader::readFile(fileName, (GUISupport *) guiSupport, *charCount);
UnicodeReader.h 28 static const UChar *readFile(const char *fileName, GUISupport *guiSupport, int32_t &charCount);
ucreader.h 15 const UChar *uc_readFile(const char *fileName, gs_guiSupport *guiSupport, int32_t *charCount);
  /developers/build/prebuilts/gradle/DirectorySelection/Application/src/main/java/com/example/android/directoryselection/
DirectoryEntry.java 23 public String fileName;
  /developers/samples/android/content/documentsUi/DirectorySelection/Application/src/main/java/com/example/android/directoryselection/
DirectoryEntry.java 23 public String fileName;
  /development/samples/browseable/DirectorySelection/src/com.example.android.directoryselection/
DirectoryEntry.java 23 public String fileName;
  /external/deqp/framework/common/
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/
ListFileUtils.h 9 bool ReadNamesFromListFile(LPCWSTR fileName, UStringVector &strings, UINT codePage = CP_OEMCP);
  /external/deqp/framework/delibs/decpp/
deDynamicLibrary.cpp 32 DynamicLibrary::DynamicLibrary (const char* fileName)
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/
Story.java 27 private transient String fileName;
33 * The filename is only used in the toString representation.
35 void setFileName(String fileName) {
36 this.fileName = fileName;
51 story.fileName = this.fileName;
64 return fileName;
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRFileStream.h 37 __strong NSString *fileName;
41 + (id) newANTLRFileStream:(NSString*) fileName;
45 - (void) load:(NSString *)fileName encoding:(NSStringEncoding)encoding;
48 @property (retain) NSString *fileName;
  /cts/tests/tests/provider/src/android/provider/cts/
ContactsContract_DumpFileProviderTest.java 52 for (String fileName : NOT_ALLOWED_FILES) {
53 Uri uri = Uri.parse(URI_PREFIX + fileName);
59 for (String fileName : ALLOWED_FILES) {
60 final Uri uri = Uri.parse(URI_PREFIX + fileName);
70 for (String fileName : NOT_ALLOWED_FILES) {
71 final Uri uri = Uri.parse(URI_PREFIX + fileName);
77 for (String fileName : ALLOWED_FILES) {
78 final Uri uri = Uri.parse(URI_PREFIX + fileName);
  /external/sonic/
wave.h 12 waveFile openInputWaveFile(char *fileName, int *sampleRate, int *numChannels);
13 waveFile openOutputWaveFile(char *fileName, int sampleRate, int numChannels);
  /frameworks/base/include/androidfw/
misc.h 43 FileType getFileType(const char* fileName);
45 time_t getFileModDate(const char* fileName);
  /frameworks/base/libs/androidfw/
misc.cpp 36 FileType getFileType(const char* fileName)
40 if (stat(fileName, &sb) < 0) {
45 errno, fileName);
75 time_t getFileModDate(const char* fileName)
79 if (stat(fileName, &sb) < 0)
  /external/lzma/CPP/Windows/
DLL.cpp 40 bool CLibrary::LoadEx(LPCTSTR fileName, DWORD flags)
42 // MessageBox(0, fileName, TEXT("LoadEx"), 0);
43 return LoadOperations(::LoadLibraryEx(fileName, NULL, flags));
46 bool CLibrary::Load(LPCTSTR fileName)
48 // MessageBox(0, fileName, TEXT("Load"), 0);
50 // OutputDebugString(fileName);
52 return LoadOperations(::LoadLibrary(fileName));
60 bool CLibrary::LoadEx(LPCWSTR fileName, DWORD flags)
63 return LoadOperations(::LoadLibraryExW(fileName, NULL, flags));
64 return LoadEx(GetSysPath(fileName), flags);
    [all...]

Completed in 694 milliseconds

1 2 3 4 5 6 7 8 91011>>