Searched defs:fileName (Results 1 - 25 of 351) 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/protobuf/objectivec/google/protobuf/
H A DSourceContext.pbobjc.h44 @property(nonatomic, readwrite, copy, null_resettable) NSString *fileName; variable
/external/icu/icu4c/source/samples/layout/
H A Ducreader.cpp18 const UChar *uc_readFile(const char *fileName, gs_guiSupport *guiSupport, int32_t *charCount) argument
20 return UnicodeReader::readFile(fileName, (GUISupport *) guiSupport, *charCount);
/external/deqp/framework/delibs/decpp/
H A DdeDynamicLibrary.cpp32 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 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/testng/src/main/java/org/testng/internal/
H A DPropertiesFile.java22 * @param fileName properties file path
25 public PropertiesFile(String fileName) throws IOException argument
32 fis = new FileInputStream(new File(fileName));
H A DYamlParser.java23 public boolean accept(String fileName) { argument
24 return fileName.endsWith(".yaml");
/external/testng/src/main/java/org/testng/xml/
H A DISuiteParser.java5 boolean accept(String fileName); argument
H A DSuiteXmlParser.java25 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 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/deqp/framework/randomshaders/
H A DrsgTest.cpp72 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/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/jacoco/org.jacoco.report/src/org/jacoco/report/
H A DISourceFileLocator.java28 * @param fileName
34 public Reader getSourceFile(String packageName, String fileName) argument
/external/libmojo/base/android/java/src/org/chromium/base/
H A DApkAssets.java27 public static long[] open(Context context, String fileName) { argument
31 afd = manager.openNonAssetFd(fileName);
46 if (!e.getMessage().equals("") && !e.getMessage().equals(fileName)) {
47 Log.e(LOGTAG, "Error while loading asset " + fileName + ": " + e);
H A DImportantFileWriterAndroid.java21 * @param fileName The complete path of the file to be written
25 public static boolean writeFileAtomically(String fileName, byte[] data) { argument
26 return nativeWriteFileAtomically(fileName, data);
30 String fileName, byte[] data);
29 nativeWriteFileAtomically( String fileName, byte[] data) argument
/external/lzma/CPP/7zip/UI/Common/
H A DDefaultName.cpp7 static UString GetDefaultName3(const UString &fileName, argument
11 const unsigned fileNameLen = fileName.Len();
16 if (fileName[dotPos] == '.')
17 if (extension.IsEqualTo_NoCase(fileName.Ptr(dotPos + 1)))
18 return fileName.Left(dotPos) + addSubExtension;
21 int dotPos = fileName.ReverseFind_Dot();
23 return fileName.Left(dotPos) + addSubExtension;
26 return fileName + L'~';
28 return fileName + addSubExtension;
31 UString GetDefaultName2(const UString &fileName, argument
[all...]
/external/testng/src/test/java/org/testng/xml/
H A DSuiteXmlParserTest.java27 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 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/apache-http/android/src/com/android/internal/http/multipart/
H A DByteArrayPartSource.java47 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 DFilePartSource.java55 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 DModelInjector.cpp53 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 DdeDynamicLibrary.c37 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 Des2fShaderExecuteTest.cpp57 string fileName = string("shaders/") + getName() + ".test"; local
58 vector<TestNode*> children = shaderLibrary.loadShaderFile(fileName.c_str());

Completed in 693 milliseconds

1234567891011>>