/frameworks/base/core/jni/ |
android_os_Debug.cpp | 890 jint pid, jstring fileName) 892 if (fileName == NULL) { 896 const jchar* str = env->GetStringCritical(fileName, 0); 899 fileName8 = String8(str, env->GetStringLength(fileName)); 900 env->ReleaseStringCritical(fileName, str);
|
/libcore/luni/src/main/java/java/util/ |
ResourceBundle.java | 514 String fileName = bundleName.replace('.', '/') + ".properties"; 516 ? loader.getResourceAsStream(fileName) 517 : ClassLoader.getSystemResourceAsStream(fileName); [all...] |
Formatter.java | 668 * @param fileName 669 * the filename of the file that is used as the output 674 * if the filename does not denote a normal and writable file, 678 public Formatter(String fileName) throws FileNotFoundException { 679 this(new File(fileName)); 689 * @param fileName 690 * the filename of the file that is used as the output 697 * if the filename does not denote a normal and writable file, 703 public Formatter(String fileName, String csn) throws FileNotFoundException, 705 this(new File(fileName), csn) [all...] |
/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/net/ |
URLConnectionTest.java | 629 public String getContentTypeFor(String fileName) { 640 // RI fails since it does not support fileName that does not begin with [all...] |
/dalvik/vm/oo/ |
Class.cpp | 517 ALOGI(" %2d: type=%s %s %p", idx, kindStr, cpe->fileName, cpe->ptr); 543 if (strcmp(cpe->fileName, path) == 0) 578 free(cpe->fileName); 586 * Get the filename suffix of the given file (everything after the 590 static void getFileNameSuffix(const char* fileName, char* suffixBuf, size_t suffixBufLen) 592 const char* lastDot = strrchr(fileName, '.'); 599 * filename. We need to figure out what kind of file it is, and for 607 if (stat(cpe->fileName, &sb) < 0) { 608 ALOGD("Unable to stat classpath element '%s'", cpe->fileName); 612 ALOGE("Directory classpath elements are not supported: %s", cpe->fileName); [all...] |
/external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/jar/ |
ManifestTest.java | 59 private Manifest getManifest(String fileName) { 61 Support_Resources.copyFile(resources, null, fileName); 62 JarFile jarFile = new JarFile(new File(resources, fileName));
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/ |
URLConnectionTest.java | 80 static String getContentType(String fileName) throws IOException { 81 String resourceName = "org/apache/harmony/luni/tests/" + fileName; 354 public String getContentTypeFor(String fileName) { 365 // RI fails since it does not support fileName that does not begin with
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/121/1/.cp/lib/ |
apitooling-ant.jar | |
/external/emma/core/java12/com/vladium/emma/rt/ |
AppRunner.java | 186 * @param fileName [null unsets the previous override setting] 188 public synchronized final void setSessionOutFile (final String fileName) 190 if (fileName == null) 194 final File _file = new File (fileName); [all...] |
/libcore/luni/src/test/java/tests/api/javax/xml/parsers/ |
SAXParserTestSupport.java | 92 public HashMap<String, String> readFile(String fileName) { 96 InputStream is = new FileInputStream(fileName); 128 + fileName);
|
/external/chromium_org/third_party/WebKit/Source/bindings/scripts/ |
idl_parser.pm | 38 fileName => '$', # file name 178 my $fileName = shift; 184 my @lines = applyPreprocessor($fileName, $defines, $preprocessor); 196 die $@ . " in $fileName" if $@; 199 $document->fileName($fileName); [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.eclipse.equinox.p2.touchpoint.natives_1.0.200.v20100503a.jar | |
/external/nist-pkits/src/libcore/java/security/cert/ |
X509CertificateNistPkitsTest.java | 71 final String fileName = "nist-pkits/certs/" + name; 72 final InputStream is = getStream(fileName); 73 assertNotNull("File does not exist: " + fileName, is); 96 final String fileName = "nist-pkits/crls/" + name; 97 final InputStream is = getStream(fileName); 98 assertNotNull("File does not exist: " + fileName, is); [all...] |
/cts/hostsidetests/appsecurity/src/com/android/cts/appsecurity/ |
AppSecurityTests.java | 115 private File getTestAppFile(String fileName) throws FileNotFoundException { 116 return mCtsBuild.getTestApp(fileName);
|
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/ |
JUnitCodeGen.java | 312 protected void writeTestFile(String dir, String fileName, String content) { 314 File f = new File(dir, fileName);
|
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Delphi/ |
Delphi.stg | 73 * fileName (String): fully qualified name of original .g file 86 fileName, ANTLRVersion, generatedTimestamp, trace, 93 // $ANTLR <ANTLRVersion> <fileName> <generatedTimestamp> 208 Result := '<fileName>'; 434 Result := '<fileName>'; 641 (* <fileName>:<description> *) 901 (* <fileName>:<description> *) 916 (* <fileName>:<description> *) 928 (* <fileName>:<description> *) 937 (* <fileName>:<description> * [all...] |
/external/chromium_org/third_party/WebKit/Source/web/tests/ |
ScrollingCoordinatorChromiumTest.cpp | 112 void registerMockedHttpURLLoad(const std::string& fileName) 114 URLTestHelpers::registerMockedURLFromBaseURL(WebString::fromUTF8(m_baseURL.c_str()), WebString::fromUTF8(fileName.c_str()));
|
/external/chromium_org/v8/tools/ |
tickprocessor.js | 50 function readFile(fileName) { 52 return read(fileName); 54 print(fileName + ': ' + (e.message || e)); 136 SnapshotLogProcessor.prototype.processLogFile = function(fileName) { 137 var contents = readFile(fileName); 299 TickProcessor.prototype.processLogFile = function(fileName) { 300 this.lastLogFileName_ = fileName; 308 TickProcessor.prototype.processLogFileInTest = function(fileName) { 311 var contents = readFile(fileName);
|
/external/llvm/lib/Target/NVPTX/ |
NVPTXAsmPrinter.cpp | 285 StringRef fileName(Scope.getFilename()); 288 if (!dirName.empty() && !sys::path::is_absolute(fileName)) { 289 sys::path::append(FullPathName, fileName); 290 fileName = FullPathName.str(); 293 if (filenameMap.find(fileName.str()) == filenameMap.end()) 298 this->emitSrcInText(fileName.str(), curLoc.getLine()); 301 temp << "\t.loc " << filenameMap[fileName.str()] << " " << curLoc.getLine() 826 StringRef Filename(DIUnit.getFilename()); 829 if (!Dirname.empty() && !sys::path::is_absolute(Filename)) { 830 sys::path::append(FullPathName, Filename); [all...] |
/external/svox/pico/lib/ |
picoos.h | 391 Opens sampled data file 'fileName' for input and returns 396 If 'fileName' is empty, the input is taken from the direct 413 extern picoos_bool picoos_sdfOpenIn (picoos_Common g, picoos_SDFile * sdFile, picoos_char fileName[], picoos_uint32 * sf, picoos_encoding_t * enc, picoos_uint32 * nrSamples); 424 extern picoos_bool picoos_sdfOpenOut (picoos_Common g, picoos_SDFile * sdFile, picoos_char fileName[], int sf, picoos_encoding_t enc);
|
/external/valgrind/main/coregrind/m_debuginfo/ |
priv_storage.h | 110 UChar* filename; /* source filename */ member in struct:__anon27707 398 UChar* fileName; /* where declared; may be NULL. in 454 UChar* filename; /* in mallocville (VG_AR_DINFO) */ member in struct:_DebugInfoFSM 511 both a rw? and r?x mapping for .filename have been observed -- 823 UChar* filename, 842 UChar* fileName, /* where decl'd - may be NULL */ [all...] |
/frameworks/base/media/jni/mediaeditor/ |
VideoBrowserMain.c | 543 M4OSA_Char* fileName = "/sdcard/textBuffer_RGB565.rgb"; 544 M4OSA_fileWriteOpen(&fileContext, (M4OSA_Void*) fileName,
|
/libcore/support/src/test/java/org/apache/harmony/security/tests/support/cert/ |
TestUtils.java | 161 String fileName = keyStoreFileName + testKeyStoreType; 162 ks.load(Support_Resources.getResourceStream(fileName), [all...] |
/packages/apps/Email/tests/src/com/android/emailcommon/utility/ |
UtilityUnitTests.java | 201 String dir, String fileName) throws Exception { 203 Utility.createUniqueFileInternal(nfc, new File(dir), fileName).toString());
|
/packages/apps/Settings/src/com/android/settings/deviceinfo/ |
StorageMeasurement.java | 514 FileInfo(String fileName, long size, long id) { 515 mFileName = fileName;
|