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

123

/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Driver/
H A DAction.cpp46 : Action(InputClass, _Type), Input(_Input) {
51 BindArchAction::BindArchAction(Action *Input, const char *_ArchName) argument
52 : Action(BindArchClass, Input), ArchName(_ArchName) {}
74 CudaDeviceAction::CudaDeviceAction(Action *Input, const char *ArchName, argument
76 : Action(CudaDeviceClass, Input), GpuArchName(ArchName),
91 CudaHostAction::CudaHostAction(Action *Input, const ActionList &DeviceActions) argument
92 : Action(CudaHostClass, Input), DeviceActions(DeviceActions) {}
96 JobAction::JobAction(ActionClass Kind, Action *Input, types::ID Type) argument
97 : Action(Kind, Input, Type) {}
105 PreprocessJobAction::PreprocessJobAction(Action *Input, type argument
110 PrecompileJobAction(Action *Input, types::ID OutputType) argument
115 AnalyzeJobAction(Action *Input, types::ID OutputType) argument
120 MigrateJobAction(Action *Input, types::ID OutputType) argument
125 CompileJobAction(Action *Input, types::ID OutputType) argument
130 BackendJobAction(Action *Input, types::ID OutputType) argument
135 AssembleJobAction(Action *Input, types::ID OutputType) argument
158 VerifyJobAction(ActionClass Kind, Action *Input, types::ID Type) argument
167 VerifyDebugInfoJobAction(Action *Input, types::ID Type) argument
173 VerifyPCHJobAction(Action *Input, types::ID Type) argument
[all...]
H A DDriver.cpp997 for (const Action *Input : *A)
998 if (ContainsCompileOrAssembleAction(Input))
1539 Action *Input) const {
1551 OutputTy = Input->getType();
1559 return C.MakeAction<PreprocessJobAction>(Input, OutputTy);
1567 return C.MakeAction<PrecompileJobAction>(Input, OutputTy);
1571 return C.MakeAction<CompileJobAction>(Input, types::TY_Nothing);
1573 return C.MakeAction<CompileJobAction>(Input, types::TY_RewrittenObjC);
1575 return C.MakeAction<CompileJobAction>(Input,
1578 return C.MakeAction<AnalyzeJobAction>(Input, type
1804 const Arg &Input = IA->getInputArg(); local
[all...]
/freebsd-11.0-release/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. */
H A Dmain.cc70 Input inputter (stdin, &factory);
129 /* Also delete the list that was allocated inside Input and reordered
150 /* Here we run the Input destructor. */
/freebsd-11.0-release/contrib/llvm/lib/Support/
H A DYAMLTraits.cpp44 // Input
47 Input::Input(StringRef InputContent, function in class:Input
59 Input::~Input() {
62 std::error_code Input::error() { return EC; }
65 void Input::HNode::anchor() {}
66 void Input::EmptyHNode::anchor() {}
67 void Input::ScalarHNode::anchor() {}
68 void Input
[all...]
H A DYAMLParser.cpp43 /// encoding form of \a Input.
45 /// @param Input A string of length 0 or more.
48 static EncodingInfo getUnicodeEncoding(StringRef Input) { argument
49 if (Input.size() == 0)
52 switch (uint8_t(Input[0])) {
54 if (Input.size() >= 4) {
55 if ( Input[1] == 0
56 && uint8_t(Input[2]) == 0xFE
57 && uint8_t(Input[3]) == 0xFF)
59 if (Input[
601 dumpTokens(StringRef Input, raw_ostream &OS) argument
685 scanTokens(StringRef Input) argument
698 escape(StringRef Input) argument
761 Scanner(StringRef Input, SourceMgr &sm, bool ShowColors) argument
[all...]
H A DSignals.cpp102 raw_fd_ostream Input(InputFD, true);
105 Input << Modules[i] << " " << (void*)Offsets[i] << "\n";
/freebsd-11.0-release/contrib/llvm/tools/clang/include/clang/Driver/
H A DAction.h81 Action(ActionClass Kind, Action *Input, types::ID Type) argument
82 : Action(Kind, ActionList({Input}), Type) {}
83 Action(ActionClass Kind, Action *Input) argument
84 : Action(Kind, ActionList({Input}), Input->getType()) {}
109 const llvm::opt::Arg &Input; member in class:clang::driver::InputAction
112 InputAction(const llvm::opt::Arg &Input, types::ID Type);
114 const llvm::opt::Arg &getInputArg() const { return Input; }
128 BindArchAction(Action *Input, const char *ArchName);
146 CudaDeviceAction(Action *Input, cons
[all...]
/freebsd-11.0-release/contrib/llvm/tools/clang/include/clang/Rewrite/Core/
H A DRewriteBuffer.h44 void Initialize(StringRef Input) { argument
45 Initialize(Input.begin(), Input.end());
/freebsd-11.0-release/contrib/llvm/tools/clang/include/clang/ARCMigrate/
H A DARCMT.h42 checkForManualIssues(CompilerInvocation &CI, const FrontendInputFile &Input,
54 const FrontendInputFile &Input,
70 CompilerInvocation &origCI, const FrontendInputFile &Input,
/freebsd-11.0-release/usr.sbin/lpr/filters.ru/
H A Dbjc-240.sh.sample58 I/D-Buffer=Input
/freebsd-11.0-release/contrib/llvm/lib/ProfileData/
H A DSampleProfReader.cpp50 /// \brief Parse \p Input as function head.
52 /// Parse one line of \p Input, and update function name in \p FName,
57 static bool ParseHead(const StringRef &Input, StringRef &FName, argument
59 if (Input[0] == ' ')
61 size_t n2 = Input.rfind(':');
62 size_t n1 = Input.rfind(':', n2 - 1);
63 FName = Input.substr(0, n1);
64 if (Input.substr(n1 + 1, n2 - n1 - 1).getAsInteger(10, NumSamples))
66 if (Input.substr(n2 + 1).getAsInteger(10, NumHeadSamples))
77 /// \brief Parse \p Input a
88 ParseLine(const StringRef &Input, bool &IsCallsite, uint32_t &Depth, uint64_t &NumSamples, uint32_t &LineOffset, uint32_t &Discriminator, StringRef &CalleeName, DenseMap<StringRef, uint64_t> &TargetCountMap) argument
[all...]
/freebsd-11.0-release/contrib/llvm/tools/llvm-profdata/
H A Dllvm-profdata.cpp124 for (const auto &Input : Inputs) {
125 auto ReaderOrErr = InstrProfReader::create(Input.Filename);
127 exitWithErrorCode(ec, Input.Filename);
131 if (std::error_code EC = Writer.addRecord(std::move(I), Input.Weight)) {
134 handleMergeWriterError(EC, Input.Filename, I.Name, firstTime);
138 exitWithErrorCode(Reader->getError(), Input.Filename);
162 for (const auto &Input : Inputs) {
164 SampleProfileReader::create(Input.Filename, getGlobalContext());
166 exitWithErrorCode(EC, Input.Filename);
175 exitWithErrorCode(EC, Input
[all...]
/freebsd-11.0-release/contrib/libucl/lua/
H A Dtest.lua16 -- Input to to_value matches the output of to_string:
/freebsd-11.0-release/contrib/llvm/tools/llvm-readobj/
H A Dllvm-readobj.cpp253 static void reportError(StringRef Input, std::error_code EC) { argument
254 if (Input == "-")
255 Input = "<stdin>";
257 reportError(Twine(Input) + ": " + EC.message());
260 static void reportError(StringRef Input, StringRef Message) { argument
261 if (Input == "-")
262 Input = "<stdin>";
264 reportError(Twine(Input) + ": " + Message);
/freebsd-11.0-release/contrib/llvm/lib/Target/SystemZ/
H A DSystemZISelDAGToDAG.cpp106 // given by Opcode. The operands are: Input (R2), Start (I3), End (I4) and
109 // (or (rotl Input, Rotate), ~Mask)
113 // (and (rotl Input, Rotate), Mask)
115 // otherwise. The output value has BitSize bits, although Input may be
120 Mask(allOnes(BitSize)), Input(N), Start(64 - BitSize), End(63),
126 SDValue Input; member in struct:__anon3014::RxSBGOperands
273 // Try to update RxSBG so that only the bits of RxSBG.Input in Mask are used.
277 // Try to fold some of RxSBG.Input into other fields of RxSBG.
732 // Return true if any bits of (RxSBG.Input & Mask) are significant.
734 // Rotate the mask in the same way as RxSBG.Input i
[all...]
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Frontend/
H A DLayoutOverrideSource.cpp31 std::ifstream Input(Filename.str().c_str());
32 if (!Input.is_open())
40 while (Input.good()) {
42 getline(Input, Line);
H A DFrontendAction.cpp172 const FrontendInputFile &Input) {
174 assert(!Input.isEmpty() && "Unexpected empty filename!");
175 setCurrentInput(Input);
178 StringRef InputFile = Input.getFile();
185 if (Input.getKind() == IK_AST) {
211 setCurrentInput(Input, std::move(AST));
241 if (Input.getKind() == IK_LLVM_IR) {
171 BeginSourceFile(CompilerInstance &CI, const FrontendInputFile &Input) argument
/freebsd-11.0-release/contrib/llvm/lib/Analysis/
H A DGlobalsModRef.cpp600 const Value *Input = Inputs.pop_back_val(); local
602 if (isa<GlobalValue>(Input) || isa<Argument>(Input) || isa<CallInst>(Input) ||
603 isa<InvokeInst>(Input))
619 if (auto *LI = dyn_cast<LoadInst>(Input)) {
623 if (auto *SI = dyn_cast<SelectInst>(Input)) {
632 if (auto *PN = dyn_cast<PHINode>(Input)) {
687 const Value *Input = Inputs.pop_back_val(); local
689 if (auto *InputGV = dyn_cast<GlobalValue>(Input)) {
[all...]
/freebsd-11.0-release/contrib/llvm/lib/CodeGen/
H A DUnreachableBlockElim.cpp184 unsigned Input = phi->getOperand(1).getReg(); local
192 if (Input != Output) {
194 MRI.constrainRegClass(Input, MRI.getRegClass(Output));
195 MRI.replaceRegWith(Output, Input);
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/ARCMigrate/
H A DARCMT.cpp238 CompilerInvocation &origCI, const FrontendInputFile &Input,
257 CInvok->getFrontendOpts().Inputs.push_back(Input);
339 applyTransforms(CompilerInvocation &origCI, const FrontendInputFile &Input, argument
350 if (arcmt::checkForManualIssues(CInvokForCheck, Input, PCHContainerOps,
357 CInvok.getFrontendOpts().Inputs.push_back(Input);
385 CompilerInvocation &origCI, const FrontendInputFile &Input,
388 return applyTransforms(origCI, Input, PCHContainerOps, DiagClient,
393 CompilerInvocation &origCI, const FrontendInputFile &Input,
398 return applyTransforms(origCI, Input, PCHContainerOps, DiagClient, outputDir,
237 checkForManualIssues( CompilerInvocation &origCI, const FrontendInputFile &Input, std::shared_ptr<PCHContainerOperations> PCHContainerOps, DiagnosticConsumer *DiagClient, bool emitPremigrationARCErrors, StringRef plistOut) argument
384 applyTransformations( CompilerInvocation &origCI, const FrontendInputFile &Input, std::shared_ptr<PCHContainerOperations> PCHContainerOps, DiagnosticConsumer *DiagClient) argument
392 migrateWithTemporaryFiles( CompilerInvocation &origCI, const FrontendInputFile &Input, std::shared_ptr<PCHContainerOperations> PCHContainerOps, DiagnosticConsumer *DiagClient, StringRef outputDir, bool emitPremigrationARCErrors, StringRef plistOut) argument
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Tooling/
H A DJSONCompilationDatabase.cpp34 : Input(CommandLine), Position(Input.begin()-1) {}
106 return Position != Input.end();
109 const StringRef Input; member in class:clang::tooling::__anon4276::CommandLineArgumentParser
/freebsd-11.0-release/contrib/llvm/include/llvm/Support/
H A DYAMLTraits.h455 // Base class for Input and Output.
928 /// The Input class is used to parse a yaml document into in-memory structs
932 /// document, then the Input class builds a graph of HNodes which wraps
939 class Input : public IO { class in namespace:llvm::yaml
941 // Construct a yaml Input object from a StringRef and optional
944 Input(StringRef InputContent,
948 ~Input() override;
1051 std::unique_ptr<Input::HNode> createHNodes(Node *node);
1208 // Define non-member operator>> so that Input can stream in a document list.
1211 typename std::enable_if<has_DocumentListTraits<T>::value, Input
[all...]
H A DYAMLParser.h64 bool dumpTokens(StringRef Input, raw_ostream &);
69 bool scanTokens(StringRef Input);
71 /// \brief Escape \a Input for a double quoted scalar.
72 std::string escape(StringRef Input);
78 /// \brief This keeps a reference to the string referenced by \p Input.
79 Stream(StringRef Input, SourceMgr &, bool ShowColors = true);
/freebsd-11.0-release/contrib/llvm/tools/llvm-pdbdump/
H A Dllvm-pdbdump.cpp142 static void reportError(StringRef Input, StringRef Message) { argument
143 if (Input == "-")
144 Input = "<stdin>";
145 errs() << Input << ": " << Message << "\n";
150 static void reportError(StringRef Input, std::error_code EC) { argument
151 reportError(Input, EC.message());

Completed in 322 milliseconds

123