HomeSort by relevance Sort by last modified time
    Searched refs:fileName (Results 276 - 300 of 458) sorted by null

<<111213141516171819

  /external/svox/pico/lib/
picorsrc.c 282 static pico_status_t parse_resource_name(picoos_char * fileName)
284 PICODBG_DEBUG(("analysing file name %s",fileName));
285 if (picoos_has_extension(fileName,
537 picoos_char * fileName, picorsrc_Resource * resource)
564 if (PICO_OK != parse_resource_name(fileName)) {
572 PICODBG_DEBUG(("trying to open file %s",fileName));
573 if (!picoos_OpenBinary(this->common, &res->file, fileName)) {
576 PICODBG_ERROR(("can't open file %s",fileName));
578 NULL, (picoos_char *) "%s", fileName);
662 PICODBG_DEBUG(("done loading resource %s from %s", res->name, fileName));
    [all...]
  /external/webkit/WebCore/html/
HTMLFormElement.cpp 58 #include <wx/filename.h>
233 // if the current type is FILE, then we also need to include the filename
236 String fileName = value.file()->fileName();
238 // Let the application specify a filename if it's going to generate a replacement file for the upload.
244 fileName = generatedFileName;
248 // We have to include the filename=".." part in the header, even if the filename is empty
249 m_formDataBuilder.addFilenameToMultiPartHeader(header, encoding, fileName);
251 if (!fileName.isEmpty())
    [all...]
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
HandleHeap.java 237 * @param fileName name of output file (on device)
239 public static void sendHPDU(Client client, String fileName)
241 ByteBuffer rawBuf = allocBuffer(4 + fileName.length() * 2);
245 buf.putInt(fileName.length());
246 putString(buf, fileName);
249 Log.d("ddm-heap", "Sending " + name(CHUNK_HPDU) + " '" + fileName +"'");
251 client.getClientData().setPendingHprofDump(fileName);
264 * @param fileName name of output file (on device)
283 // get the filename and make the client not have pending HPROF dump anymore.
284 String filename = client.getClientData().getPendingHprofDump() local
    [all...]
  /external/emma/core/java12/com/vladium/emma/report/lcov/
ReportGenerator.java 185 final String fileName = item.getFullVMName();
192 + Descriptors.combineVMName(packageVMName, fileName)
307 + Descriptors.combineVMName(packageVMName, fileName)
  /external/emma/core/java12/com/vladium/util/
Property.java 108 final String fileName = Property.getSystemProperty (namespace + ".properties");
109 final File file = fileName != null
110 ? new File (fileName)
  /external/icu4c/test/intltest/
dcfmtest.cpp 169 DecimalFormatTest::getPath(char *buffer, const char *filename) {
175 strcat(buffer, filename);
435 UChar *DecimalFormatTest::ReadAndConvertFile(const char *fileName, int32_t &ulen,
450 f = fopen(fileName, "rb");
452 dataerrln("Error opening test data file %s\n", fileName);
484 // errln("Test data file %s is missing its BOM", fileName);
  /external/webkit/WebCore/inspector/front-end/
ProfileDataGridTree.js 99 var fileName = WebInspector.displayNameForURL(this.profileNode.url);
108 urlElement.textContent = fileName + ":" + this.profileNode.lineNumber;
110 urlElement.textContent = fileName;
  /dalvik/vm/
AllocTracker.c 304 const char* fileName = dvmGetMethodSourceFile(method);
305 if (fileName == NULL)
306 fileName = "";
307 return fileName;
  /dalvik/vm/oo/
Class.h 46 char* fileName;
  /development/simulator/app/
LogPrefsDialog.cpp 107 wxTextCtrl* fileName = (wxTextCtrl*) FindWindow(IDC_LOG_PREFS_FILENAME);
136 fileName->SetValue(mFileName);
179 wxTextCtrl* fileName = (wxTextCtrl*) FindWindow(IDC_LOG_PREFS_FILENAME);
214 mFileName = fileName->GetValue();
217 wxMessageBox(wxT("Log filename may not be blank"),
359 wxT("Filename:"),
  /external/chromium/third_party/icu/source/tools/gensprep/
store.c 588 char* fileName = (char*) uprv_malloc(uprv_strlen(bundleName) +100);
618 fileName[0]=0;
619 uprv_strcat(fileName,bundleName);
621 pData=udata_create(dataDir, DATA_TYPE, fileName, &dataInfo,
  /external/icu4c/tools/gensprep/
store.c 588 char* fileName = (char*) uprv_malloc(uprv_strlen(bundleName) +100);
618 fileName[0]=0;
619 uprv_strcat(fileName,bundleName);
621 pData=udata_create(dataDir, DATA_TYPE, fileName, &dataInfo,
  /external/webkit/WebCore/plugins/
PluginPackage.h 56 const String& fileName() const { return m_fileName; }
  /external/webkit/WebCore/plugins/qt/
PluginDataQt.cpp 72 info->file = package->fileName();
  /external/webkit/WebCore/storage/
Database.h 98 String fileName() const;
  /external/webkit/WebKitTools/android/webkitmerge/
webkitmerge.cpp 101 const char* fileName = fileNameStr.c_str();
102 FILE* file = fopen(fileName, "r");
105 fprintf(stderr, "can't read %s\n", fileName);
450 char* const GetAndroidDiffs(const char* dir, const char* filename)
455 filename, oldBase, dir, filename, diffsFile.c_str());
574 char* GetMakeAndExceptions(const char* dir, const char* filename, size_t* makeSize,
580 sprintf(scratch, "%s/%s/%s", sandboxBase, dir, filename);
583 do { // find first filename in makefile
638 do { // find first filename in makefil
    [all...]
  /frameworks/base/services/audioflinger/
AudioDumpInterface.cpp 290 if (mInterface->fileName() != "") {
292 sprintf(name, "%s_out_%d_%d.pcm", mInterface->fileName().string(), mId, ++mFileCount);
446 if (mInterface->fileName() != "") {
448 sprintf(name, "%s_in_%d_%d.pcm", mInterface->fileName().string(), mId, ++mFileCount);
  /packages/apps/Contacts/src/com/android/contacts/
ExportVCardActivity.java 107 public ExportConfirmationListener(String fileName) {
108 mFileName = fileName;
124 public ActualExportThread(String fileName) {
125 mExportingFileName = fileName;
365 * Tries to get an appropriate filename. Returns null if it fails.
  /external/srec/srec_jni/
android_speech_srec_Recognizer.cpp 94 (JNIEnv *env, jclass clazz, jstring fileName) {
95 // TODO: check for fileName NPE
96 const char* fn = env->GetStringUTFChars(fileName, 0);
98 env->ReleaseStringUTFChars(fileName, fn);
403 (JNIEnv *env, jclass clazz, jstring fileName) {
404 // TODO: check for fileName NPE
406 const char* fn = env->GetStringUTFChars(fileName, 0);
408 env->ReleaseStringUTFChars(fileName, fn);
413 (JNIEnv *env, jclass clazz, jint grammar, jstring fileName) {
414 const char* fn = env->GetStringUTFChars(fileName, 0)
438 char filename[P_PATH_MAX]; local
    [all...]
  /packages/apps/Email/src/com/android/exchange/adapter/
EmailSyncAdapter.java 341 String fileName = null;
350 fileName = getValue();
365 if ((fileName != null) && (length != null) && (location != null)) {
369 att.mFileName = fileName;
371 att.mMimeType = getMimeTypeFromFileName(fileName);
381 * @param fileName the file name to ponder
386 public String getMimeTypeFromFileName(String fileName) {
388 int lastDot = fileName.lastIndexOf('.');
390 if ((lastDot > 0) && (lastDot < fileName.length() - 1)) {
391 extension = fileName.substring(lastDot + 1).toLowerCase()
    [all...]
  /cts/tests/appsecurity-tests/src/com/android/cts/appsecurity/
AppSecurityTests.java 223 * Get the absolute file system location of test app with given filename
224 * @param fileName the file name of the test app apk
227 private String getTestAppFilePath(String fileName) {
228 return String.format("%s%s%s", getTestAppPath(), File.separator, fileName);
  /cts/tools/dx-tests/src/dxconvext/
ClassFileParser.java 64 String fileName = absSrcFilePath;
66 String pckPath = fileName.substring(srcDir.length() + 1);
  /external/icu4c/samples/layout/
paragraph.cpp 252 Paragraph *Paragraph::paragraphFactory(const char *fileName, const LEFontInstance *font, GUISupport *guiSupport)
256 const UChar *text = UnicodeReader::readFile(fileName, guiSupport, charCount);
  /external/srec/tools/grxmlcompile/
hashmap.cpp 156 void HashMap<T1,T2>::writeFile( std::string fileName )
159 outfile.open ( fileName.c_str() );
  /external/webkit/WebCore/bindings/v8/
WorkerContextExecutionProxy.cpp 188 ScriptValue WorkerContextExecutionProxy::evaluate(const String& script, const String& fileName, int baseLine, WorkerContextExecutionState* state)
198 v8::Handle<v8::Script> compiledScript = V8Proxy::compileScript(scriptString, fileName, baseLine);

Completed in 1530 milliseconds

<<111213141516171819