HomeSort by relevance Sort by last modified time
    Searched refs:Args (Results 226 - 250 of 538) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/llvm/examples/Kaleidoscope/Orc/fully_lazy/
toy.cpp 167 std::vector<std::unique_ptr<ExprAST>> Args)
168 : CalleeName(std::move(CalleeName)), Args(std::move(Args)) {}
173 std::vector<std::unique_ptr<ExprAST>> Args;
217 PrototypeAST(std::string Name, std::vector<std::string> Args,
219 : Name(std::move(Name)), Args(std::move(Args)), IsOperator(IsOperator),
225 bool isUnaryOp() const { return IsOperator && Args.size() == 1; }
226 bool isBinaryOp() const { return IsOperator && Args.size() == 2; }
234 std::vector<std::string> Args;
    [all...]
  /external/llvm/examples/Kaleidoscope/Orc/initial/
toy.cpp 166 std::vector<std::unique_ptr<ExprAST>> Args)
167 : CalleeName(std::move(CalleeName)), Args(std::move(Args)) {}
172 std::vector<std::unique_ptr<ExprAST>> Args;
216 PrototypeAST(std::string Name, std::vector<std::string> Args,
218 : Name(std::move(Name)), Args(std::move(Args)), IsOperator(IsOperator),
224 bool isUnaryOp() const { return IsOperator && Args.size() == 1; }
225 bool isBinaryOp() const { return IsOperator && Args.size() == 2; }
233 std::vector<std::string> Args;
    [all...]
  /external/llvm/examples/Kaleidoscope/Orc/lazy_codegen/
toy.cpp 166 std::vector<std::unique_ptr<ExprAST>> Args)
167 : CalleeName(std::move(CalleeName)), Args(std::move(Args)) {}
172 std::vector<std::unique_ptr<ExprAST>> Args;
216 PrototypeAST(std::string Name, std::vector<std::string> Args,
218 : Name(std::move(Name)), Args(std::move(Args)), IsOperator(IsOperator),
224 bool isUnaryOp() const { return IsOperator && Args.size() == 1; }
225 bool isBinaryOp() const { return IsOperator && Args.size() == 2; }
233 std::vector<std::string> Args;
    [all...]
  /external/llvm/examples/Kaleidoscope/Orc/lazy_irgen/
toy.cpp 166 std::vector<std::unique_ptr<ExprAST>> Args)
167 : CalleeName(std::move(CalleeName)), Args(std::move(Args)) {}
172 std::vector<std::unique_ptr<ExprAST>> Args;
216 PrototypeAST(std::string Name, std::vector<std::string> Args,
218 : Name(std::move(Name)), Args(std::move(Args)), IsOperator(IsOperator),
224 bool isUnaryOp() const { return IsOperator && Args.size() == 1; }
225 bool isBinaryOp() const { return IsOperator && Args.size() == 2; }
233 std::vector<std::string> Args;
    [all...]
  /external/clang/lib/Tooling/
Tooling.cpp 112 std::vector<std::string> Args;
113 Args.push_back("clang-tool");
114 Args.push_back("-fsyntax-only");
115 Args.insert(Args.end(), ExtraArgs.begin(), ExtraArgs.end());
116 Args.push_back(FileName.str());
117 return Args;
122 const std::vector<std::string> &Args, const Twine &FileName,
135 ToolInvocation Invocation(getSyntaxOnlyToolArgs(Args, FileNameRef),
477 const Twine &Code, const std::vector<std::string> &Args,
    [all...]
  /external/autotest/site_utils/
create_attr_whitelist.py 24 args = parser.parse_args()
34 _WriteToFile(whitelist, args.path)
43 Args:
  /external/libbrillo/brillo/dbus/
dbus_method_invoker.h 84 // zero or more method call arguments in |args| which will be sent over D-Bus.
93 template<typename... Args>
100 const Args&... args) {
104 DBusParamWriter::Append(&writer, args...);
129 template<typename... Args>
135 const Args&... args) {
141 args...);
  /external/libchrome/sandbox/win/src/
policy_params.h 16 #define POLPARAMS_BEGIN(type) class type { public: enum Args {
  /external/llvm/include/llvm/Support/
Program.h 92 const char **args, ///< A vector of strings that are passed to the
127 ExecuteNoWait(StringRef Program, const char **args, const char **env = nullptr,
133 bool argumentsFitWithinSystemLimits(ArrayRef<const char*> Args);
  /external/llvm/lib/IR/
MDBuilder.cpp 86 SmallVector<Metadata *, 3> Args(1, Dummy.get());
88 Args.push_back(Extra);
90 Args.push_back(createString(Name));
91 MDNode *Root = MDNode::get(Context, Args);
  /external/llvm/unittests/Option/
OptionParsingTest.cpp 55 const char *Args[] = {
70 InputArgList AL = T.ParseArgs(Args, MAI, MAC);
115 InputArgList AL = T.ParseArgs(Args, MAI, MAC,
123 AL = T.ParseArgs(Args, MAI, MAC,
  /hardware/ti/omap3/omx/system/src/openmax_il/lcml/inc/
LCML_CodecInterface.h 110 OMX_STRING Args);
114 void *args[10] );
127 void *args [10]);
  /external/clang/lib/Sema/
SemaInit.cpp     [all...]
SemaExprObjC.cpp 3918 Expr *args[] = { SrcExpr }; local
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter8/
toy.cpp 277 std::vector<std::unique_ptr<ExprAST>> Args;
281 std::vector<std::unique_ptr<ExprAST>> Args)
282 : ExprAST(Loc), Callee(Callee), Args(std::move(Args)) {}
286 for (const auto &Arg : Args)
358 std::vector<std::string> Args;
365 std::vector<std::string> Args, bool IsOperator = false,
367 : Name(Name), Args(std::move(Args)), IsOperator(IsOperator),
372 bool isUnaryOp() const { return IsOperator && Args.size() == 1;
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy.cpp 180 std::vector<ExprAST*> Args;
182 CallExprAST(const std::string &callee, std::vector<ExprAST*> &args)
183 : Callee(callee), Args(args) {}
223 std::vector<std::string> Args;
227 PrototypeAST(const std::string &name, const std::vector<std::string> &args,
229 : Name(name), Args(args), isOperator(isoperator), Precedence(prec) {}
231 bool isUnaryOp() const { return isOperator && Args.size() == 1; }
232 bool isBinaryOp() const { return isOperator && Args.size() == 2;
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp 199 std::vector<ExprAST*> Args;
201 CallExprAST(const std::string &callee, std::vector<ExprAST*> &args)
202 : Callee(callee), Args(args) {}
242 std::vector<std::string> Args;
246 PrototypeAST(const std::string &name, const std::vector<std::string> &args,
248 : Name(name), Args(args), isOperator(isoperator), Precedence(prec) {}
250 bool isUnaryOp() const { return isOperator && Args.size() == 1; }
251 bool isBinaryOp() const { return isOperator && Args.size() == 2;
    [all...]
  /external/clang/lib/Driver/
MSVCToolChain.cpp 48 const ArgList &Args)
49 : ToolChain(D, Triple, Args) {
606 MSVCToolChain::ComputeEffectiveClangTriple(const ArgList &Args,
609 ToolChain::ComputeEffectiveClangTriple(Args, InputType);
612 tools::visualstudio::getMSVCVersion(/*D=*/nullptr, Triple, Args,
638 MSVCToolChain::TranslateArgs(const llvm::opt::DerivedArgList &Args,
640 DerivedArgList *DAL = new DerivedArgList(Args.getBaseArgs());
656 for (Arg *A : Args) {
669 for (Arg *A : Args) {
  /frameworks/native/services/surfaceflinger/DisplayHardware/
HWC2On1Adapter.h 397 template <typename ...Args>
399 hwc2_display_t displayId, HWC2::Error (Display::*member)(Args...),
400 Args... args) {
405 auto error = ((*display).*member)(std::forward<Args>(args)...);
409 template <typename MF, MF memFunc, typename ...Args>
411 Args... args) {
413 std::forward<Args>(args)...)
    [all...]
  /external/clang/lib/CodeGen/
CGAtomic.cpp 324 CallArgList &args) {
326 CGF.CGM.getTypes().arrangeFreeFunctionCall(resultType, args,
330 return CGF.EmitCall(fnInfo, fn, ReturnValueSlot(), args);
649 AddDirectArgument(CodeGenFunction &CGF, CallArgList &Args,
665 Args.add(RValue::get(Val), ValTy);
668 Args.add(RValue::get(CGF.EmitCastToVoidPtr(Val)),
1768 CallArgList args; local
    [all...]
  /external/clang/lib/AST/
TypeLoc.cpp 463 const TemplateArgument *Args,
467 switch (Args[i].getKind()) {
478 ArgInfos[i] = TemplateArgumentLocInfo(Args[i].getAsExpr());
483 Context.getTrivialTypeSourceInfo(Args[i].getAsType(),
490 TemplateName Template = Args[i].getAsTemplateOrTemplatePattern();
498 Args[i].getKind() == TemplateArgument::Template ? SourceLocation()
  /external/compiler-rt/lib/ubsan/
ubsan_diag.cc 176 static void renderText(const char *Message, const Diag::Arg *Args) {
187 const Diag::Arg &A = Args[*++Msg - '0'];
258 const Diag::Arg *Args) {
319 renderText(InRange->getText(), Args);
359 renderText(Message, Args);
365 NumRanges, Args);
  /external/llvm/lib/Transforms/IPO/
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...]
  /frameworks/compile/slang/
slang_rs_reflection.cpp 762 ArgTy Args;
768 Args.push_back(
787 Args);
858 ArgTy Args;
867 Args.push_back(std::make_pair("Allocation", "ain"));
874 Args.push_back(std::make_pair("Allocation",
881 Args.push_back(std::make_pair("Allocation", "aout"));
889 Args.push_back(
    [all...]
  /dalvik/dx/src/com/android/dx/command/dump/
BaseDumper.java 69 protected Args args; field in class:BaseDumper
81 String filePath, Args args) {
83 this.rawBytes = args.rawBytes;
85 this.width = (args.width <= 0) ? 79 : args.width;
87 this.strictParse = args.strictParse;
91 this.args = args;
    [all...]

Completed in 1491 milliseconds

1 2 3 4 5 6 7 8 91011>>