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

1 2 3

  /external/v8/build/
output_dll_copy.rules 10 Outputs="$(OutDir)\$(InputFileName)"
  /external/mesa3d/src/gallium/drivers/radeon/
loader.cpp 16 InputFilename(cl::Positional, cl::desc("<input bitcode>"), cl::init("-"));
30 M.reset(ParseIRFile(InputFilename, Err, Context));
  /external/llvm/examples/BrainF/
BrainFDriver.cpp 45 InputFilename(cl::Positional, cl::desc("<input brainf>"));
93 if (InputFilename == "") {
103 std::string base = InputFilename;
104 if (InputFilename == "-") { base = "a"; }
117 if (InputFilename != "-")
118 in = new std::ifstream(InputFilename.c_str());
  /external/llvm/tools/llvm-dis/
llvm-dis.cpp 41 InputFilename(cl::Positional, cl::desc("<input bitcode>"), cl::init("-"));
152 getDataFileStreamer(InputFilename, &ErrorMessage);
155 if (InputFilename == "-")
158 DisplayFilename = InputFilename;
173 if (InputFilename == "-") {
176 StringRef IFN = InputFilename;
  /external/llvm/tools/obj2yaml/
obj2yaml.cpp 44 cl::opt<std::string> InputFilename(cl::Positional, cl::desc("<input file>"),
53 if (std::error_code EC = dumpInput(InputFilename)) {
  /external/llvm/tools/llvm-as/
llvm-as.cpp 35 InputFilename(cl::Positional, cl::desc("<input .llvm file>"), cl::init("-"));
66 if (InputFilename == "-") {
69 StringRef IFN = InputFilename;
101 std::unique_ptr<Module> M = parseAssemblyFile(InputFilename, Err, Context);
  /frameworks/compile/slang/
llvm-rs-as.cpp 39 InputFilename(cl::Positional, cl::desc("<input .llvm file>"), cl::init("-"));
67 if (InputFilename == "-") {
70 std::string IFN = InputFilename;
126 std::unique_ptr<Module> M(parseAssemblyFile(InputFilename, Err, Context));
  /external/llvm/tools/bugpoint/
OptimizerDriver.cpp 147 SmallString<128> InputFilename;
150 InputFilename);
157 tool_output_file InFile(InputFilename, InputFD);
162 errs() << "Error writing bitcode file: " << InputFilename << "\n";
220 Args.push_back(InputFilename.c_str());
246 sys::fs::remove(InputFilename.c_str());
  /external/llvm/tools/llc/
llc.cpp 57 InputFilename(cl::Positional, cl::desc("<input bitcode>"), cl::init("-"));
113 if (InputFilename == "-")
116 // If InputFilename ends in .bc or .ll, remove it.
117 StringRef IFN = InputFilename;
228 if (StringRef(InputFilename).endswith_lower(".mir")) {
229 MIR = createMIRParserFromFile(InputFilename, Err, Context);
235 M = parseIRFile(InputFilename, Err, Context);
244 errs() << argv[0] << ": " << InputFilename
  /external/llvm/tools/llvm-split/
llvm-split.cpp 28 InputFilename(cl::Positional, cl::desc("<input bitcode file>"),
43 std::unique_ptr<Module> M = parseIRFile(InputFilename, Err, Context);
  /external/smali/baksmali/src/test/java/org/jf/baksmali/
RoundtripTest.java 78 String inputFilename = getInputFilename(testName);
81 if (getOutputFilename(testName).equals(inputFilename)) {
  /external/llvm/lib/TableGen/
Main.cpp 42 InputFilename(cl::Positional, cl::desc("<input file>"), cl::init("-"));
78 MemoryBuffer::getFileOrSTDIN(InputFilename);
80 errs() << "Could not open input file '" << InputFilename
  /build/tools/signtos/
SignTos.java 220 * @param inputFilename
298 String inputFilename = args[args.length - 2];
303 InputStream input = new BufferedInputStream(new FileInputStream(inputFilename));
  /external/opencv3/samples/cpp/
3calibration.cpp 182 const char* inputFilename = 0;
232 inputFilename = s;
238 if( !inputFilename ||
239 !readStringList(inputFilename, imageList) ||
calibration.cpp 303 const char* inputFilename = 0;
410 inputFilename = s;
416 if( inputFilename )
418 if( !videofile && readStringList(inputFilename, imageList) )
421 capture.open(inputFilename);
  /external/webrtc/webrtc/modules/video_coding/test/
rtp_player.h 89 RtpPlayerInterface* Create(const std::string& inputFilename,
  /system/tools/aidl/
options.h 79 std::string InputFileName() const { return input_file_name_; }
options_unittest.cpp 124 EXPECT_EQ(kCompileCommandInput, options->InputFileName());
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
Interp.java 72 String inputFileName = args[3];
112 new ANTLRFileStream(inputFileName);
  /external/llvm/tools/llvm-jitlistener/
llvm-jitlistener.cpp 179 InputFilename(cl::Positional, cl::desc("<input IR file>"),
192 Test.ProcessInput(InputFilename);
  /external/webrtc/webrtc/modules/audio_device/dummy/
file_audio_device.h 35 // |inputFilename| and record output audio to |outputFilename|.
41 const char* inputFilename,
file_audio_device.cc 26 const char* inputFilename,
44 _inputFilename(inputFilename),
  /external/llvm/tools/llvm-extract/
llvm-extract.cpp 37 // InputFilename - The filename to read from.
39 InputFilename(cl::Positional, cl::desc("<input bitcode file>"),
114 std::unique_ptr<Module> M = getLazyIRFileModule(InputFilename, Err, Context);
  /art/tools/dmtracedump/
createtesttrace.cc 116 void parseInputFile(const char* inputFileName) {
117 FILE* inputFp = fopen(inputFileName, "r");
119 perror(inputFileName);
  /external/icu/icu4c/source/tools/gensprep/
gensprep.c 141 const char *bundleName=NULL, *inputFileName = NULL;
185 inputFileName = argv[1];
224 uprv_strcpy(basename,inputFileName);

Completed in 1502 milliseconds

1 2 3