HomeSort by relevance Sort by last modified time
    Searched refs:fileName (Results 76 - 100 of 1218) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/libphonenumber/java/src/com/android/i18n/phonenumbers/prefixmapper/
PrefixFileReader.java 67 String fileName = mappingFileProvider.getFileName(prefixMapKey, language, script, region);
68 if (fileName.length() == 0) {
71 if (!availablePhonePrefixMaps.containsKey(fileName)) {
72 loadPhonePrefixMapFromFile(fileName);
74 return availablePhonePrefixMaps.get(fileName);
77 private void loadPhonePrefixMapFromFile(String fileName) {
79 PrefixFileReader.class.getResourceAsStream(phonePrefixDataDirectory + fileName);
85 availablePhonePrefixMaps.put(fileName, map);
  /external/lzma/CPP/Windows/
FileIO.cpp 106 bool CFileBase::Create(LPCTSTR fileName, DWORD desiredAccess,
111 _handle = ::CreateFile(fileName, desiredAccess, shareMode,
118 if (GetLongPath(fileName, longPath))
131 bool CFileBase::Create(LPCWSTR fileName, DWORD desiredAccess,
135 return Create(UnicodeStringToMultiByte(fileName, ::AreFileApisANSI() ? CP_ACP : CP_OEMCP),
139 _handle = ::CreateFileW(fileName, desiredAccess, shareMode,
146 if (GetLongPath(fileName, longPath))
281 IsDeviceFile = IsDeviceName(fileName); \
287 bool CInFile::Open(LPCTSTR fileName, DWORD shareMode, DWORD creationDisposition, DWORD flagsAndAttributes)
289 bool res = Create(fileName, GENERIC_READ, shareMode, creationDisposition, flagsAndAttributes);
    [all...]
DLL.h 43 bool LoadEx(LPCTSTR fileName, DWORD flags = LOAD_LIBRARY_AS_DATAFILE);
44 bool Load(LPCTSTR fileName);
46 bool LoadEx(LPCWSTR fileName, DWORD flags = LOAD_LIBRARY_AS_DATAFILE);
47 bool Load(LPCWSTR fileName);
  /external/proguard/src/proguard/gui/
ExtensionFileFilter.java 66 String fileName = file.getName().toLowerCase();
70 if (fileName.endsWith(extensions[index]))
  /packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/utils/
file_utils.h 39 static int getFilePathBufSize(const char *const dirPath, const char *const fileName);
41 static void getFilePath(const char *const dirPath, const char *const fileName,
  /dalvik/tools/dexdeps/src/com/android/dexdeps/
Main.java 57 for (String fileName : mInputFileNames) {
58 RandomAccessFile raf = openInputFile(fileName);
64 Output.generateFirstHeader(fileName, mOutputFormat);
66 Output.generateHeader(fileName, mOutputFormat);
92 * @param fileName the name of the file to open
94 RandomAccessFile openInputFile(String fileName) throws IOException {
97 raf = openInputFileAsZip(fileName);
99 File inputFile = new File(fileName);
110 * @param fileName the name of the file to open
116 RandomAccessFile openInputFileAsZip(String fileName) throws IOException
    [all...]
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
FatLfnDirectoryEntry.java 46 private String fileName;
54 this.fileName = name;
64 FatDirectoryEntry realEntry, String fileName) {
70 this.fileName = fileName;
77 final String fileName;
81 fileName = realEntry.getShortName().asSimpleString();
91 fileName = name.toString().trim();
94 return new FatLfnDirectoryEntry(dir, realEntry, fileName);
197 int result = (fileName.length() / 13) + 1
    [all...]
  /cts/common/device-side/util/src/com/android/compatibility/common/util/
FileCopyHelper.java 54 * Copy the file from the resources with a filename.
57 * @param fileName the file name
62 public String copy(int resId, String fileName) throws IOException {
64 OutputStream target = mContext.openFileOutput(fileName, Context.MODE_WORLD_READABLE);
66 mFilesList.add(fileName);
67 return mContext.getFileStreamPath(fileName).getAbsolutePath();
  /cts/libs/deviceutil/src/android/cts/util/
FileCopyHelper.java 54 * Copy the file from the resources with a filename .
57 * @param fileName the file name
62 public String copy(int resId, String fileName) throws IOException {
64 OutputStream target = mContext.openFileOutput(fileName, Context.MODE_WORLD_READABLE);
66 mFilesList.add(fileName);
67 return mContext.getFileStreamPath(fileName).getAbsolutePath();
  /cts/tools/vm-tests-tf/src/util/build/
DexBuildStep.java 39 args.fileNames = new String[] {inputFile.fileName.getAbsolutePath()};
41 args.outName = outputFile.fileName.getAbsolutePath();
53 inputFile.fileName.delete();
58 + inputFile.fileName.getAbsolutePath() + " to "
  /dalvik/libdex/
CmdUtils.h 63 UnzipToFileResult dexOpenAndMap(const char* fileName, const char* tempFileName,
  /external/chromium_org/third_party/icu/source/samples/layout/
GDIFontMap.h 27 GDIFontMap(GDISurface *surface, const char *fileName, le_int16 pointSize, GUISupport *guiSupport, LEErrorCode &status);
GnomeFontMap.h 27 GnomeFontMap(FT_Library engine, const char *fileName, le_int16 pointSize, GUISupport *guiSupport, LEErrorCode &status);
  /external/chromium_org/third_party/libvpx/source/libvpx/third_party/libwebm/
mkvreader.cpp 27 int MkvReader::Open(const char* fileName) {
28 if (fileName == NULL)
35 const errno_t e = fopen_s(&m_file, fileName, "rb");
40 m_file = fopen(fileName, "rb");
  /external/chromium_org/third_party/skia/tools/lua/
chars-vs-glyphs.lua 3 function sk_scrape_startcanvas(c, fileName)
7 function sk_scrape_endcanvas(c, fileName)
  /external/chromium_org/third_party/webrtc/modules/audio_coding/main/test/
TimedTrace.h 27 int16_t SetUp(char* fileName);
  /external/deqp/framework/delibs/decpp/
deDynamicLibrary.hpp 38 DynamicLibrary (const char* fileName);
  /external/icu/icu4c/source/samples/layout/
GDIFontMap.h 27 GDIFontMap(GDISurface *surface, const char *fileName, le_int16 pointSize, GUISupport *guiSupport, LEErrorCode &status);
GnomeFontMap.h 27 GnomeFontMap(FT_Library engine, const char *fileName, le_int16 pointSize, GUISupport *guiSupport, LEErrorCode &status);
  /external/libvpx/libvpx/third_party/libwebm/
mkvreader.cpp 33 int MkvReader::Open(const char* fileName)
35 if (fileName == NULL)
42 const errno_t e = fopen_s(&m_file, fileName, "rb");
47 m_file = fopen(fileName, "rb");
  /external/skia/tools/lua/
chars-vs-glyphs.lua 3 function sk_scrape_startcanvas(c, fileName)
7 function sk_scrape_endcanvas(c, fileName)
  /frameworks/native/opengl/tests/gl_perfapp/jni/
gl_code.cpp 75 const char* fileName = "/sdcard/glperf.csv";
81 ALOGI("Writing to: %s\n",fileName);
82 fOut = fopen(fileName, "w");
84 ALOGE("Could not open: %s\n", fileName);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/libwebm/
mkvreader.cpp 26 int MkvReader::Open(const char* fileName)
28 if (fileName == NULL)
35 const errno_t e = fopen_s(&m_file, fileName, "rb");
40 m_file = fopen(fileName, "rb");
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/debug/
DumpFileProvider.java 80 final String fileName = extractFileName(uri);
81 DataExporter.ensureValidFileName(fileName);
82 final File file = DataExporter.getOutputFile(getContext(), fileName);
93 final String fileName = extractFileName(uri);
94 DataExporter.ensureValidFileName(fileName);
109 b.add(fileName);
111 final File file = DataExporter.getOutputFile(getContext(), fileName);
  /external/chromium_org/third_party/webrtc/modules/media_file/source/
media_file_impl.h 42 const char* fileName,
49 virtual int32_t StartPlayingVideoFile(const char* fileName, const bool loop,
66 const char* fileName,
72 const char* fileName,
88 const char* fileName,
101 // Returns true if the filename is valid
102 static bool ValidFileName(const char* fileName);
108 // Open the file specified by fileName for reading (relative path is
113 // from the start. format specifies the type of file fileName refers to.
121 const char* fileName,
    [all...]

Completed in 573 milliseconds

1 2 34 5 6 7 8 91011>>