HomeSort by relevance Sort by last modified time
    Searched refs:fileName (Results 301 - 325 of 849) sorted by null

<<11121314151617181920>>

  /external/svox/pico/tts/
com_svox_picottsengine.cpp 255 char* fileName = (char*)malloc(PICO_MAX_DATAPATH_NAME_SIZE + PICO_MAX_FILE_NAME_SIZE);
258 strcpy((char*)fileName, PICO_SYSTEM_LINGWARE_PATH);
259 strcat((char*)fileName, (const char*)picoInternalTaLingware[langIndex]);
260 pFile = fopen(fileName, "r");
265 strcpy((char*)fileName, PICO_SYSTEM_LINGWARE_PATH);
266 strcat((char*)fileName, (const char*)picoInternalSgLingware[langIndex]);
267 pFile = fopen(fileName, "r");
271 free(fileName);
278 strcpy((char*)fileName, pico_alt_lingware_path);
279 strcat((char*)fileName, (const char*)picoInternalTaLingware[langIndex])
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
V8ScriptRunner.cpp 66 v8::Local<v8::Script> V8ScriptRunner::compileScript(v8::Handle<v8::String> code, const String& fileName, const TextPosition& scriptStartPosition, v8::ScriptData* scriptData, v8::Isolate* isolate, AccessControlStatus corsStatus)
70 v8::Handle<v8::String> name = v8String(isolate, fileName);
110 v8::Local<v8::Value> V8ScriptRunner::compileAndRunInternalScript(v8::Handle<v8::String> source, v8::Isolate* isolate, const String& fileName, const TextPosition& scriptStartPosition, v8::ScriptData* scriptData)
114 v8::Handle<v8::Script> script = V8ScriptRunner::compileScript(source, fileName, scriptStartPosition, scriptData, isolate);
WorkerScriptController.h 100 ScriptValue evaluate(const String& script, const String& fileName, const TextPosition& scriptStartPosition, WorkerGlobalScopeExecutionState*);
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorDatabaseAgent.h 77 InspectorDatabaseResource* findByFileName(const String& fileName);
  /external/chromium_org/third_party/icu/source/test/intltest/
regextst.h 56 virtual UChar *ReadAndConvertFile(const char *fileName, int32_t &len, const char *charset, UErrorCode &status);
57 virtual const char *getPath(char buffer[2048], const char *filename);
  /external/chromium_org/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 60 virtual UChar *ReadAndConvertFile(const char *fileName, int32_t &len, const char *charset, UErrorCode &status);
61 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/qemu/android/utils/
ini.h 25 * 'fileName' is only used when writing a warning to stderr in case
28 IniFile* iniFile_newFromMemory( const char* text, 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);
  /frameworks/compile/slang/
slang_rs_reflect_utils.cpp 32 string RSSlangReflectUtils::GetFileNameStem(const char* fileName) {
33 const char *dot = fileName + strlen(fileName);
35 while (slash >= fileName) {
250 string filename(clazz_name);
251 filename += ".java";
255 output_filename += filename;
256 printf("Generating %s ...\n", filename.c_str());
  /hardware/libhardware/tests/camera2/
CameraStreamFixture.h 199 void DumpYuvToFile(const String8 &fileName, const CpuConsumer::LockedBuffer &img) {
233 FILE *yuvFile = fopen(fileName.string(), "w");
242 ALOGE("Unable to write to file %s", fileName.string());
262 ALOGE("Unable to write to file %s", fileName.string());
  /libcore/luni/src/main/java/java/io/
PrintStream.java 169 * {@code fileName} as its target. The VM's default character
172 * @param fileName
178 public PrintStream(String fileName) throws FileNotFoundException {
179 this(new File(fileName));
184 * {@code fileName} as its target. The character set named {@code charsetName} is
187 * @param fileName
199 public PrintStream(String fileName, String charsetName)
201 this(new File(fileName), charsetName);
PrintWriter.java 156 * fileName} as its target. The VM's default character set is
161 * @param fileName
167 public PrintWriter(String fileName) throws FileNotFoundException {
168 this(new OutputStreamWriter(new BufferedOutputStream(new FileOutputStream(fileName))),
174 * fileName} as its target. The character set named {@code csn} is used for
179 * @param fileName
191 public PrintWriter(String fileName, String csn)
193 this(new OutputStreamWriter(new BufferedOutputStream(new FileOutputStream(fileName)), csn),
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppLauncherActivity.java 250 String fileName = getString(R.string.bluetooth_share_file_name) + ".html";
251 context.deleteFile(fileName);
259 outStream = context.openFileOutput(fileName, Context.MODE_PRIVATE);
262 fileUri = Uri.fromFile(new File(context.getFilesDir(), fileName));
BluetoothOppTransferHistory.java 195 String fileName = mTransferCursor.getString(mTransferCursor
197 if (fileName == null) {
198 fileName = this.getString(R.string.unknown_file);
200 menu.setHeaderTitle(fileName);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
AddSuppressAttribute.java 145 String fileName = marker.getResource().getName();
146 if (!fileName.endsWith(DOT_XML)) {
222 String fileName = marker.getResource().getName();
223 if (!fileName.endsWith(DOT_XML)) {
  /dalvik/vm/native/
dalvik_system_VMDebug.cpp 517 * static void dumpHprofData(String fileName, FileDescriptor fd)
527 char* fileName;
534 dvmThrowNullPointerException("fileName == null && fd == null");
539 fileName = dvmCreateCstrFromString(fileNameStr);
540 if (fileName == NULL) {
546 fileName = strdup("[fd]");
553 free(fileName);
558 result = hprofDumpHeap(fileName, fd, false);
559 free(fileName);
  /external/chromium_org/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));
  /external/icu4c/tools/ctestfw/
uperf.cpp 85 fileName(NULL), sourceDir("."),
101 fileName(NULL), sourceDir("."),
155 fileName = options[FILE_NAME].value;
188 if(fileName!=NULL){
190 ucbuf_resolveFileName(sourceDir, fileName, NULL, &len, &status);
199 ucbuf_resolveFileName(sourceDir, fileName, resolvedFileName, &len, &status);
203 printf("Could not open the input file %s. Error: %s\n", fileName, u_errorName(status));
  /external/chromium_org/third_party/WebKit/Source/web/tests/
PopupMenuTest.cpp 252 void registerMockedURLLoad(const std::string& fileName)
254 URLTestHelpers::registerMockedURLLoad(toKURL(baseURL + fileName), WebString::fromUTF8(fileName.c_str()), WebString::fromUTF8("popup/"), WebString::fromUTF8("text/html"));
262 void loadFrame(WebFrame* frame, const std::string& fileName)
266 urlRequest.setURL(WebURL(toKURL(baseURL + fileName)));
  /external/srec/tools/grxmlcompile/
sub_grph.h 181 void WriteForwardGraphWithSemantic ( std::string & fileName, GRXMLDoc &p_Doc );
182 void WriteForwardGraphFile ( std::string & fileName, GRXMLDoc &p_Doc );
183 void WriteFile ( std::string & fileName, GRXMLDoc &p_Doc );
184 void WritePhonemeGraphFile( std::string & fileName, GRXMLDoc &p_Doc );
185 void WriteHMMGraphFile( std::string & fileName, GRXMLDoc &p_Doc );

Completed in 1329 milliseconds

<<11121314151617181920>>