HomeSort by relevance Sort by last modified time
    Searched defs:Args (Results 76 - 100 of 224) sorted by null

1 2 34 5 6 7 8 9

  /external/clang/lib/Parse/
ParseTemplate.cpp     [all...]
  /external/google-breakpad/src/testing/include/gmock/
gmock-generated-matchers.h 217 // Implements the Args() matcher.
233 virtual bool MatchAndExplain(ArgsTuple args,
235 const SelectedArgs& selected_args = GetSelectedArgs(args);
262 static SelectedArgs GetSelectedArgs(ArgsTuple args) {
264 k9>::GetSelectedFields(args);
842 // Args<N1, N2, ..., Nk>(a_matcher) matches a tuple if the selected
847 Args(const InnerMatcher& matcher) {
853 Args(const InnerMatcher& matcher) {
859 Args(const InnerMatcher& matcher) {
865 Args(const InnerMatcher& matcher)
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 153 std::vector<std::unique_ptr<ExprAST>> Args;
157 std::vector<std::unique_ptr<ExprAST>> Args)
158 : Callee(Callee), Args(std::move(Args)) {}
192 std::vector<std::string> Args;
195 PrototypeAST(const std::string &Name, std::vector<std::string> Args)
196 : Name(Name), Args(std::move(Args)) {}
286 std::vector<std::unique_ptr<ExprAST>> Args;
290 Args.push_back(std::move(Arg))
    [all...]
  /external/llvm/lib/IR/
DIBuilder.cpp 678 static DISubprogram *getSubprogram(bool IsDistinct, Ts &&... Args) {
680 return DISubprogram::getDistinct(std::forward<Ts>(Args)...);
681 return DISubprogram::get(std::forward<Ts>(Args)...);
    [all...]
  /external/llvm/lib/MC/MCParser/
DarwinAsmParser.cpp 499 SmallVector<std::string, 4> Args;
508 Args.push_back(Data);
519 getStreamer().EmitLinkerOptions(Args);
    [all...]
  /external/llvm/lib/Target/AArch64/
AArch64CollectLOH.cpp 626 SmallVector<const MachineInstr *, 2> Args;
627 Args.push_back(L2);
628 Args.push_back(L1);
629 AArch64FI.addLOHDirective(MCLOH_AdrpAdrp, Args);
763 SmallVector<const MachineInstr *, 2> Args;
764 Args.push_back(&Def);
765 Args.push_back(&Use);
769 Args);
    [all...]
  /external/llvm/lib/Transforms/IPO/
ArgumentPromotion.cpp 62 STATISTIC(NumArgumentsDead , "Number of dead pointer args eliminated");
225 for (Argument &I : F->args())
758 SmallVector<Value*, 16> Args;
777 Args.push_back(*AI); // Unmodified argument
782 push_back(AttributeSet::get(F->getContext(), Args.size(), B));
795 Args.push_back(new LoadInst(Idx, Idx->getName()+".val", Call));
    [all...]
DeadArgumentElimination.cpp 46 STATISTIC(NumArgumentsEliminated, "Number of unread args removed");
49 "Number of unread args replaced with undef");
238 std::vector<Value*> Args;
246 Args.assign(CS.arg_begin(), CS.arg_begin() + NumArgs);
263 Args, "", Call);
267 New = CallInst::Create(NF, Args, "", Call);
275 Args.clear();
350 for (Argument &Arg : Fn.args()) {
365 // Now go through all unused args and replace them with "undef".
534 // Functions with inalloca parameters are expecting args in a particula
    [all...]
  /external/llvm/lib/Transforms/Instrumentation/
InstrProfiling.cpp 216 Value* Args[3] = {Ind->getTargetValue(),
220 Builder.CreateCall(getOrInsertValueProfilingCall(*M), Args));
GCOVProfiling.cpp 757 Type *Args[] = {
762 FunctionType *FTy = FunctionType::get(Type::getVoidTy(*Ctx), Args, false);
769 Type *Args[] = {
773 FunctionType *FTy = FunctionType::get(Type::getVoidTy(*Ctx), Args, false);
778 Type *Args[] = {
785 FunctionType *FTy = FunctionType::get(Type::getVoidTy(*Ctx), Args, false);
790 Type *Args[] = {
794 FunctionType *FTy = FunctionType::get(Type::getVoidTy(*Ctx), Args, false);
    [all...]
  /external/llvm/unittests/IR/
InstructionsTest.cpp 73 Value *Args[] = {ConstantInt::get(Type::getInt8Ty(Ctx), 20),
76 std::unique_ptr<CallInst> Call(CallInst::Create(F, Args));
91 Value *Args[] = {ConstantInt::get(Type::getInt8Ty(Ctx), 20),
94 std::unique_ptr<InvokeInst> Invoke(InvokeInst::Create(F, BB1, BB2, Args));
494 Value *Args[] = {
499 std::unique_ptr<CallInst> Call(CallInst::Create(Callee, Args, "result"));
  /external/clang/include/clang/Sema/
AttributeList.h 67 /// 1: __attribute__(( const )). ParmName/Args/NumArgs will all be unused.
68 /// 2: __attribute__(( mode(byte) )). ParmName used, Args/NumArgs unused.
69 /// 3: __attribute__(( format(printf, 1, 2) )). ParmName/Args/NumArgs all used.
70 /// 4: __attribute__(( aligned(16) )). ParmName is unused, Args/Num used.
217 ArgsUnion *args, unsigned numArgs,
224 if (numArgs) memcpy(getArgsBuffer(), args, numArgs * sizeof(ArgsUnion)); local
263 ArgsVector Args;
264 Args.push_back(Parm1);
265 Args.push_back(Parm2);
266 Args.push_back(Parm3)
    [all...]
  /external/clang/lib/AST/
CommentSema.cpp 63 ArrayRef<BlockCommandComment::Argument> Args) {
64 Command->setArgs(Args);
369 ArrayRef<InlineCommandComment::Argument> Args;
376 Args);
409 ArrayRef<InlineCommandComment::Argument> Args;
413 Args);
    [all...]
TypePrinter.cpp 960 const TemplateArgument *Args;
965 Args = TST->getArgs();
969 Args = TemplateArgs.data();
    [all...]
  /external/clang/lib/Driver/
Driver.cpp 90 void Driver::ParseDriverMode(ArrayRef<const char *> Args) {
94 for (const char *ArgPtr : Args) {
126 InputArgList Args =
133 << Args.getArgString(MissingArgIndex) << MissingArgCount;
136 for (const Arg *A : Args) {
138 Diag(clang::diag::err_drv_unsupported_opt) << A->getAsString(Args);
144 Diag(clang::diag::warn_drv_empty_joined_argument) << A->getAsString(Args);
148 for (const Arg *A : Args.filtered(options::OPT_UNKNOWN))
149 Diags.Report(diag::err_drv_unknown_argument) << A->getAsString(Args);
151 return Args;
    [all...]
  /external/clang/lib/Frontend/
CompilerInvocation.cpp 69 // Deserialization (from args)
78 static unsigned getOptimizationLevel(ArgList &Args, InputKind IK,
81 if (IK == IK_OpenCL && !Args.hasArg(OPT_cl_opt_disable))
84 if (Arg *A = Args.getLastArg(options::OPT_O_Group)) {
97 return getLastArgIntValue(Args, OPT_O, DefaultOpt, Diags);
103 static unsigned getOptimizationLevelSize(ArgList &Args) {
104 if (Arg *A = Args.getLastArg(options::OPT_O_Group)) {
119 static void addDiagnosticArgs(ArgList &Args, OptSpecifier Group,
122 for (Arg *A : Args.filtered(Group)) {
138 static bool ParseAnalyzerArgs(AnalyzerOptions &Opts, ArgList &Args,
    [all...]
  /external/clang/utils/TableGen/
ClangAttrEmitter.cpp     [all...]
  /external/jsoncpp/include/json/
value.h 556 typedef std::vector<PathArgument> Args;
565 Args args_;
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 172 std::vector<std::unique_ptr<ExprAST>> Args;
176 std::vector<std::unique_ptr<ExprAST>> Args)
177 : Callee(Callee), Args(std::move(Args)) {}
211 std::vector<std::string> Args;
216 PrototypeAST(const std::string &Name, std::vector<std::string> Args,
218 : Name(Name), Args(std::move(Args)), IsOperator(IsOperator),
223 bool isUnaryOp() const { return IsOperator && Args.size() == 1; }
224 bool isBinaryOp() const { return IsOperator && Args.size() == 2;
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 178 std::vector<std::unique_ptr<ExprAST>> Args;
182 std::vector<std::unique_ptr<ExprAST>> Args)
183 : Callee(Callee), Args(std::move(Args)) {}
230 std::vector<std::string> Args;
235 PrototypeAST(const std::string &Name, std::vector<std::string> Args,
237 : Name(Name), Args(std::move(Args)), IsOperator(IsOperator),
242 bool isUnaryOp() const { return IsOperator && Args.size() == 1; }
243 bool isBinaryOp() const { return IsOperator && Args.size() == 2;
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy-jit.cpp 173 std::vector<ExprAST*> Args;
175 CallExprAST(const std::string &callee, std::vector<ExprAST*> &args)
176 : Callee(callee), Args(args) {}
216 std::vector<std::string> Args;
220 PrototypeAST(const std::string &name, const std::vector<std::string> &args,
222 : Name(name), Args(args), isOperator(isoperator), Precedence(prec) {}
224 bool isUnaryOp() const { return isOperator && Args.size() == 1; }
225 bool isBinaryOp() const { return isOperator && Args.size() == 2;
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy-jit.cpp 158 std::vector<ExprAST*> Args;
160 CallExprAST(const std::string &callee, std::vector<ExprAST*> &args)
161 : Callee(callee), Args(args) {}
201 std::vector<std::string> Args;
205 PrototypeAST(const std::string &name, const std::vector<std::string> &args,
207 : Name(name), Args(args), isOperator(isoperator), Precedence(prec) {}
209 bool isUnaryOp() const { return isOperator && Args.size() == 1; }
210 bool isBinaryOp() const { return isOperator && Args.size() == 2;
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfUnit.cpp 870 void DwarfUnit::constructSubprogramArguments(DIE &Buffer, DITypeRefArray Args) {
871 for (unsigned i = 1, N = Args.size(); i < N; ++i) {
872 const DIType *Ty = resolve(Args[i]);
    [all...]
  /external/llvm/lib/TableGen/
Record.cpp 761 std::vector<Init*> Args;
764 Args.push_back(LHSs->getArg(i));
768 Args.push_back(RHSs->getArg(i));
771 return DagInit::get(LHSs->getOperator(), "", Args, ArgNames);
779 std::vector<Init *> Args;
780 Args.insert(Args.end(), LHSs->begin(), LHSs->end());
781 Args.insert(Args.end(), RHSs->begin(), RHSs->end());
783 Args, cast<ListRecTy>(LHSs->getType())->getElementType())
942 std::vector<std::pair<Init *, std::string> > args; local
    [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTXISelLowering.cpp     [all...]

Completed in 750 milliseconds

1 2 34 5 6 7 8 9