HomeSort by relevance Sort by last modified time
    Searched defs:Inputs (Results 1 - 20 of 20) sorted by null

  /external/clang/lib/Driver/
Job.cpp 31 ArrayRef<InputInfo> Inputs)
34 for (const auto &II : Inputs)
100 // In a file list, we only write the set of inputs to the response file
136 llvm::StringSet<> Inputs;
138 Inputs.insert(InputName);
144 if (Inputs.count(Arg) == 0) {
262 ArrayRef<InputInfo> Inputs,
264 : Command(Source_, Creator_, Executable_, Arguments_, Inputs),
Driver.cpp 268 // Pick up inputs via the -- option.
502 // Construct the list of inputs.
503 InputList Inputs;
504 BuildInputs(C->getDefaultToolChain(), *TranslatedArgs, Inputs);
509 BuildUniversalActions(*C, C->getDefaultToolChain(), Inputs);
511 BuildActions(*C, C->getDefaultToolChain(), C->getArgs(), Inputs,
571 // Construct the list of inputs.
572 InputList Inputs;
573 BuildInputs(C.getDefaultToolChain(), C.getArgs(), Inputs);
575 for (InputList::iterator it = Inputs.begin(), ie = Inputs.end(); it != ie;)
    [all...]
Tools.cpp 209 static void AddLinkerInputs(const ToolChain &TC, const InputInfoList &Inputs,
213 // Add extra linker input arguments which are not treated as inputs
217 for (const auto &II : Inputs) {
219 // Don't try to pass LLVM inputs unless we have native support.
267 // Don't forward inputs from the original command line. They are added from
277 const InputInfoList &Inputs,
301 DepFile = getDependencyFileName(Args, Inputs);
320 SmallString<128> P(Inputs[0].getBaseInput());
476 if (types::isCXX(Inputs[0].getType())) {
488 if (types::isCuda(Inputs[0].getType())
    [all...]
  /external/llvm/unittests/Support/
CommandLineTest.cpp 188 const char *const Inputs[][ARGC] = {
195 for (size_t i = 0, e = array_lengthof(Inputs); i < e; ++i) {
202 cl::ParseCommandLineOptions(ARGC, Inputs[i]);
  /external/llvm/lib/Fuzzer/
FuzzerDriver.cpp 65 static std::vector<std::string> *Inputs;
145 Inputs = new std::vector<std::string>;
148 Inputs->push_back(Args[A]);
267 if (!Inputs->empty())
268 Options.OutputCorpus = (*Inputs)[0];
305 F.Merge(*Inputs);
318 for (auto &inp : *Inputs)
  /frameworks/compile/slang/
llvm-rs-cc.cpp 128 * Compile the Inputs.
134 * Inputs - input filenames.
140 * We populate IOFiles dynamically while working through the list of Inputs.
147 const llvm::SmallVector<const char*, 16> &Inputs, slang::RSCCOptions &Opts,
160 for (int i = 0, e = Inputs.size(); i != e; i++) {
161 const char *InputFile = Inputs[i];
230 llvm::SmallVector<const char *, 16> Inputs;
234 if (!slang::ParseArguments(llvm::makeArrayRef(argv, argc), Inputs, Opts,
262 if (Inputs.empty()) {
273 makeFileList(&IOFiles32, &DepFiles32, Inputs, Opts, &SavedStrings)
    [all...]
  /external/clang/lib/Tooling/
CompilationDatabase.cpp 113 // all inputs, direct and indirect, of compile jobs.
119 SmallVector<std::string, 2> Inputs;
133 Inputs.push_back(IA->getInputArg().getSpelling());
255 // since Link jobs point to Assemble jobs as inputs.
260 if (CompileAnalyzer.Inputs.empty()) {
270 Args.begin(), Args.end(), MatchesAny(CompileAnalyzer.Inputs));
272 // Remove all inputs deemed unused for compilation.
  /external/mesa3d/src/mesa/swrast/
s_atifragshader.c 38 GLfloat Inputs[2][4]; /** Primary, secondary input colors */
369 machine->Inputs[ATI_FS_INPUT_PRIMARY]);
372 machine->Inputs[ATI_FS_INPUT_SECONDARY]);
564 GLfloat (*inputs)[4] = machine->Inputs;
572 COPY_4V(inputs[ATI_FS_INPUT_PRIMARY], span->array->attribs[FRAG_ATTRIB_COL0][col]);
573 COPY_4V(inputs[ATI_FS_INPUT_SECONDARY], span->array->attribs[FRAG_ATTRIB_COL1][col]);
  /libcore/benchmarks/src/benchmarks/regression/
StringCaseMappingBenchmark.java 23 enum Inputs {
26 // TODO: include hairy inputs like turkish and greek.
54 private Inputs(String value) { this.value = value; }
72 @Param private Inputs s;
  /external/clang/include/clang/Driver/
Action.h 71 ActionList Inputs;
79 : Kind(Kind), Type(Type), Inputs(1, Input.release()), OwnsInputs(true) {
82 : Kind(Kind), Type(Input->getType()), Inputs(1, Input.release()),
84 Action(ActionClass Kind, const ActionList &Inputs, types::ID Type)
85 : Kind(Kind), Type(Type), Inputs(Inputs), OwnsInputs(true) {}
97 ActionList &getInputs() { return Inputs; }
98 const ActionList &getInputs() const { return Inputs; }
100 size_type size() const { return Inputs.size(); }
102 iterator begin() { return Inputs.begin();
    [all...]
  /external/llvm/lib/Analysis/
GlobalsModRef.cpp 626 SmallVector<const Value *, 8> Inputs;
628 Inputs.push_back(V);
630 const Value *Input = Inputs.pop_back_val();
650 Inputs.push_back(GetUnderlyingObject(LI->getPointerOperand(), DL));
657 Inputs.push_back(LHS);
659 Inputs.push_back(RHS);
666 Inputs.push_back(Op);
672 } while (!Inputs.empty());
674 // All inputs were known to be no-alias.
709 // recurse through PHI nodes and select nodes provided all of their inputs
    [all...]
  /external/clang/include/clang/Frontend/
FrontendOptions.h 210 std::vector<FrontendInputFile> Inputs;
  /external/v8/src/compiler/
node.h 45 Node* const* inputs, bool has_extensible_inputs);
128 class Inputs final {
138 explicit Inputs(Node* node) : node_(node) {}
144 Inputs inputs() { return Inputs(this); } function in class:v8::internal::compiler::final
193 // Out of line storage for inputs when the number of inputs overflowed the
217 Node** inputs = is_inline_use() local
220 return &inputs[index]
    [all...]
  /external/clang/lib/Frontend/
CompilerInvocation.cpp     [all...]
  /external/llvm/include/llvm/IR/
InstrTypes.h 1253 ArrayRef<InputTy> inputs() const { return Inputs; } function in class:llvm::OperandBundleDefT
    [all...]
  /external/mesa3d/src/gallium/auxiliary/tgsi/
tgsi_exec.h 254 struct tgsi_exec_vector *Inputs;
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeVectorTypes.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
LoopStrengthReduce.cpp     [all...]
  /external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
vktShaderBuiltinPrecisionTests.cpp 4396 Inputs<In> inputs = generateInputs(m_samplings, m_caseCtx.floatFormat, m_caseCtx.precision, m_caseCtx.numRandoms, 0xdeadbeefu + m_caseCtx.testContext.getCommandLine().getBaseSeed()); local
    [all...]
  /external/deqp/modules/glshared/
glsBuiltinPrecisionTests.cpp     [all...]

Completed in 1009 milliseconds