/external/llvm/tools/llvm-split/ |
llvm-split.cpp | 29 InputFilename(cl::Positional, cl::desc("<input bitcode file>"), 48 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)) {
|
/device/linaro/bootloader/edk2/BaseTools/Source/C/Common/ |
MemoryFile.h | 38 IN CHAR8 *InputFileName,
|
OsPath.c | 271 IN CHAR8 *InputFileName
281 InputFileName The name of the file to check for existence
291 InputFile = fopen (LongFilePath (InputFileName), "rb");
|
CommonLib.h | 70 IN CHAR8 *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
|
/external/swiftshader/third_party/LLVM/lib/TableGen/ |
Main.cpp | 41 InputFilename(cl::Positional, cl::desc("<input file>"), cl::init("-")); 56 if (error_code ec = MemoryBuffer::getFileOrSTDIN(InputFilename.c_str(), File)) { 57 errs() << "Could not open input file '" << InputFilename << "': "
|
/external/swiftshader/third_party/LLVM/tools/llc/ |
llc.cpp | 47 InputFilename(cl::Positional, cl::desc("<input bitcode>"), cl::init("-"));
143 GetFileNameRoot(const std::string &InputFilename) {
144 std::string IFN = InputFilename;
163 if (InputFilename == "-")
166 OutputFilename = GetFileNameRoot(InputFilename);
248 M.reset(ParseIRFile(InputFilename, Err, Context));
|
/build/make/tools/signtos/ |
SignTos.java | 220 * @param inputFilename 298 String inputFilename = args[args.length - 2]; 303 InputStream input = new BufferedInputStream(new FileInputStream(inputFilename));
|
/device/linaro/bootloader/edk2/BaseTools/Scripts/ |
MemoryProfileSymbolGen.py | 237 Parser.add_option("-i", "--inputfile", dest="inputfilename", type="string", help="The input memory profile info file output from MemoryProfileInfo application in MdeModulePkg")
241 if Options.inputfilename is None:
255 file = open(Options.inputfilename)
257 print "fail to open " + Options.inputfilename
|
/device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/ |
GenBiosId | |
/external/webrtc/webrtc/modules/video_coding/test/ |
rtp_player.h | 89 RtpPlayerInterface* Create(const std::string& inputFilename,
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/BPDG/ |
GenVpd.py | 307 # @Param InputFileName The filename include the vpd type pcd information
313 def __init__(self, InputFileName, MapFileName, VpdFileName):
314 self.InputFileName = InputFileName
321 fInputfile = open(InputFileName, "r", 0)
325 EdkLogger.error("BPDG", BuildToolError.FILE_READ_FAILURE, "File read failed for %s" % InputFileName, None)
329 EdkLogger.error("BPDG", BuildToolError.FILE_OPEN_FAILURE, "File open failed for %s" % InputFileName, None)
397 PCD = PcdEntry(line[0], line[1], line[2], line[3], line[4],line[5], self.InputFileName)
423 EdkLogger.error("BPDG", BuildToolError.FORMAT_INVALID, "Invalid PCD size value %s at file: %s line: %s" % (PCD.PcdSize, self.InputFileName, PCD.Lineno))
440 EdkLogger.warn("BPDG", "The offset value of PCD %s is not 8-byte aligned!" %(PCD.PcdCName), File=self.InputFileName)
[all...] |
/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/llc/ |
llc.cpp | 62 InputFilename(cl::Positional, cl::desc("<input bitcode>"), cl::init("-")); 150 if (InputFilename == "-") 153 // If InputFilename ends in .bc or .ll, remove it. 154 StringRef IFN = InputFilename; 282 if (StringRef(InputFilename).endswith_lower(".mir")) { 283 MIR = createMIRParserFromFile(InputFilename, Err, Context); 287 M = parseIRFile(InputFilename, Err, Context); 296 errs() << argv[0] << ": " << InputFilename
|
/external/llvm/tools/llvm-jitlistener/ |
llvm-jitlistener.cpp | 177 InputFilename(cl::Positional, cl::desc("<input IR file>"), 190 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,
|
/system/tools/aidl/ |
options_unittest.cpp | 159 EXPECT_EQ(kCompileCommandInput, options->InputFileName()); 171 EXPECT_EQ(kCompileCommandInput, options->InputFileName());
|
options.h | 92 std::string InputFileName() const { return input_file_name_; }
|
/external/clang/unittests/AST/ |
ASTImporterTest.cpp | 57 const char *const InputFileName = "input.cc"; 62 FromCode, FromArgs, InputFileName), 74 MFS->addFile(InputFileName, 0,
|
/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);
|
/external/swiftshader/third_party/LLVM/tools/llvm-extract/ |
llvm-extract.cpp | 35 // InputFilename - The filename to read from.
37 InputFilename(cl::Positional, cl::desc("<input bitcode file>"),
90 M.reset(getLazyIRFileModule(InputFilename, Err, Context));
|
/external/icu/icu4c/source/tools/gensprep/ |
gensprep.c | 143 const char *bundleName=NULL, *inputFileName = NULL; 187 inputFileName = argv[1]; 206 filename = (char* ) uprv_malloc(uprv_strlen(srcDir) + uprv_strlen(inputFileName) + (icuUniDataDir == NULL ? 0 : uprv_strlen(icuUniDataDir)) + 40); /* hopefully this should be enough */ 226 uprv_strcpy(basename,inputFileName);
|
/external/llvm/tools/llvm-pdbdump/ |
llvm-pdbdump.h | 65 extern llvm::cl::list<std::string> InputFilename;
|
/device/linaro/bootloader/edk2/BaseTools/Source/C/TianoCompress/ |
TianoCompress.c | 1584 IN char *InputFileName,
1592 Get the contents of file specified in InputFileName
1597 InputFileName - Name of the input file.
1618 InputFile = fopen (LongFilePath (InputFileName), "rb");
1620 Error (NULL, 0, 0001, "Error opening file: %s", InputFileName);
1632 Error (NULL, 0, 0004, "Error reading contents of input file: %s", InputFileName);
[all...] |