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

1 2 3 4 5 6 7 891011>>

  /development/simulator/wrapsim/
SimMgr.c 428 char* fileName;
432 fileName = (char*) malloc(strlen(kBasePath) + strlen(name) + 1);
433 strcpy(fileName, kBasePath);
434 strcat(fileName, name);
436 return fileName;
639 char* fileName = NULL;
645 fileName = makeFilename(name);
656 strcpy(addr.sun_path, fileName); // max 108 bytes
663 fileName, strerror(errno));
671 wsLog("+++ connected to '%s'\n", fileName);
    [all...]
  /external/svox/pico/tts/
com_svox_picottsengine.cpp 243 char* fileName = (char*)malloc(PICO_MAX_DATAPATH_NAME_SIZE + PICO_MAX_FILE_NAME_SIZE);
246 strcpy((char*)fileName, PICO_SYSTEM_LINGWARE_PATH);
247 strcat((char*)fileName, (const char*)picoInternalTaLingware[langIndex]);
248 pFile = fopen(fileName, "r");
253 strcpy((char*)fileName, PICO_SYSTEM_LINGWARE_PATH);
254 strcat((char*)fileName, (const char*)picoInternalSgLingware[langIndex]);
255 pFile = fopen(fileName, "r");
259 free(fileName);
266 strcpy((char*)fileName, pico_alt_lingware_path);
267 strcat((char*)fileName, (const char*)picoInternalTaLingware[langIndex])
    [all...]
  /frameworks/base/core/jni/
android_util_AssetManager.cpp 115 jstring fileName, jint mode)
124 if (fileName == NULL) {
125 jniThrowException(env, "java/lang/NullPointerException", "fileName");
135 const char* fileName8 = env->GetStringUTFChars(fileName, NULL);
140 env->ReleaseStringUTFChars(fileName, fileName8);
143 env->ReleaseStringUTFChars(fileName, fileName8);
183 jstring fileName, jlongArray outOffsets)
192 if (fileName == NULL) {
193 jniThrowException(env, "java/lang/NullPointerException", "fileName");
197 const char* fileName8 = env->GetStringUTFChars(fileName, NULL)
    [all...]
  /dalvik/vm/
Native.h 66 bool dvmLoadNativeCode(const char* fileName, Object* classLoader,
  /development/simulator/app/
LoadableImage.h 50 virtual bool Create(const char* fileName, int x, int y);
  /external/chromium/third_party/icu/source/tools/toolutil/
filestrm.h 33 T_FileStream_open(const char* filename, const char* mode);
37 T_FileStream_wopen(const wchar_t* filename, const wchar_t* mode);
43 T_FileStream_file_exists(const char* filename);
102 T_FileStream_remove(const char* fileName);
  /external/icu4c/samples/layout/
FontMap.cpp 22 FontMap::FontMap(const char *fileName, le_int16 pointSize, GUISupport *guiSupport, LEErrorCode &status)
43 file = fopen(fileName, "r");
46 sprintf(errorMessage, "Could not open the font map file: %s.", fileName);
102 sprintf(errorMessage, "The font map file %s does not contain any valid scripts.", fileName);
paragraph.h 46 static Paragraph *paragraphFactory(const char *fileName, const LEFontInstance *font, GUISupport *guiSupport);
  /external/icu4c/test/intltest/
regextst.h 53 virtual UChar *ReadAndConvertFile(const char *fileName, int32_t &len, const char *charset, UErrorCode &status);
54 virtual const char *getPath(char buffer[2048], const char *filename);
  /external/icu4c/tools/toolutil/
filestrm.h 33 T_FileStream_open(const char* filename, const char* mode);
37 T_FileStream_wopen(const wchar_t* filename, const wchar_t* mode);
43 T_FileStream_file_exists(const char* filename);
102 T_FileStream_remove(const char* fileName);
  /external/sonivox/jet_tools/JetCreator/
JetUtils.py 188 def FileKillClean(fileName):
191 os.remove(fileName)
195 def FileJustRoot(fileName):
198 return os.path.splitext(fileName)[0]
202 def FileJustName(fileName):
203 """ Gets just the filename, without the path """
205 return os.path.split(fileName)[1]
209 def FileJustPath(fileName):
212 return os.path.split(fileName)[0]
216 def FileJustExt(fileName):
    [all...]
  /external/svox/pico/lib/
picorsrc.h 117 picoos_char * fileName, picorsrc_Resource * resource);
  /external/webkit/WebCore/bindings/v8/
WorkerContextExecutionProxy.h 76 ScriptValue evaluate(const String& script, const String& fileName, int baseLine, WorkerContextExecutionState*);
  /external/webkit/WebCore/plugins/
PluginInfoStore.cpp 44 info->file = package->fileName();
  /external/webkit/WebCore/plugins/android/
PluginDataAndroid.cpp 46 info->file = package->fileName();
  /external/webkit/WebCore/plugins/gtk/
PluginDataGtk.cpp 40 info->file = package->fileName();
  /external/webkit/WebCore/plugins/win/
PluginDataWin.cpp 39 info->file = package->fileName();
  /external/webkit/WebCore/plugins/wx/
PluginDataWx.cpp 46 info->file = package->fileName();
  /frameworks/base/core/tests/hosttests/src/android/content/pm/
PackageManagerStressHostTests.java 52 FILENAME,
118 * Get the absolute file system location of repository test app with given filename
119 * @param fileName the file name of the test app apk
122 private String getRepositoryTestAppFilePath(String fileDirectory, String fileName) {
124 File.separator, fileName);
128 * Get the absolute file system location of test app with given filename
129 * @param fileName the file name of the test app apk
132 public String getTestAppFilePath(String fileName) {
133 return String.format("%s%s%s", getTestAppPath(), File.separator, fileName);
216 String apkName = LARGE_APPS[i][APK.FILENAME.ordinal()]
    [all...]
  /frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/
FsUtils.java 174 String fileName = url.substring(slashPostion + 1, qmPostion);
175 if ("index.html".equals(fileName)) {
189 public static void writeDrawTime(String fileName, String url, long[] times) {
201 FileWriter fw = new FileWriter(fileName, true);
  /libcore/luni/src/main/java/java/io/
PrintStream.java 183 * {@code fileName} as its target. The virtual machine's default character
186 * @param fileName
195 public PrintStream(String fileName) throws FileNotFoundException {
196 this(new File(fileName));
201 * {@code fileName} as its target. The character set named {@code csn} is
204 * @param fileName
219 public PrintStream(String fileName, String csn)
221 this(new File(fileName), csn);
PrintWriter.java 167 * fileName} as its target. The virtual machine's default character set is
172 * @param fileName
181 public PrintWriter(String fileName) throws FileNotFoundException {
182 this(new OutputStreamWriter(new BufferedOutputStream(new FileOutputStream(fileName))),
188 * fileName} as its target. The character set named {@code csn} is used for
193 * @param fileName
208 public PrintWriter(String fileName, String csn)
210 this(new OutputStreamWriter(new BufferedOutputStream(new FileOutputStream(fileName)), csn),
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppLauncherActivity.java 180 String fileName = getString(R.string.bluetooth_share_file_name) + ".html";
181 context.deleteFile(fileName);
189 outStream = context.openFileOutput(fileName, Context.MODE_PRIVATE);
192 fileUri = Uri.fromFile(new File(context.getFilesDir(), fileName));
BluetoothOppTransferHistory.java 180 String fileName = mTransferCursor.getString(mTransferCursor
182 if (fileName == null) {
183 fileName = this.getString(R.string.unknown_file);
185 menu.setHeaderTitle(fileName);
  /external/chromium/third_party/icu/source/tools/ctestfw/
uperf.cpp 81 fileName(NULL), sourceDir("."),
97 fileName(NULL), sourceDir("."),
151 fileName = options[FILE_NAME].value;
184 if(fileName!=NULL){
186 ucbuf_resolveFileName(sourceDir, fileName, NULL, &len, &status);
195 ucbuf_resolveFileName(sourceDir, fileName, resolvedFileName, &len, &status);
199 printf("Could not open the input file %s. Error: %s\n", fileName, u_errorName(status));

Completed in 1908 milliseconds

1 2 3 4 5 6 7 891011>>