Searched refs:Input (Results 1 - 25 of 136) sorted by relevance

123456

/freebsd-12-stable/contrib/gperf/src/
H A Dinput.h3 /* Input routines.
32 class Input class
35 Input (FILE *stream, Keyword_Factory *keyword_factory);
36 ~Input ();
39 /* Input stream. */
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Support/
H A DYAMLTraits.cpp52 // Input
55 Input::Input(StringRef InputContent, void *Ctxt, function in class:Input
63 Input::Input(MemoryBufferRef Input, void *Ctxt, argument
65 : IO(Ctxt), Strm(new Stream(Input, SrcMgr, false, &EC)) {
71 Input::~Input() = default;
73 std::error_code Input
[all...]
H A DYAMLParser.cpp57 /// encoding form of \a Input.
59 /// @param Input A string of length 0 or more.
62 static EncodingInfo getUnicodeEncoding(StringRef Input) { argument
63 if (Input.empty())
66 switch (uint8_t(Input[0])) {
68 if (Input.size() >= 4) {
69 if ( Input[1] == 0
70 && uint8_t(Input[2]) == 0xFE
71 && uint8_t(Input[3]) == 0xFF)
73 if (Input[
593 dumpTokens(StringRef Input, raw_ostream &OS) argument
677 scanTokens(StringRef Input) argument
690 escape(StringRef Input, bool EscapePrintable) argument
756 Scanner(StringRef Input, SourceMgr &sm, bool ShowColors, std::error_code *EC) argument
[all...]
/freebsd-12-stable/contrib/llvm-project/clang/lib/Driver/
H A DAction.cpp167 : Action(InputClass, _Type), Input(_Input) {}
171 BindArchAction::BindArchAction(Action *Input, StringRef ArchName) argument
172 : Action(BindArchClass, Input), ArchName(ArchName) {}
309 JobAction::JobAction(ActionClass Kind, Action *Input, types::ID Type) argument
310 : Action(Kind, Input, Type) {}
317 PreprocessJobAction::PreprocessJobAction(Action *Input, types::ID OutputType) argument
318 : JobAction(PreprocessJobClass, Input, OutputType) {}
322 PrecompileJobAction::PrecompileJobAction(Action *Input, types::ID OutputType) argument
323 : JobAction(PrecompileJobClass, Input, OutputType) {}
325 PrecompileJobAction::PrecompileJobAction(ActionClass Kind, Action *Input, argument
333 HeaderModulePrecompileJobAction( Action *Input, types::ID OutputType, const char *ModuleName) argument
340 AnalyzeJobAction(Action *Input, types::ID OutputType) argument
345 MigrateJobAction(Action *Input, types::ID OutputType) argument
350 CompileJobAction(Action *Input, types::ID OutputType) argument
355 BackendJobAction(Action *Input, types::ID OutputType) argument
360 AssembleJobAction(Action *Input, types::ID OutputType) argument
385 VerifyJobAction(ActionClass Kind, Action *Input, types::ID Type) argument
394 VerifyDebugInfoJobAction(Action *Input, types::ID Type) argument
400 VerifyPCHJobAction(Action *Input, types::ID Type) argument
410 OffloadUnbundlingJobAction(Action *Input) argument
[all...]
/freebsd-12-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DInterfaceStubs.cpp48 for (const auto &Input : Inputs) {
49 if (!Input.isFilename())
51 SmallString<128> InputFilename(Input.getFilename());
52 if (Input.getType() == types::TY_Object)
H A DFlang.cpp67 const InputInfo &Input = Inputs[0]; local
68 assert(Input.isFilename() && "Invalid input.");
69 CmdArgs.push_back(Input.getFilename());
/freebsd-12-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DYaml.h43 llvm::yaml::Input Input(Buffer.get()->getBuffer());
45 Input >> Config;
47 if (std::error_code ec = Input.error()) {
/freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-readobj/
H A Dllvm-readobj.h24 LLVM_ATTRIBUTE_NORETURN void reportError(Error Err, StringRef Input);
25 void reportWarning(Error Err, StringRef Input);
27 template <class T> T unwrapOrError(StringRef Input, Expected<T> EO) { argument
30 reportError(EO.takeError(), Input);
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Driver/
H A DAction.h129 Action(ActionClass Kind, Action *Input, types::ID Type) argument
130 : Action(Kind, ActionList({Input}), Type) {}
131 Action(ActionClass Kind, Action *Input) argument
132 : Action(Kind, ActionList({Input}), Input->getType()) {}
215 const llvm::opt::Arg &Input; member in class:clang::driver::InputAction
220 InputAction(const llvm::opt::Arg &Input, types::ID Type);
222 const llvm::opt::Arg &getInputArg() const { return Input; }
237 BindArchAction(Action *Input, StringRef ArchName);
379 JobAction(ActionClass Kind, Action *Input, type
428 addModuleHeaderInput(Action *Input) argument
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DStringExtras.h55 inline StringRef toStringRef(ArrayRef<uint8_t> Input) { argument
56 return StringRef(reinterpret_cast<const char *>(Input.begin()), Input.size());
60 inline ArrayRef<uint8_t> arrayRefFromStringRef(StringRef Input) { argument
61 return {Input.bytes_begin(), Input.bytes_end()};
139 /// Convert buffer \p Input to its hexadecimal representation.
140 /// The returned string is double the size of \p Input.
141 inline std::string toHex(StringRef Input, bool LowerCase = false) { argument
144 size_t Length = Input
156 toHex(ArrayRef<uint8_t> Input, bool LowerCase = false) argument
170 fromHex(StringRef Input) argument
[all...]
H A DPriorityWorklist.h114 insert(SequenceT &&Input) { argument
115 if (std::begin(Input) == std::end(Input))
122 V.insert(V.end(), std::begin(Input), std::end(Input));
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Lex/
H A DDependencyDirectivesSourceMinimizer.h84 bool computeSkippedRanges(ArrayRef<Token> Input,
102 llvm::StringRef Input, llvm::SmallVectorImpl<char> &Output,
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Rewrite/Core/
H A DRewriteBuffer.h46 void Initialize(StringRef Input) { argument
47 Initialize(Input.begin(), Input.end());
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/ARCMigrate/
H A DARCMT.h41 checkForManualIssues(CompilerInvocation &CI, const FrontendInputFile &Input,
53 const FrontendInputFile &Input,
69 CompilerInvocation &origCI, const FrontendInputFile &Input,
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DNonRelocatableStringpool.h31 std::function<StringRef(StringRef Input)> Translator = nullptr,
63 std::function<StringRef(StringRef Input)> Translator;
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A Dyaml2obj.h44 class Input;
56 bool convertYAML(Input &YIn, raw_ostream &Out, ErrorHandler ErrHandler,
/freebsd-12-stable/contrib/llvm-project/llvm/lib/ObjectYAML/
H A Dyaml2obj.cpp21 bool convertYAML(yaml::Input &YIn, raw_ostream &Out, ErrorHandler ErrHandler,
62 yaml::Input YIn(Yaml);
H A DObjectYAML.cpp35 Input &In = (Input &)IO;
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Testing/Support/
H A DSupportHelpers.h76 bool MatchAndExplain(const llvm::Optional<T> &Input,
78 return Input && ValueMatcher.MatchAndExplain(Input.getValue(), L);
/freebsd-12-stable/contrib/llvm-project/clang/lib/Tooling/DependencyScanning/
H A DDependencyScanningTool.cpp149 std::string Input = Compilations.getAllCompileCommands().front().Filename; local
154 Worker.computeDependencies(Input, CWD, Compilations, Consumer);
163 Worker.computeDependencies(Input, CWD, Compilations, Consumer);
167 Consumer.printDependencies(Output, Input);
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Tooling/DependencyScanning/
H A DDependencyScanningWorker.h56 /// specified for the given Input in the CDB), and report the discovered
61 llvm::Error computeDependencies(const std::string &Input,
/freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-lto2/
H A Dllvm-lto2.cpp290 std::unique_ptr<InputFile> Input = local
294 for (const InputFile::Symbol &Sym : Input->symbols()) {
320 check(Lto.add(std::move(Input), Res), F);
369 std::unique_ptr<InputFile> Input = local
372 outs() << "target triple: " << Input->getTargetTriple() << '\n';
373 Triple TT(Input->getTargetTriple());
375 outs() << "source filename: " << Input->getSourceFileName() << '\n';
378 outs() << "linker opts: " << Input->getCOFFLinkerOpts() << '\n';
382 for (auto L : Input->getDependentLibraries())
387 std::vector<StringRef> ComdatTable = Input
[all...]
/freebsd-12-stable/usr.sbin/lpr/filters.ru/
H A Dbjc-240.sh.sample58 I/D-Buffer=Input
/freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-lto/
H A Dllvm-lto.cpp389 std::unique_ptr<lto::InputFile> Input(LTOModule::createInputFile(
392 if (!Input)
397 for (size_t I = 0, C = LTOModule::getDependentLibraryCount(Input.get());
400 const char *S = LTOModule::getDependentLibrary(Input.get(), I, &L);
607 auto Input = loadInputFile(Buffer->getMemBufferRef()); local
608 auto TheModule = loadModuleFromInput(*Input, Ctx);
614 *TheModule, *Index, ModuleToSummariesForIndex, *Input);
644 auto Input = loadInputFile(Buffer->getMemBufferRef()); local
645 auto TheModule = loadModuleFromInput(*Input, Ctx);
652 ThinGenerator.emitImports(*TheModule, OutputName, *Index, *Input);
671 auto Input = loadInputFile(Buffer->getMemBufferRef()); local
704 auto Input = loadInputFile(Buffer->getMemBufferRef()); local
737 auto Input = loadInputFile(Buffer->getMemBufferRef()); local
762 auto Input = loadInputFile(Buffer->getMemBufferRef()); local
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DUnreachableBlockElim.cpp176 const MachineOperand &Input = phi->getOperand(1); local
178 Register InputReg = Input.getReg();
185 unsigned InputSub = Input.getSubReg();
188 !Input.isUndef()) {
198 .addReg(InputReg, getRegState(Input), InputSub);

Completed in 383 milliseconds

123456