HomeSort by relevance Sort by last modified time
    Searched full:outputfilename (Results 1 - 25 of 77) sorted by null

1 2 3 4

  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/re2c/
globals.h 7 extern char *outputFileName;
main.c 11 char *outputFileName = 0;
122 outputFileName = opt_arg;
166 if (outputFileName == 0 || (fileName[0] == '-' && fileName[1] == '\0')) {
167 outputFileName = mystrdup("<stdout>");
173 output = fopen(outputFileName, "wt");
175 fprintf(stderr, "can't open %s\n", outputFileName);
179 len = strlen(outputFileName);
182 for (src = outputFileName, dst = tmp; *src; ++src)
190 outputFileName = tmp;
194 free(outputFileName);
    [all...]
  /external/llvm/utils/FileUpdate/
FileUpdate.cpp 34 OutputFilename(cl::Positional, cl::desc("<output-file>"), cl::Required);
41 if (OutputFilename == "-") {
56 MemoryBuffer::getFile(OutputFilename.c_str(), Out);
63 errs() << argv[0] << ": Not updating '" << OutputFilename
70 errs() << argv[0] << ": Updating '" << OutputFilename
73 tool_output_file OutStream(OutputFilename.c_str(), ErrorStr,
77 << OutputFilename << "': " << ErrorStr << '\n';
  /frameworks/base/tools/aidl/
options.h 23 string outputFileName;
options.cpp 43 options->outputFileName = argv[2];
128 options->outputFileName = argv[i];
132 options->outputFileName = options->inputFileName;
133 string::size_type pos = options->outputFileName.size()-5;
134 if (options->outputFileName.compare(pos, 5, ".aidl") == 0) { // 5 = strlen(".aidl")
135 options->outputFileName.replace(pos, 5, ".java"); // 5 = strlen(".aidl")
  /external/llvm/runtime/libprofile/
CommonProfiling.c 33 static const char *OutputFilename = "llvmprof.out";
36 * variable is set. If it is then save it and set OutputFilename.
47 OutputFilename = SavedEnvVar;
54 * command line argument are set then change OutputFilename to the provided
77 OutputFilename = strdup(argv[1]);
124 OutFile = open(OutputFilename, O_CREAT | O_WRONLY, 0666);
128 OutputFilename);
  /external/llvm/tools/llvm-as/
llvm-as.cpp 37 OutputFilename("o", cl::desc("Override output filename"),
55 if (OutputFilename.empty()) {
57 OutputFilename = "-";
63 OutputFilename = std::string(IFN.begin(), IFN.end()-3);
65 OutputFilename = IFN; // Append a .bc to it
67 OutputFilename += ".bc";
73 OutputFilename.c_str(), ErrorInfo, sys::fs::F_Binary));
  /external/llvm/tools/llvm-dis/
llvm-dis.cpp 41 OutputFilename("o", cl::desc("Override output filename"),
154 OutputFilename = "-";
156 if (OutputFilename.empty()) { // Unspecified output, infer it.
158 OutputFilename = "-";
164 OutputFilename = std::string(IFN.begin(), IFN.end()-3)+".ll";
166 OutputFilename = IFN+".ll";
172 OutputFilename.c_str(), ErrorInfo, sys::fs::F_Binary));
  /frameworks/compile/slang/
llvm-rs-as.cpp 42 OutputFilename("o", cl::desc("Override output filename"),
73 if (OutputFilename.empty()) {
75 OutputFilename = "-";
81 OutputFilename = std::string(IFN.begin(), IFN.end()-3);
83 OutputFilename = IFN; // Append a .bc to it
85 OutputFilename += ".bc";
91 (new tool_output_file(OutputFilename.c_str(), ErrorInfo,
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
inline-javascript-imports.py 50 outputFileName = argv[3]
70 outputFile = open(outputFileName, 'w')
77 outputDirName = os.path.dirname(outputFileName)
  /external/llvm/tools/llc/
llc.cpp 54 OutputFilename("o", cl::desc("Output filename"), cl::value_desc("filename"));
87 std::string outputFilename;
93 outputFilename = std::string(IFN.begin(), IFN.end()-3); // s/.bc/.s/
95 outputFilename = IFN;
97 return outputFilename;
104 if (OutputFilename.empty()) {
106 OutputFilename = "-";
108 OutputFilename = GetFileNameRoot(InputFilename);
114 OutputFilename += ".cbe.c";
116 OutputFilename += ".cpp"
    [all...]
  /frameworks/av/cmds/stagefright/
muxer.cpp 55 const char *outputFileName,
66 if (outputFileName == NULL) {
67 outputFileName = "/sdcard/muxeroutput.mp4";
70 ALOGV("input file %s, output file %s", path, outputFileName);
73 sp<MediaMuxer> muxer = new MediaMuxer(outputFileName,
212 char *outputFileName = NULL;
237 outputFileName = optarg;
299 int result = muxing(looper, argv[0], useAudio, useVideo, outputFileName,
  /external/llvm/examples/BrainF/
BrainFDriver.cpp 47 OutputFilename("o", cl::desc("Output filename"), cl::value_desc("filename"));
101 if (OutputFilename == "") {
106 OutputFilename = base+".bc";
108 if (OutputFilename != "-") {
110 out = new raw_fd_ostream(OutputFilename.c_str(), ErrInfo,
  /external/llvm/lib/TableGen/
Main.cpp 33 OutputFilename("o", cl::desc("Output filename"), cl::value_desc("filename"),
55 if (OutputFilename == "-") {
66 DepOut.os() << OutputFilename << ":";
106 tool_output_file Out(OutputFilename.c_str(), Error);
108 errs() << argv0 << ": error opening " << OutputFilename
  /frameworks/base/media/mca/samples/CameraEffectsRecordingSample/res/raw/
cameraeffectsrecordingsample.graph 27 @external outputFileName;
44 outputFile = $outputFileName;
  /packages/inputmethods/LatinIME/tools/dicttool/src/com/android/inputmethod/latin/dicttool/
DictionaryMaker.java 349 * @param outputFilename the name of the file to write to.
355 private static void writeBinaryDictionary(final String outputFilename,
358 final File outputFile = new File(outputFilename);
372 * @param outputFilename the name of the file to write to.
377 private static void writeXmlDictionary(final String outputFilename,
379 XmlDictInputOutput.writeDictionaryXml(new BufferedWriter(new FileWriter(outputFilename)),
386 * @param outputFilename the name of the file to write to.
391 private static void writeCombinedDictionary(final String outputFilename,
394 new BufferedWriter(new FileWriter(outputFilename)), dict);
  /frameworks/compile/libbcc/tools/bcc_strip_attr/
bcc_strip_attr.cpp 38 OutputFilename("o", cl::desc("Override output filename"), cl::init("-"),
129 tool_output_file Out(OutputFilename.c_str(), ErrorInfo,
  /external/chromium_org/third_party/icu/source/tools/genrb/
genrb.c 433 char outputFileName[256];
434 bundle_write(newPoolBundle, outputDir, NULL, outputFileName, sizeof(outputFileName), &status);
459 char outputFileName[256];
597 bundle_write_java(data,outputDir,outputEnc, outputFileName, sizeof(outputFileName),packageName,bundleName,status);
599 bundle_write_xml(data,outputDir,outputEnc, filename, outputFileName, sizeof(outputFileName),language, xliffOutputFileName,status);
602 bundle_write(data, outputDir, packageName, outputFileName, sizeof(outputFileName), status)
    [all...]
wrtxml.cpp 1000 char* outputFileName = NULL;
1085 outputFileName = (char *)uprv_malloc(sizeof(char)*uprv_strlen(outFileName) + 1);
1086 uprv_memset(outputFileName, 0, sizeof(char)*uprv_strlen(outFileName) + 1);
1087 uprv_strcpy(outputFileName,outFileName);
1089 outputFileName = (char *)uprv_malloc(sizeof(char)*uprv_strlen(srBundle->fLocale) + 1);
1090 uprv_memset(outputFileName, 0, sizeof(char)*uprv_strlen(srBundle->fLocale) + 1);
1091 uprv_strcpy(outputFileName,srBundle->fLocale);
    [all...]
  /external/icu4c/tools/genrb/
genrb.c 430 char outputFileName[256];
431 bundle_write(newPoolBundle, outputDir, NULL, outputFileName, sizeof(outputFileName), &status);
460 char outputFileName[256];
599 bundle_write_java(data,outputDir,outputEnc, outputFileName, sizeof(outputFileName),
602 bundle_write_xml(data,outputDir,outputEnc, filename, outputFileName, sizeof(outputFileName),language, xliffOutputFileName,status);
605 bundle_write(data, outputDir, packageName, outputFileName, sizeof(outputFileName), status)
    [all...]
wrtxml.cpp 999 char* outputFileName = NULL;
1084 outputFileName = (char *)uprv_malloc(sizeof(char)*uprv_strlen(outFileName) + 1);
1085 uprv_memset(outputFileName, 0, sizeof(char)*uprv_strlen(outFileName) + 1);
1086 uprv_strcpy(outputFileName,outFileName);
1088 outputFileName = (char *)uprv_malloc(sizeof(char)*uprv_strlen(srBundle->fLocale) + 1);
1089 uprv_memset(outputFileName, 0, sizeof(char)*uprv_strlen(srBundle->fLocale) + 1);
1090 uprv_strcpy(outputFileName,srBundle->fLocale);
    [all...]
  /external/llvm/tools/bugpoint/
OptimizerDriver.cpp 124 std::string &OutputFilename, bool DeleteOutput,
137 OutputFilename = UniqueFilename.str();
180 Args.push_back(OutputFilename.c_str());
223 sys::fs::remove(OutputFilename);
  /frameworks/base/media/mca/samples/CameraEffectsRecordingSample/java/android/media/filterfw/samples/
CameraEffectsRecordingSample.java 76 graphEnvironment.addReferences("outputFileName", mOutFileName);
  /dalvik/vm/hprof/
Hprof.cpp 38 hprof_context_t* hprofStartup(const char *outputFileName, int fd,
51 hprofContextInit(ctx, strdup(outputFileName), fd, false, directToDdms);
  /external/llvm/tools/llvm-link/
llvm-link.cpp 37 OutputFilename("o", cl::desc("Override output filename"), cl::init("-"),
109 tool_output_file Out(OutputFilename.c_str(), ErrorInfo, sys::fs::F_Binary);

Completed in 165 milliseconds

1 2 3 4