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

12

/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Driver/
H A DAction.cpp45 : Action(InputClass, _Type), Input(_Input) {
50 BindArchAction::BindArchAction(Action *Input, const char *_ArchName) argument
51 : Action(BindArchClass, Input, Input->getType()), ArchName(_ArchName) {
56 JobAction::JobAction(ActionClass Kind, Action *Input, types::ID Type) argument
57 : Action(Kind, Input, Type) {
66 PreprocessJobAction::PreprocessJobAction(Action *Input, types::ID OutputType) argument
67 : JobAction(PreprocessJobClass, Input, OutputType) {
72 PrecompileJobAction::PrecompileJobAction(Action *Input, types::ID OutputType) argument
73 : JobAction(PrecompileJobClass, Input, OutputTyp
78 AnalyzeJobAction(Action *Input, types::ID OutputType) argument
84 MigrateJobAction(Action *Input, types::ID OutputType) argument
90 CompileJobAction(Action *Input, types::ID OutputType) argument
96 AssembleJobAction(Action *Input, types::ID OutputType) argument
[all...]
H A DDriver.cpp1274 Action *Input) const {
1285 OutputTy = Input->getType();
1292 return new PreprocessJobAction(Input, OutputTy);
1300 return new PrecompileJobAction(Input, OutputTy);
1304 return new CompileJobAction(Input, types::TY_Nothing);
1306 return new CompileJobAction(Input, types::TY_RewrittenObjC);
1308 return new CompileJobAction(Input, types::TY_RewrittenLegacyObjC);
1310 return new AnalyzeJobAction(Input, types::TY_Plist);
1312 return new MigrateJobAction(Input, types::TY_Remap);
1314 return new CompileJobAction(Input, type
1504 const Arg &Input = IA->getInputArg(); local
[all...]
/freebsd-9.3-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. */
H A Dinput.cc0 /* Input routines.
33 Input::Input (FILE *stream, Keyword_Factory *keyword_factory) function in class:Input
232 Input::read_input ()
998 Input::~Input ()
/freebsd-9.3-release/contrib/llvm/lib/Support/
H A DYAMLTraits.cpp41 // Input
44 Input::Input(StringRef InputContent, function in class:Input
56 Input::~Input() {
59 error_code Input::error() {
64 void Input::HNode::anchor() {}
65 void Input::EmptyHNode::anchor() {}
66 void Input::ScalarHNode::anchor() {}
68 bool 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[
548 dumpTokens(StringRef Input, raw_ostream &OS) argument
629 scanTokens(StringRef Input) argument
642 escape(StringRef Input) argument
705 Scanner(StringRef Input, SourceMgr &sm) argument
1563 Stream(StringRef Input, SourceMgr &SM) argument
[all...]
/freebsd-9.3-release/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DObjectImageCommon.h33 ObjectImageCommon(ObjectBuffer *Input, object::ObjectFile *Obj) argument
34 : ObjectImage(Input), // saves Input as Buffer and takes ownership
40 ObjectImageCommon(ObjectBuffer* Input) argument
41 : ObjectImage(Input) // saves Input as Buffer and takes ownership
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/Driver/
H A DAction.h74 Action(ActionClass _Kind, Action *Input, types::ID _Type) argument
75 : Kind(_Kind), Type(_Type), Inputs(&Input, &Input + 1), OwnsInputs(true) {}
102 const llvm::opt::Arg &Input; member in class:clang::driver::InputAction
107 const llvm::opt::Arg &getInputArg() const { return Input; }
121 BindArchAction(Action *Input, const char *_ArchName);
133 JobAction(ActionClass Kind, Action *Input, types::ID Type);
146 PreprocessJobAction(Action *Input, types::ID OutputType);
156 PrecompileJobAction(Action *Input, types::ID OutputType);
166 AnalyzeJobAction(Action *Input, type
[all...]
/freebsd-9.3-release/contrib/llvm/include/llvm/ExecutionEngine/
H A DObjectImage.h34 ObjectImage(ObjectBuffer *Input) : Buffer(Input) {} argument
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/ARCMigrate/
H A DARCMT.h41 const FrontendInputFile &Input,
51 const FrontendInputFile &Input,
66 const FrontendInputFile &Input,
/freebsd-9.3-release/contrib/llvm/tools/llvm-readobj/
H A Dllvm-readobj.cpp157 static void reportError(StringRef Input, error_code EC) { argument
158 if (Input == "-")
159 Input = "<stdin>";
161 errs() << Input << ": " << EC.message() << "\n";
166 static void reportError(StringRef Input, StringRef Message) { argument
167 if (Input == "-")
168 Input = "<stdin>";
170 errs() << Input << ": " << Message << "\n";
/freebsd-9.3-release/usr.sbin/lpr/filters.ru/
H A Dbjc-240.sh.sample58 I/D-Buffer=Input
/freebsd-9.3-release/contrib/dtc/
H A Dconvert-dtsv0-lexer.l85 die("Input dts file is already version 1\n");
/freebsd-9.3-release/contrib/llvm/lib/CodeGen/
H A DUnreachableBlockElim.cpp187 unsigned Input = phi->getOperand(1).getReg(); local
195 if (Input != Output) {
197 MRI.constrainRegClass(Input, MRI.getRegClass(Output));
198 MRI.replaceRegWith(Output, Input);
/freebsd-9.3-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.cpp596 bool CompilerInstance::InitializeSourceManager(const FrontendInputFile &Input){ argument
597 return InitializeSourceManager(Input, getDiagnostics(),
602 bool CompilerInstance::InitializeSourceManager(const FrontendInputFile &Input, argument
608 Kind = Input.isSystem() ? SrcMgr::C_System : SrcMgr::C_User;
610 if (Input.isBuffer()) {
611 SourceMgr.createMainFileIDForMemBuffer(Input.getBuffer(), Kind);
617 StringRef InputFile = Input.getFile();
/freebsd-9.3-release/contrib/llvm/lib/Target/SystemZ/
H A DSystemZISelDAGToDAG.cpp101 // given by Opcode. The operands are: Input (R2), Start (I3), End (I4) and
104 // (or (rotl Input, Rotate), ~Mask)
108 // (and (rotl Input, Rotate), Mask)
110 // otherwise. The output value has BitSize bits, although Input may be
115 Mask(allOnes(BitSize)), Input(N), Start(64 - BitSize), End(63),
121 SDValue Input; member in struct:__anon2489::RxSBGOperands
262 // Try to update RxSBG so that only the bits of RxSBG.Input in Mask are used.
266 // Try to fold some of RxSBG.Input into other fields of RxSBG.
691 // Return true if any bits of (RxSBG.Input & Mask) are significant.
693 // Rotate the mask in the same way as RxSBG.Input i
[all...]
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/ARCMigrate/
H A DARCMT.cpp234 const FrontendInputFile &Input,
252 CInvok->getFrontendOpts().Inputs.push_back(Input);
332 const FrontendInputFile &Input,
344 if (arcmt::checkForManualIssues(CInvokForCheck, Input, DiagClient,
350 CInvok.getFrontendOpts().Inputs.push_back(Input);
378 const FrontendInputFile &Input,
380 return applyTransforms(origCI, Input, DiagClient,
385 const FrontendInputFile &Input,
391 return applyTransforms(origCI, Input, DiagClient,
233 checkForManualIssues(CompilerInvocation &origCI, const FrontendInputFile &Input, DiagnosticConsumer *DiagClient, bool emitPremigrationARCErrors, StringRef plistOut) argument
331 applyTransforms(CompilerInvocation &origCI, const FrontendInputFile &Input, DiagnosticConsumer *DiagClient, StringRef outputDir, bool emitPremigrationARCErrors, StringRef plistOut) argument
377 applyTransformations(CompilerInvocation &origCI, const FrontendInputFile &Input, DiagnosticConsumer *DiagClient) argument
384 migrateWithTemporaryFiles(CompilerInvocation &origCI, const FrontendInputFile &Input, DiagnosticConsumer *DiagClient, StringRef outputDir, bool emitPremigrationARCErrors, StringRef plistOut) argument
/freebsd-9.3-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::__anon3523::CommandLineArgumentParser
/freebsd-9.3-release/contrib/llvm/include/llvm/Support/
H A DYAMLTraits.h314 // Base class for Input and Output.
675 /// The Input class is used to parse a yaml document into in-memory structs
679 /// document, then the Input class builds a graph of HNodes which wraps
686 class Input : public IO { class in namespace:llvm::yaml
688 // Construct a yaml Input object from a StringRef and optional
691 Input(StringRef InputContent,
695 ~Input();
793 Input::HNode *createHNodes(Node *node);
942 // Define non-member operator>> so that Input can stream in a document list.
945 typename llvm::enable_if_c<has_DocumentListTraits<T>::value,Input
[all...]
H A DYAMLParser.h67 bool dumpTokens(StringRef Input, raw_ostream &);
72 bool scanTokens(StringRef Input);
74 /// @brief Escape \a Input for a double quoted scalar.
75 std::string escape(StringRef Input);
81 /// @brief This keeps a reference to the string referenced by \p Input.
82 Stream(StringRef Input, SourceMgr &);
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/Frontend/
H A DFrontendAction.h184 /// \brief Prepare the action for processing the input file \p Input.
193 /// \param Input - The input filename and kind. Some input kinds are handled
203 bool BeginSourceFile(CompilerInstance &CI, const FrontendInputFile &Input);
H A DCompilerInstance.h643 bool InitializeSourceManager(const FrontendInputFile &Input);
649 static bool InitializeSourceManager(const FrontendInputFile &Input,

Completed in 308 milliseconds

12