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

<<111213141516171819

  /external/icu4c/test/letest/
PortableFontInstance.h 69 PortableFontInstance(const char *fileName, float pointSize, LEErrorCode &status);
FontObject.cpp 14 FontObject::FontObject(char *fileName)
20 file = fopen(fileName, "rb");
23 printf("?? Couldn't open %s", fileName);
  /external/icu4c/tools/ctestfw/unicode/
uperf.h 153 const char* fileName;
  /external/webkit/JavaScriptCore/qt/api/
qscriptengine_p.h 40 QScriptValuePrivate* evaluate(const QString& program, const QString& fileName, int lineNumber);
  /external/webkit/WebCore/loader/
ImageDocument.cpp 150 // Compute the title, we use the decoded filename of the resource, falling
152 String fileName = decodeURLEscapeSequences(m_doc->url().lastPathComponent());
153 if (fileName.isEmpty())
154 fileName = m_doc->url().host();
155 m_doc->setTitle(imageTitle(fileName, size));
  /external/webkit/WebCore/plugins/mac/
PluginPackageMac.cpp 73 static WTF::RetainPtr<CFDictionaryRef> readPListFile(CFStringRef fileName, bool createFile, CFBundleRef bundle)
84 CFURLCreateWithFileSystemPath(kCFAllocatorDefault, fileName, kCFURLPOSIXPathStyle, false);
143 WTF::RetainPtr<CFStringRef> fileName = (CFStringRef)mimeTypesFileName.get();
145 WTF::RetainPtr<CFStringRef> path = CFStringCreateWithFormat(0, 0, CFSTR("%@/Library/Preferences/%@"), homeDir.get(), fileName.get());
  /external/webkit/WebKit/qt/Api/
qwebdatabase.cpp 46 file in the local file system is returned by fileName(). You can access the database directly
136 sqldb.setDatabaseName(webdb.fileName());
146 QString QWebDatabase::fileName() const
  /frameworks/base/include/utils/
AssetDir.h 128 const String8& fileName);
131 String8 mFileName; // filename only
ZipFileRO.h 56 * filename, so we don't need to extract those (but we do need to byte-read
91 ZipEntryRO findEntryByName(const char* fileName) const;
115 * Copy the filename into the supplied buffer. Returns 0 on success,
116 * -1 if "entry" is invalid, or the filename length if it didn't fit. The
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
HandleThread.java 233 String className, methodName, fileName;
242 fileName = null;
244 fileName = getString(data, len);
248 trace[i] = new StackTraceElement(className, methodName, fileName,
  /cts/tests/tests/os/src/android/os/cts/
ParcelFileDescriptorTest.java 211 final String fileName = "testParcelFileDescriptor";
215 fout = con.openFileOutput(fileName, Context.MODE_WORLD_WRITEABLE);
224 File file = new File(dir, fileName);
  /dalvik/vm/hprof/
HprofOutput.c 62 * This will take ownership of "fileName".
65 hprofContextInit(hprof_context_t *ctx, char *fileName, int fd,
83 ctx->fileName = fileName;
  /external/chromium/third_party/icu/source/test/letest/
FontObject.cpp 14 FontObject::FontObject(char *fileName)
20 file = fopen(fileName, "rb");
23 printf("?? Couldn't open %s", fileName);
  /external/chromium/third_party/icu/source/tools/gencfu/
gencfu.cpp 122 static const char *readFile(const char *fileName, int32_t *len);
301 static const char *readFile(const char *fileName, int32_t *len) {
306 file = fopen(fileName, "rb");
  /external/emma/core/java12/com/vladium/emma/data/
MergeProcessor.java 61 * @param fileName [null unsets the previous override setting]
63 public synchronized final void setSessionOutFile (final String fileName)
65 if (fileName == null)
69 final File _file = new File (fileName);
  /external/emma/core/java12/com/vladium/emma/instr/
InstrProcessor.java 84 * @param fileName [null unsets the previous override setting]
86 public synchronized final void setMetaOutFile (final String fileName)
88 if (fileName == null)
92 final File _file = new File (fileName);
  /external/icu4c/tools/gencfu/
gencfu.cpp 122 static const char *readFile(const char *fileName, int32_t *len);
302 static const char *readFile(const char *fileName, int32_t *len) {
307 file = fopen(fileName, "rb");
  /frameworks/base/core/java/android/ddm/
DdmHandleHeap.java 160 /* get the filename for the output file */
162 String fileName = getString(in, len);
164 Log.d("ddm-heap", "Heap dump: file='" + fileName + "'");
167 Debug.dumpHprofData(fileName);
194 /* get the filename for the output file */
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
FileClientSessionCache.java 123 private static String fileName(String host, int port) {
137 String name = fileName(host, port);
193 String name = fileName(host, session.getPeerPort());
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/export/
KeystoreSelectionPage.java 98 String fileName = fileDialog.open();
99 if (fileName != null) {
100 mKeystore.setText(fileName);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newxmlfile/
NewXmlFileCreationPage.java 388 * Returns the destination filename or an empty string.
407 * Returns null if the project, filename or folder are invalid and the destination file
415 String fileName = getFileName();
416 if (project != null && wsFolderPath.length() > 0 && fileName.length() > 0) {
417 IPath dest = new Path(wsFolderPath).append(fileName);
506 * Creates the project & filename fields.
682 * <li>An existing filename, in which case the user will be asked whether to override it.</li>
717 String fileName = null;
721 fileName = res.getName();
732 fileName = null
    [all...]
  /frameworks/base/tools/aapt/
AaptAssets.cpp 27 * - the filename length must be less than kMaxAssetFileName bytes long
32 * Pass in just the filename, not the full path.
34 static bool validateFileName(const char* fileName)
36 const char* cp = fileName;
704 bool AaptGroupEntry::getLocaleName(const char* fileName,
707 if (strcmp(fileName, kWildcardName) == 0
708 || strcmp(fileName, kDefaultLocale) == 0) {
718 if (strlen(fileName) == 2 && isalpha(fileName[0]) && isalpha(fileName[1]))
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppNotification.java 235 String fileName = cursor.getString(dataIndex);
236 if (fileName == null) {
237 fileName = cursor.getString(filenameHintIndex);
239 if (fileName == null) {
240 fileName = mContext.getString(R.string.unknown_file);
254 item.description = mContext.getString(R.string.notification_sending, fileName);
257 .getString(R.string.notification_receiving, fileName);
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/explorer/
DeviceExplorer.java 505 String fileName = fileDialog.open();
506 if (fileName != null) {
509 pullFile(singleEntry, fileName);
540 String fileName;
554 fileName = dlg.open();
555 if (fileName != null) {
568 pushFile(fileName, remotePath);
  /dalvik/vm/analysis/
DexPrepare.c 82 int dvmOpenCachedDexFile(const char* fileName, const char* cacheFileName,
205 fileName, cacheFileName);
281 * "fileName" is only used for debug output. "modWhen" and "crc" are stored
298 const char* fileName, u4 modWhen, u4 crc, bool isBootstrap)
300 const char* lastPart = strrchr(fileName, '/');
304 lastPart = fileName;
315 LOGW("Rejecting recursive optimization attempt on '%s'\n", fileName);
379 argv[curArg++] = (char*)fileName;
410 argv[curArg++] = cpe->fileName;
475 const char* fileName, u4 modWhen, u4 crc, bool isBootstrap
    [all...]

Completed in 760 milliseconds

<<111213141516171819