Home
last modified time | relevance | path

Searched refs:Input (Results 1 – 25 of 145) sorted by relevance

123456

/freebsd-10-stable/contrib/llvm/tools/clang/lib/Driver/
DAction.cpp45 : Action(InputClass, _Type), Input(_Input) { in InputAction()
50 BindArchAction::BindArchAction(Action *Input, const char *_ArchName) in BindArchAction() argument
51 : Action(BindArchClass, Input, Input->getType()), ArchName(_ArchName) { in BindArchAction()
56 JobAction::JobAction(ActionClass Kind, Action *Input, types::ID Type) in JobAction() argument
57 : Action(Kind, Input, Type) { in JobAction()
66 PreprocessJobAction::PreprocessJobAction(Action *Input, types::ID OutputType) in PreprocessJobAction() argument
67 : JobAction(PreprocessJobClass, Input, OutputType) { in PreprocessJobAction()
72 PrecompileJobAction::PrecompileJobAction(Action *Input, types::ID OutputType) in PrecompileJobAction() argument
73 : JobAction(PrecompileJobClass, Input, OutputType) { in PrecompileJobAction()
78 AnalyzeJobAction::AnalyzeJobAction(Action *Input, types::ID OutputType) in AnalyzeJobAction() argument
[all …]
DDriver.cpp1274 Action *Input) const { in ConstructPhaseAction()
1285 OutputTy = Input->getType(); in ConstructPhaseAction()
1292 return new PreprocessJobAction(Input, OutputTy); in ConstructPhaseAction()
1300 return new PrecompileJobAction(Input, OutputTy); in ConstructPhaseAction()
1304 return new CompileJobAction(Input, types::TY_Nothing); in ConstructPhaseAction()
1306 return new CompileJobAction(Input, types::TY_RewrittenObjC); in ConstructPhaseAction()
1308 return new CompileJobAction(Input, types::TY_RewrittenLegacyObjC); in ConstructPhaseAction()
1310 return new AnalyzeJobAction(Input, types::TY_Plist); in ConstructPhaseAction()
1312 return new MigrateJobAction(Input, types::TY_Remap); in ConstructPhaseAction()
1314 return new CompileJobAction(Input, types::TY_AST); in ConstructPhaseAction()
[all …]
/freebsd-10-stable/contrib/llvm/lib/Support/
DYAMLTraits.cpp44 Input::Input(StringRef InputContent, in Input() function in Input
56 Input::~Input() { in ~Input()
59 error_code Input::error() { in error()
64 void Input::HNode::anchor() {} in anchor()
65 void Input::EmptyHNode::anchor() {} in anchor()
66 void Input::ScalarHNode::anchor() {} in anchor()
68 bool Input::outputting() const { in outputting()
72 bool Input::setCurrentDocument() { in setCurrentDocument()
93 void Input::nextDocument() { in nextDocument()
97 bool Input::mapTag(StringRef Tag, bool Default) { in mapTag()
[all …]
DYAMLParser.cpp47 static EncodingInfo getUnicodeEncoding(StringRef Input) { in getUnicodeEncoding() argument
48 if (Input.size() == 0) in getUnicodeEncoding()
51 switch (uint8_t(Input[0])) { in getUnicodeEncoding()
53 if (Input.size() >= 4) { in getUnicodeEncoding()
54 if ( Input[1] == 0 in getUnicodeEncoding()
55 && uint8_t(Input[2]) == 0xFE in getUnicodeEncoding()
56 && uint8_t(Input[3]) == 0xFF) in getUnicodeEncoding()
58 if (Input[1] == 0 && Input[2] == 0 && Input[3] != 0) in getUnicodeEncoding()
62 if (Input.size() >= 2 && Input[1] != 0) in getUnicodeEncoding()
66 if ( Input.size() >= 4 in getUnicodeEncoding()
[all …]
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Driver/
DAction.h74 Action(ActionClass _Kind, Action *Input, types::ID _Type) in Action() argument
75 : Kind(_Kind), Type(_Type), Inputs(&Input, &Input + 1), OwnsInputs(true) {} in Action()
102 const llvm::opt::Arg &Input; variable
107 const llvm::opt::Arg &getInputArg() const { return Input; } in getInputArg()
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, types::ID OutputType);
176 MigrateJobAction(Action *Input, types::ID OutputType);
[all …]
/freebsd-10-stable/contrib/llvm/tools/llvm-readobj/
Dllvm-readobj.cpp157 static void reportError(StringRef Input, error_code EC) { in reportError() argument
158 if (Input == "-") in reportError()
159 Input = "<stdin>"; in reportError()
161 errs() << Input << ": " << EC.message() << "\n"; in reportError()
166 static void reportError(StringRef Input, StringRef Message) { in reportError() argument
167 if (Input == "-") in reportError()
168 Input = "<stdin>"; in reportError()
170 errs() << Input << ": " << Message << "\n"; in reportError()
/freebsd-10-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/
DObjectImageCommon.h33 ObjectImageCommon(ObjectBuffer *Input, object::ObjectFile *Obj) in ObjectImageCommon() argument
34 : ObjectImage(Input), // saves Input as Buffer and takes ownership in ObjectImageCommon()
40 ObjectImageCommon(ObjectBuffer* Input) in ObjectImageCommon() argument
41 : ObjectImage(Input) // saves Input as Buffer and takes ownership in ObjectImageCommon()
/freebsd-10-stable/contrib/gperf/src/
Dinput.h32 class Input
35 Input (FILE *stream, Keyword_Factory *keyword_factory);
36 ~Input ();
Dinput.cc33 Input::Input (FILE *stream, Keyword_Factory *keyword_factory) in Input() function in Input
232 Input::read_input () in read_input()
998 Input::~Input () in ~Input()
/freebsd-10-stable/contrib/llvm/lib/Target/SystemZ/
DSystemZISelDAGToDAG.cpp115 Mask(allOnes(BitSize)), Input(N), Start(64 - BitSize), End(63), in RxSBGOperands()
121 SDValue Input; member
700 SDValue N = RxSBG.Input; in expandRxSBG()
712 SDValue Input = N.getOperand(0); in expandRxSBG() local
719 CurDAG->ComputeMaskedBits(Input, KnownZero, KnownOne); in expandRxSBG()
724 RxSBG.Input = Input; in expandRxSBG()
737 SDValue Input = N.getOperand(0); in expandRxSBG() local
744 CurDAG->ComputeMaskedBits(Input, KnownZero, KnownOne); in expandRxSBG()
749 RxSBG.Input = Input; in expandRxSBG()
763 RxSBG.Input = N.getOperand(0); in expandRxSBG()
[all …]
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/ARCMigrate/
DARCMT.h41 const FrontendInputFile &Input,
51 const FrontendInputFile &Input,
66 const FrontendInputFile &Input,
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Frontend/
DFrontendAction.cpp163 const FrontendInputFile &Input) { in BeginSourceFile() argument
165 assert(!Input.isEmpty() && "Unexpected empty filename!"); in BeginSourceFile()
166 setCurrentInput(Input); in BeginSourceFile()
169 StringRef InputFile = Input.getFile(); in BeginSourceFile()
176 if (Input.getKind() == IK_AST) { in BeginSourceFile()
189 setCurrentInput(Input, AST); in BeginSourceFile()
221 if (Input.getKind() == IK_LLVM_IR) { in BeginSourceFile()
DLayoutOverrideSource.cpp31 std::ifstream Input(Filename.str().c_str()); in LayoutOverrideSource() local
32 if (!Input.is_open()) in LayoutOverrideSource()
40 while (Input.good()) { in LayoutOverrideSource()
42 getline(Input, Line); in LayoutOverrideSource()
/freebsd-10-stable/contrib/llvm/lib/CodeGen/
DUnreachableBlockElim.cpp187 unsigned Input = phi->getOperand(1).getReg(); in runOnMachineFunction() local
195 if (Input != Output) { in runOnMachineFunction()
197 MRI.constrainRegClass(Input, MRI.getRegClass(Output)); in runOnMachineFunction()
198 MRI.replaceRegWith(Output, Input); in runOnMachineFunction()
/freebsd-10-stable/contrib/llvm/tools/clang/lib/ARCMigrate/
DARCMT.cpp234 const FrontendInputFile &Input, in checkForManualIssues() argument
252 CInvok->getFrontendOpts().Inputs.push_back(Input); in checkForManualIssues()
332 const FrontendInputFile &Input, in applyTransforms() argument
344 if (arcmt::checkForManualIssues(CInvokForCheck, Input, DiagClient, in applyTransforms()
350 CInvok.getFrontendOpts().Inputs.push_back(Input); in applyTransforms()
378 const FrontendInputFile &Input, in applyTransformations() argument
380 return applyTransforms(origCI, Input, DiagClient, in applyTransformations()
385 const FrontendInputFile &Input, in migrateWithTemporaryFiles() argument
391 return applyTransforms(origCI, Input, DiagClient, in migrateWithTemporaryFiles()
/freebsd-10-stable/contrib/llvm/include/llvm/Support/
DYAMLTraits.h686 class Input : public IO {
691 Input(StringRef InputContent,
695 ~Input();
793 Input::HNode *createHNodes(Node *node);
945 typename llvm::enable_if_c<has_DocumentListTraits<T>::value,Input &>::type
946 operator>>(Input &yin, T &docList) {
961 typename llvm::enable_if_c<has_MappingTraits<T>::value,Input &>::type
962 operator>>(Input &yin, T &docMap) {
972 typename llvm::enable_if_c<has_SequenceTraits<T>::value,Input &>::type
973 operator>>(Input &yin, T &docSeq) {
[all …]
DYAMLParser.h67 bool dumpTokens(StringRef Input, raw_ostream &);
72 bool scanTokens(StringRef Input);
75 std::string escape(StringRef Input);
82 Stream(StringRef Input, SourceMgr &);
/freebsd-10-stable/contrib/llvm/include/llvm/ExecutionEngine/
DObjectImage.h34 ObjectImage(ObjectBuffer *Input) : Buffer(Input) {} in ObjectImage() argument
/freebsd-10-stable/contrib/dialog/samples/
Dsourcemage.rc63 # Input box color
66 # Input box border color
135 # Input box border2 color
Dsuse.rc63 # Input box color
66 # Input box border color
135 # Input box border2 color
Dslackware.rc63 # Input box color
66 # Input box border color
135 # Input box border2 color
Dwhiptail.rc63 # Input box color
66 # Input box border color
135 # Input box border2 color
Ddebian.rc64 # Input box color
67 # Input box border color
136 # Input box border2 color
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Tooling/
DJSONCompilationDatabase.cpp34 : Input(CommandLine), Position(Input.begin()-1) {} in CommandLineArgumentParser()
106 return Position != Input.end(); in next()
109 const StringRef Input; member in clang::tooling::__anonf411efa50111::CommandLineArgumentParser
/freebsd-10-stable/contrib/gperf/
DChangeLog158 * src/input.cc (Input::read_input): Accept length-table-name
193 * src/input.cc (Input::read_input): Support struct declarations of the
260 * src/input.cc (Input::read_input): Ignore comments at the beginning
280 * src/input.cc (Input::read_input): Recognize %define
295 * src/input.h (Input::_charset_dependent): New field.
296 * src/input.cc (Input::read_input): Also set _charset_dependent.
297 * src/main.cc (main): Pass _charset_dependent from Input to Output.
341 * src/input.cc (Input::read_input): Recognize declarations %pic,
532 * src/input.cc (Input::read_input): Recognize option %ignore-case.
568 (Input Details): Document option --ignore-case.
[all …]

123456