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

12

/freebsd-10.0-release/contrib/llvm/tools/clang/lib/Driver/
H A DAction.cpp44 : Action(InputClass, _Type), Input(_Input) {
49 BindArchAction::BindArchAction(Action *Input, const char *_ArchName) argument
50 : Action(BindArchClass, Input, Input->getType()), ArchName(_ArchName) {
55 JobAction::JobAction(ActionClass Kind, Action *Input, types::ID Type) argument
56 : Action(Kind, Input, Type) {
65 PreprocessJobAction::PreprocessJobAction(Action *Input, types::ID OutputType) argument
66 : JobAction(PreprocessJobClass, Input, OutputType) {
71 PrecompileJobAction::PrecompileJobAction(Action *Input, types::ID OutputType) argument
72 : JobAction(PrecompileJobClass, Input, OutputTyp
77 AnalyzeJobAction(Action *Input, types::ID OutputType) argument
83 MigrateJobAction(Action *Input, types::ID OutputType) argument
89 CompileJobAction(Action *Input, types::ID OutputType) argument
95 AssembleJobAction(Action *Input, types::ID OutputType) argument
[all...]
H A DDriver.cpp1121 Action *Input) const {
1132 OutputTy = Input->getType();
1139 return new PreprocessJobAction(Input, OutputTy);
1147 return new PrecompileJobAction(Input, OutputTy);
1151 return new CompileJobAction(Input, types::TY_Nothing);
1153 return new CompileJobAction(Input, types::TY_RewrittenObjC);
1155 return new CompileJobAction(Input, types::TY_RewrittenLegacyObjC);
1157 return new AnalyzeJobAction(Input, types::TY_Plist);
1159 return new MigrateJobAction(Input, types::TY_Remap);
1161 return new CompileJobAction(Input, type
1348 const Arg &Input = IA->getInputArg(); local
[all...]
/freebsd-10.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-10.0-release/contrib/llvm/lib/Support/
H A DYAMLTraits.cpp40 // Input
43 Input::Input(StringRef InputContent, void *Ctxt) function in class:Input
50 Input::~Input() {
54 error_code Input::error() {
58 void Input::setDiagHandler(SourceMgr::DiagHandlerTy Handler, void *Ctxt) {
62 bool Input::outputting() {
66 bool Input::setCurrentDocument() {
81 void Input
[all...]
H A DYAMLParser.cpp42 /// encoding form of \a Input.
44 /// @param Input A string of length 0 or more.
47 static EncodingInfo getUnicodeEncoding(StringRef Input) { argument
48 if (Input.size() == 0)
51 switch (uint8_t(Input[0])) {
53 if (Input.size() >= 4) {
54 if ( Input[1] == 0
55 && uint8_t(Input[2]) == 0xFE
56 && uint8_t(Input[3]) == 0xFF)
58 if (Input[
539 dumpTokens(StringRef Input, raw_ostream &OS) argument
620 scanTokens(StringRef Input) argument
633 escape(StringRef Input) argument
696 Scanner(StringRef Input, SourceMgr &sm) argument
1546 Stream(StringRef Input, SourceMgr &SM) argument
[all...]
H A DLockFileManager.cpp40 std::ifstream Input(LockFileName.str().c_str());
41 if (Input >> Hostname >> PID && PID > 0 &&
/freebsd-10.0-release/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DObjectImageCommon.h32 ObjectImageCommon(ObjectBuffer *Input, object::ObjectFile *Obj) argument
33 : ObjectImage(Input), // saves Input as Buffer and takes ownership
39 ObjectImageCommon(ObjectBuffer* Input) argument
40 : ObjectImage(Input) // saves Input as Buffer and takes ownership
/freebsd-10.0-release/contrib/llvm/tools/clang/include/clang/Driver/
H A DAction.h69 Action(ActionClass _Kind, Action *Input, types::ID _Type) argument
70 : Kind(_Kind), Type(_Type), Inputs(&Input, &Input + 1), OwnsInputs(true) {}
97 const Arg &Input; member in class:clang::driver::InputAction
101 const Arg &getInputArg() const { return Input; }
115 BindArchAction(Action *Input, const char *_ArchName);
127 JobAction(ActionClass Kind, Action *Input, types::ID Type);
140 PreprocessJobAction(Action *Input, types::ID OutputType);
150 PrecompileJobAction(Action *Input, types::ID OutputType);
160 AnalyzeJobAction(Action *Input, type
[all...]
H A DDriver.h325 /// \p Phase on the \p Input, taking in to account arguments
328 Action *Input) const;
/freebsd-10.0-release/contrib/llvm/include/llvm/ExecutionEngine/
H A DObjectImage.h33 ObjectImage(ObjectBuffer *Input) : Buffer(Input) {} argument
/freebsd-10.0-release/contrib/llvm/tools/clang/include/clang/ARCMigrate/
H A DARCMT.h41 const FrontendInputFile &Input,
51 const FrontendInputFile &Input,
66 const FrontendInputFile &Input,
/freebsd-10.0-release/contrib/llvm/tools/llvm-readobj/
H A Dllvm-readobj.cpp154 static void reportError(StringRef Input, error_code EC) { argument
155 if (Input == "-")
156 Input = "<stdin>";
158 errs() << Input << ": " << EC.message() << "\n";
162 static void reportError(StringRef Input, StringRef Message) { argument
163 if (Input == "-")
164 Input = "<stdin>";
166 errs() << Input << ": " << Message << "\n";
/freebsd-10.0-release/usr.sbin/lpr/filters.ru/
H A Dbjc-240.sh.sample58 I/D-Buffer=Input
/freebsd-10.0-release/contrib/llvm/lib/CodeGen/
H A DUnreachableBlockElim.cpp191 unsigned Input = phi->getOperand(1).getReg(); local
199 if (Input != Output) {
201 MRI.constrainRegClass(Input, MRI.getRegClass(Output));
202 MRI.replaceRegWith(Output, Input);
/freebsd-10.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.cpp163 const FrontendInputFile &Input) {
165 assert(!Input.isEmpty() && "Unexpected empty filename!");
166 setCurrentInput(Input);
169 StringRef InputFile = Input.getFile();
176 if (Input.getKind() == IK_AST) {
189 setCurrentInput(Input, AST);
221 if (Input.getKind() == IK_LLVM_IR) {
162 BeginSourceFile(CompilerInstance &CI, const FrontendInputFile &Input) argument
H A DCompilerInstance.cpp575 bool CompilerInstance::InitializeSourceManager(const FrontendInputFile &Input){ argument
576 return InitializeSourceManager(Input, getDiagnostics(),
581 bool CompilerInstance::InitializeSourceManager(const FrontendInputFile &Input, argument
587 Kind = Input.isSystem() ? SrcMgr::C_System : SrcMgr::C_User;
589 if (Input.isBuffer()) {
590 SourceMgr.createMainFileIDForMemBuffer(Input.getBuffer(), Kind);
596 StringRef InputFile = Input.getFile();
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/ARCMigrate/
H A DARCMT.cpp234 const FrontendInputFile &Input,
252 CInvok->getFrontendOpts().Inputs.push_back(Input);
336 const FrontendInputFile &Input,
348 if (arcmt::checkForManualIssues(CInvokForCheck, Input, DiagClient,
354 CInvok.getFrontendOpts().Inputs.push_back(Input);
385 const FrontendInputFile &Input,
387 return applyTransforms(origCI, Input, DiagClient,
392 const FrontendInputFile &Input,
398 return applyTransforms(origCI, Input, DiagClient,
233 checkForManualIssues(CompilerInvocation &origCI, const FrontendInputFile &Input, DiagnosticConsumer *DiagClient, bool emitPremigrationARCErrors, StringRef plistOut) argument
335 applyTransforms(CompilerInvocation &origCI, const FrontendInputFile &Input, DiagnosticConsumer *DiagClient, StringRef outputDir, bool emitPremigrationARCErrors, StringRef plistOut) argument
384 applyTransformations(CompilerInvocation &origCI, const FrontendInputFile &Input, DiagnosticConsumer *DiagClient) argument
391 migrateWithTemporaryFiles(CompilerInvocation &origCI, const FrontendInputFile &Input, DiagnosticConsumer *DiagClient, StringRef outputDir, bool emitPremigrationARCErrors, StringRef plistOut) argument
/freebsd-10.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::__anon3464::CommandLineArgumentParser
H A DTooling.cpp228 const llvm::MemoryBuffer *Input = local
232 It->getKey(), Input->getBufferSize(), 0);
233 Sources.overrideFileContents(FromFile, Input);
/freebsd-10.0-release/contrib/llvm/include/llvm/Support/
H A DYAMLTraits.h313 // Base class for Input and Output.
673 /// The Input class is used to parse a yaml document into in-memory structs
677 /// document, then the Input class builds a graph of HNodes which wraps
684 class Input : public IO { class in namespace:llvm::yaml
686 // Construct a yaml Input object from a StringRef and optional user-data.
687 Input(StringRef InputContent, void *Ctxt=NULL);
688 ~Input();
792 Input::HNode *createHNodes(Node *node);
938 // Define non-member operator>> so that Input can stream in a document list.
941 typename llvm::enable_if_c<has_DocumentListTraits<T>::value,Input
[all...]
H A DYAMLParser.h65 bool dumpTokens(StringRef Input, raw_ostream &);
70 bool scanTokens(StringRef Input);
72 /// @brief Escape \a Input for a double quoted scalar.
73 std::string escape(StringRef Input);
79 /// @brief This keeps a reference to the string referenced by \p Input.
80 Stream(StringRef Input, SourceMgr &);
/freebsd-10.0-release/contrib/llvm/tools/clang/include/clang/Frontend/
H A DFrontendAction.h176 /// \brief Prepare the action for processing the input file \p Input.
185 /// \param Input - The input filename and kind. Some input kinds are handled
195 bool BeginSourceFile(CompilerInstance &CI, const FrontendInputFile &Input);
H A DCompilerInstance.h641 bool InitializeSourceManager(const FrontendInputFile &Input);
647 static bool InitializeSourceManager(const FrontendInputFile &Input,

Completed in 181 milliseconds

12