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

1234567891011

/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/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/chromium_org/base/android/java/src/org/chromium/base/
H A DImportantFileWriterAndroid.java19 * @param fileName The complete path of the file to be written
23 public static boolean writeFileAtomically(String fileName, byte[] data) { argument
24 return nativeWriteFileAtomically(fileName, data);
28 String fileName, byte[] data);
27 nativeWriteFileAtomically( String fileName, byte[] data) argument
/external/chromium_org/third_party/WebKit/Source/platform/plugins/
H A DPluginListBuilder.cpp38 void PluginListBuilder::addPlugin(const blink::WebString& name, const blink::WebString& description, const blink::WebString& fileName) argument
43 info.file = fileName;
/external/chromium_org/third_party/WebKit/Source/web/tests/
H A DWebImageTest.cpp46 static PassRefPtr<SharedBuffer> readFile(const char* fileName) argument
50 filePath.append(fileName);
H A DJPEGImageDecoderTest.cpp52 PassRefPtr<SharedBuffer> readFile(const char* fileName) argument
55 filePath.append(fileName);
H A DProgrammaticScrollTest.cpp42 void registerMockedHttpURLLoad(const std::string& fileName) argument
44 URLTestHelpers::registerMockedURLFromBaseURL(WebString::fromUTF8(m_baseURL.c_str()), WebString::fromUTF8(fileName.c_str()));
H A DURLTestHelpers.cpp42 void registerMockedURLFromBaseURL(const WebString& baseURL, const WebString& fileName, const WebString& mimeType) argument
44 // fullURL = baseURL + fileName.
45 std::string fullString = std::string(baseURL.utf8().data()) + std::string(fileName.utf8().data());
46 registerMockedURLLoad(toKURL(fullString.c_str()), fileName, WebString::fromUTF8(""), mimeType); local
49 void registerMockedURLLoad(const WebURL& fullURL, const WebString& fileName, const WebString& mimeType) argument
51 registerMockedURLLoad(fullURL, fileName, WebString::fromUTF8(""), mimeType);
54 void registerMockedURLLoad(const WebURL& fullURL, const WebString& fileName, const WebString& relativeBaseDirectory, const WebString& mimeType) argument
61 // Physical file path for the mock = <webkitRootDir> + relativeBaseDirectory + fileName.
65 filePath.append(std::string(fileName.utf8().data()));
/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/lzma/CPP/7zip/UI/Common/
H A DDefaultName.cpp7 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...]
/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/chromium_org/base/test/android/javatests/src/org/chromium/base/test/util/
H A DTestFileUtil.java51 * @param fileName the file to read in.
57 public static char[] readUtf8File(String fileName, int sizeLimit) throws argument
61 File f = new File(fileName);
63 throw new IOException("File " + fileName + " length " + f.length() +
/external/chromium_org/third_party/WebKit/Source/core/events/
H A DErrorEvent.cpp62 ErrorEvent::ErrorEvent(const String& message, const String& fileName, unsigned lineNumber, unsigned columnNumber, PassRefPtr<DOMWrapperWorld> world) argument
65 , m_fileName(fileName)
/external/chromium_org/third_party/angle/src/compiler/
H A DMMap.h16 TMMap(const char* fileName) : argument
21 if ((fp = fopen(fileName, "r")) == NULL)
/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);

Completed in 1005 milliseconds

1234567891011