Searched defs:fileName (Results 1 - 25 of 213) sorted by relevance

123456789

/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/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 DGDIFontMap.cpp18 GDIFontMap::GDIFontMap(GDISurface *surface, const char *fileName, le_int16 pointSize, GUISupport *guiSupport, LEErrorCode &status) argument
19 : FontMap(fileName, pointSize, guiSupport, status), fSurface(surface)
H A DGnomeFontMap.cpp20 GnomeFontMap::GnomeFontMap(FT_Library engine, const char *fileName, le_int16 pointSize, GUISupport *guiSupport, LEErrorCode &status) argument
21 : FontMap(fileName, pointSize, guiSupport, status), fEngine(engine)
H A DUnicodeReader.cpp26 const UChar *UnicodeReader::readFile(const char *fileName, GUISupport *guiSupport, int32_t &charCount) argument
38 f = fopen(fileName, "rb");
41 sprintf(errorMessage,"Couldn't open %s: %s \n", fileName, strerror(errno));
74 sprintf(errorMessage, "Couldn't detect the encoding of %s: (%2.2X, %2.2X, %2.2X, %2.2X)\n", fileName,
86 sprintf(errorMessage,"Couldn't get memory for reading %s: %s \n", fileName, strerror(errno));
94 sprintf(errorMessage,"Couldn't read %s: %s \n", fileName, strerror(errno));
109 sprintf(errorMessage,"Couldn't get memory for reading %s: %s \n", fileName, strerror(errno));
/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/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/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/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/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/dexmaker/src/dx/java/com/android/dx/util/
H A DFileUtils.java38 * @param fileName {@code non-null;} name of the file to read
41 public static byte[] readFile(String fileName) { argument
42 File file = new File(fileName);
94 * Returns true if {@code fileName} names a .zip, .jar, or .apk.
96 public static boolean hasArchiveSuffix(String fileName) { argument
97 return fileName.endsWith(".zip")
98 || fileName.endsWith(".jar")
99 || fileName.endsWith(".apk");
/external/guava/guava/src/com/google/common/io/
H A DPatternFilenameFilter.java59 @Override public boolean accept(@Nullable File dir, String fileName) { argument
60 return pattern.matcher(fileName).matches();
/external/webkit/Source/WebKit/chromium/src/
H A DWebPluginListBuilderImpl.cpp42 void WebPluginListBuilderImpl::addPlugin(const WebString& name, const WebString& description, const WebString& fileName) argument
47 info.file = fileName;
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/
H A DInterp.java109 public static String getTestsuiteDir(String fullPath, String fileName) { argument
110 return fullPath.substring(0, fullPath.length()-fileName.length());
/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/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/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/junit/src/org/junit/rules/
H A DTemporaryFolder.java51 public File newFile(String fileName) throws IOException { argument
52 File file= new File(getRoot(), fileName);
/external/qemu/android/utils/
H A Dassert.c31 _android_assert_loc( const char* fileName, argument
37 loc->file = fileName;
/external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
H A DFileUtils.java47 * @param fileName non-null; name of the file to read
50 public static byte[] readFile(String fileName) argument
52 File file = new File(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
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/
H A DMMap.h16 TMMap(const char* fileName) : argument
21 if ((fp = fopen(fileName, "r")) == NULL)
/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/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);

Completed in 1182 milliseconds

123456789