/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/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 | GDIFontMap.cpp | 18 GDIFontMap::GDIFontMap(GDISurface *surface, const char *fileName, le_int16 pointSize, GUISupport *guiSupport, LEErrorCode &status) argument 19 : FontMap(fileName, pointSize, guiSupport, status), fSurface(surface)
|
/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/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/testng/src/main/java/org/testng/internal/ |
H A D | PropertiesFile.java | 22 * @param fileName properties file path
25 public PropertiesFile(String fileName) throws IOException
argument 32 fis = new FileInputStream(new File(fileName));
|
H A D | YamlParser.java | 23 public boolean accept(String fileName) { argument 24 return fileName.endsWith(".yaml");
|
/external/testng/src/main/java/org/testng/xml/ |
H A D | ISuiteParser.java | 5 boolean accept(String fileName); argument
|
H A D | SuiteXmlParser.java | 25 public boolean accept(String fileName) { argument 26 return fileName.endsWith(".xml");
|
/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/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/deqp/framework/randomshaders/ |
H A D | rsgTest.cpp | 72 string fileName = string("test-") + de::toString(seed) + ".png"; local 73 tcu::ImageIO::savePNG(surface.getAccess(), fileName.c_str()); 74 std::cout << fileName << " written\n"; local
|
/external/dexmaker/src/dx/java/com/android/dx/util/ |
H A D | FileUtils.java | 38 * @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 D | PatternFilenameFilter.java | 59 @Override public boolean accept(@Nullable File dir, String fileName) { argument 60 return pattern.matcher(fileName).matches();
|
/external/jacoco/org.jacoco.report/src/org/jacoco/report/ |
H A D | ISourceFileLocator.java | 28 * @param fileName 34 public Reader getSourceFile(String packageName, String fileName) argument
|
/external/lzma/CPP/7zip/UI/Common/ |
H A D | DefaultName.cpp | 7 static UString GetDefaultName3(const UString &fileName,
argument 11 int fileNameLength = fileName.Len();
15 if (fileName[dotPos] == '.')
16 if (extension.IsEqualToNoCase(fileName.Ptr(dotPos + 1)))
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/testng/src/test/java/org/testng/xml/ |
H A D | SuiteXmlParserTest.java | 27 public void testParse(String fileName, boolean shouldWork) { argument 30 try (FileInputStream stream = new FileInputStream(new File(PARENT, fileName))) { 31 parser.parse(fileName, stream, false); 33 Assert.fail("Parsing of " + fileName + " is supposed to fail"); 37 Assert.fail("Parsing of " + fileName + " is supposed to work");
|
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/ |
H A D | Interp.java | 109 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 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/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/clang/lib/StaticAnalyzer/Frontend/ |
H A D | ModelInjector.cpp | 53 llvm::SmallString<128> fileName; local 56 fileName = 59 fileName = llvm::StringRef(D->getName().str() + ".model"); 61 if (!llvm::sys::fs::exists(fileName.str())) { 72 FrontendOpts.Inputs.emplace_back(fileName, IK);
|
/external/deqp/framework/delibs/deutil/ |
H A D | deDynamicLibrary.c | 37 deDynamicLibrary* deDynamicLibrary_open (const char* fileName) argument 43 library->libHandle = dlopen(fileName, RTLD_LAZY); 86 deDynamicLibrary* deDynamicLibrary_open (const char* fileName) argument 92 library->handle = LoadLibrary(fileName);
|
/external/deqp/modules/gles2/functional/ |
H A D | es2fShaderExecuteTest.cpp | 57 string fileName = string("shaders/") + getName() + ".test"; local 58 vector<TestNode*> children = shaderLibrary.loadShaderFile(fileName.c_str());
|
/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;
|