Searched refs:fileName (Results 1 - 25 of 375) sorted by relevance

1234567891011>>

/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DANTLRFileStream.cs50 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 DANTLRFileStream.java39 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 DTestCaseInputFile.java40 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/webkit/Source/WebCore/platform/sql/
H A DSQLiteFileSystem.cpp53 int SQLiteFileSystem::openDatabase(const String& fileName, sqlite3** database, bool) argument
56 String path = fileName;
77 String fileName; local
80 fileName = pathByAppendingComponent(dbDir, String::format("%016"PRIx64".db", seq));
81 } while (fileExists(fileName));
86 String SQLiteFileSystem::appendDatabaseFileNameToPath(const String& path, const String& fileName) argument
88 return pathByAppendingComponent(path, fileName);
98 bool SQLiteFileSystem::ensureDatabaseFileExists(const String& fileName, bool checkPathOnly) argument
100 if (fileName.isEmpty())
104 String dir = directoryName(fileName);
116 deleteDatabaseFile(const String& fileName) argument
121 getDatabaseFileSize(const String& fileName) argument
[all...]
H A DSQLiteFileSystem.h52 // fileName - The name of the database file.
58 static int openDatabase(const String& fileName, sqlite3** database, bool forWebSQLDatabase);
72 // fileName - The file name.
73 static String appendDatabaseFileNameToPath(const String& path, const String& fileName);
90 // fileName - The file name.
93 static bool ensureDatabaseFileExists(const String& fileName, bool checkPathOnly);
102 // fileName - The file name.
103 static bool deleteDatabaseFile(const String& fileName);
107 // fileName - The file name.
108 static long long getDatabaseFileSize(const String& fileName);
[all...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DANTLRFileStream.cs67 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/icu4c/samples/layout/
H A Ducreader.cpp15 const UChar *uc_readFile(const char *fileName, gs_guiSupport *guiSupport, int32_t *charCount) argument
17 return UnicodeReader::readFile(fileName, (GUISupport *) guiSupport, *charCount);
H A DUnicodeReader.h28 static const UChar *readFile(const char *fileName, GUISupport *guiSupport, int32_t &charCount);
H A Ducreader.h15 const UChar *uc_readFile(const char *fileName, gs_guiSupport *guiSupport, int32_t *charCount);
/external/webkit/Source/WebCore/platform/sql/chromium/
H A DSQLiteFileSystemChromium.cpp47 int SQLiteFileSystem::openDatabase(const String& fileName, sqlite3** database, bool forWebSQLDatabase) argument
50 String path = fileName;
54 return sqlite3_open_v2(fileName.utf8().data(), database, SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE, "chromium_vfs");
65 String SQLiteFileSystem::appendDatabaseFileNameToPath(const String&, const String& fileName) argument
93 bool SQLiteFileSystem::deleteDatabaseFile(const String& fileName) argument
95 return (PlatformBridge::databaseDeleteFile(fileName) == SQLITE_OK);
98 long long SQLiteFileSystem::getDatabaseFileSize(const String& fileName) argument
100 return PlatformBridge::databaseGetFileSize(fileName);
H A DSQLiteFileSystemChromiumWin.cpp51 // fileName - the name of the file.
55 int chromiumOpen(sqlite3_vfs*, const char* fileName, argument
58 HANDLE h = PlatformBridge::databaseOpenFile(fileName, desiredFlags);
62 return chromiumOpen(0, fileName, id, newFlags, usedFlags);
80 // fileName - the name of the file.
83 int chromiumDelete(sqlite3_vfs*, const char* fileName, int) argument
85 return PlatformBridge::databaseDeleteFile(fileName);
91 // fileName - the name of the file.
94 int chromiumAccess(sqlite3_vfs*, const char* fileName, int flag, int* res) argument
96 DWORD attr = PlatformBridge::databaseGetFileAttributes(fileName);
[all...]
/external/webkit/Source/WebCore/platform/qt/
H A DSharedBufferQt.cpp33 PassRefPtr<SharedBuffer> SharedBuffer::createWithContentsOfFile(const String& fileName) argument
35 if (fileName.isEmpty())
38 QFile file(fileName);
/external/webkit/Source/WebCore/platform/haiku/
H A DSharedBufferHaiku.cpp34 PassRefPtr<SharedBuffer> SharedBuffer::createWithContentsOfFile(const String& fileName) argument
36 if (fileName.isEmpty())
39 BFile file(BString(fileName).String(), B_READ_ONLY);
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRFileStream.h37 __strong NSString *fileName; variable
41 + (id) newANTLRFileStream:(NSString*) fileName;
45 - (void) load:(NSString *)fileName encoding:(NSStringEncoding)encoding;
48 @property (retain) NSString *fileName; variable
/external/icu4c/tools/toolutil/
H A Dflagparser.h28 parseFlagsFile(const char *fileName, char **flagBuffer, int32_t flagBufferSize, int32_t numOfFlags, UErrorCode *status);
/external/webkit/Source/WebCore/dom/
H A DErrorEvent.cpp43 ErrorEvent::ErrorEvent(const String& message, const String& fileName, unsigned lineNumber) argument
46 , m_fileName(fileName)
55 void ErrorEvent::initErrorEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& message, const String& fileName, unsigned lineNumber) argument
63 m_fileName = fileName;
H A DErrorEvent.h45 static PassRefPtr<ErrorEvent> create(const String& message, const String& fileName, unsigned lineNumber) argument
47 return adoptRef(new ErrorEvent(message, fileName, lineNumber));
51 void initErrorEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& message, const String& fileName, unsigned lineNumber);
61 ErrorEvent(const String& message, const String& fileName, unsigned lineNumber);
/external/webkit/Source/WebKit/win/WebKit.vcproj/
H A DFixMIDLHeaders.pl46 my $fileName = $_;
48 return unless ($fileName =~ /IGEN_DOM(.*)\.h/);
50 open(IN, "<", $fileName);
54 open(OUT, ">", $fileName);
/external/webkit/Source/WebKit/android/
H A DRenderSkinAndroid.cpp57 bool RenderSkinAndroid::DecodeBitmap(android::AssetManager* am, const char* fileName, SkBitmap* bitmap) argument
59 android::Asset* asset = am->open(fileName, android::Asset::ACCESS_BUFFER);
61 asset = am->openNonAsset(fileName, android::Asset::ACCESS_BUFFER);
63 ALOGD("RenderSkinAndroid: File \"%s\" not found.\n", fileName);
70 ALOGD("RenderSkinAndroid: Failed to decode %s\n", fileName);
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
H A DANTLRFileStream.js7 * @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 DSoundHandleJme.java45 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/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
H A DFileInputStreamTest.java35 public String fileName; field in class:FileInputStreamTest
47 java.io.File f = new File(fileName);
56 FileOutputStream fos = new FileOutputStream(fileName);
66 is = new FileInputStream(fileName);
101 is = new FileInputStream(fileName);
113 is = new FileInputStream(fileName);
124 FileInputStream fis1 = new FileInputStream(fileName);
152 FileInputStream fis = new FileInputStream(fileName);
162 InputStreamReader isr = new InputStreamReader(new FileInputStream(fileName));
173 is = new FileInputStream(fileName);
[all...]
H A DOpenRandomFileTest.java44 String fileName = file.getCanonicalPath();
45 RandomAccessFile raf = new RandomAccessFile(fileName, "rw");
54 String fileName = file.getCanonicalPath();
55 RandomAccessFile raf = new RandomAccessFile(fileName, "rw");
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/generators/
H A DPlatformStatus.java24 private String fileName; field in class:PlatformStatus
32 this.fileName = (String) attributes.getNamedItem("fileName").getNodeValue();
49 return fileName;
/external/webkit/Source/JavaScriptCore/qt/api/
H A Dqscriptprogram.cpp55 fileName and \a firstLineNumber.
58 const QString fileName,
60 : d_ptr(new QScriptProgramPrivate(sourceCode, fileName, firstLineNumber))
106 QString QScriptProgram::fileName() const function in class:QScriptProgram
108 return d_ptr->fileName();
57 QScriptProgram(const QString& sourceCode, const QString fileName, int firstLineNumber) argument

Completed in 544 milliseconds

1234567891011>>