HomeSort by relevance Sort by last modified time
    Searched refs:Args (Results 101 - 125 of 358) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/mesa3d/src/gallium/state_trackers/clover/core/
base.hpp 142 template<typename F, typename Its, typename... Args>
144 step(F op, S state, Its its, Args... args) {
146 op, state, its, *(std::get<N>(its)++), args...);
152 template<typename F, typename Its, typename... Args>
154 step(F op, S state, Its its, Args... args) {
155 return op(state, *(std::get<0>(its)++), args...);
163 template<typename F, typename Its, typename... Args>
165 step(F op, __empty state, Its its, Args... args)
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 135 std::vector<ExprAST*> Args;
137 CallExprAST(const std::string &callee, std::vector<ExprAST*> &args)
138 : Callee(callee), Args(args) {}
167 std::vector<std::string> Args;
169 PrototypeAST(const std::string &name, const std::vector<std::string> &args)
170 : Name(name), Args(args) {}
233 std::vector<ExprAST*> Args;
238 Args.push_back(Arg)
    [all...]
  /external/chromium/testing/gmock/test/
gmock-generated-matchers_test.cc 60 using testing::Args;
106 // Tests Args<k0, ..., kn>(m).
110 EXPECT_THAT(t, Args<>(Eq(tuple<>())));
111 EXPECT_THAT(t, Not(Args<>(Ne(tuple<>()))));
116 EXPECT_THAT(t, Args<0>(Eq(make_tuple(5))));
117 EXPECT_THAT(t, Args<1>(Eq(make_tuple(true))));
118 EXPECT_THAT(t, Not(Args<1>(Eq(make_tuple(false)))));
124 EXPECT_THAT(t, (Args<0, 1>(Lt())));
125 EXPECT_THAT(t, (Args<1, 2>(Lt())));
126 EXPECT_THAT(t, Not(Args<0, 2>(Gt())))
    [all...]
  /external/clang/tools/scan-build/
scan-build 206 my $Args = shift;
209 die "No build command." if (scalar(@$Args) == 0);
211 my $Cmd = $$Args[0];
860 my $Args = shift;
864 foreach my $k (@$Args) {
872 push @$Args, $Arg;
903 my $Args = shift;
910 AddIfNotPresent($Args,"-PBXBuildsContinueAfterErrors=YES");
916 open(DETECT_XCODE, "-|", $Args->[0], "-version") or
944 push @$Args,
    [all...]
  /external/llvm/bindings/ocaml/executionengine/
executionengine_ocaml.c 238 CAMLprim value llvm_ee_run_function(LLVMValueRef F, value Args,
244 NumArgs = Wosize_val(Args);
247 GVArgs[I] = Genericvalue_val(Field(Args, I));
270 value Args, value Env,
272 CAMLparam2(Args, Env);
277 NumArgs = Wosize_val(Args);
283 CArgs[I] = String_val(Field(Args, I));
  /external/clang/lib/AST/
ExprCXX.cpp 236 const TemplateArgumentListInfo *Args,
240 assert(Args || TemplateKWLoc.isValid());
241 unsigned num_args = Args ? Args->size() : 0;
246 ADL, /*Overload*/ true, Args,
363 const TemplateArgumentListInfo *Args)
374 HasTemplateKWAndArgsInfo(Args != 0 || TemplateKWLoc.isValid())
376 if (Args) {
381 getTemplateKWAndArgsInfo()->initializeFrom(TemplateKWLoc, *Args,
396 const TemplateArgumentListInfo *Args) {
    [all...]
TypeLoc.cpp 354 const TemplateArgument *Args,
358 switch (Args[i].getKind()) {
369 ArgInfos[i] = TemplateArgumentLocInfo(Args[i].getAsExpr());
374 Context.getTrivialTypeSourceInfo(Args[i].getAsType(),
381 TemplateName Template = Args[i].getAsTemplate();
390 Args[i].getKind() == TemplateArgument::Template
  /external/clang/lib/FrontendTool/
ExecuteCompilerInvocation.cpp 213 const char **Args = new const char*[NumArgs + 2];
214 Args[0] = "clang (LLVM option parsing)";
216 Args[i + 1] = Clang->getFrontendOpts().LLVMArgs[i].c_str();
217 Args[NumArgs + 1] = 0;
218 llvm::cl::ParseCommandLineOptions(NumArgs + 1, Args);
  /external/llvm/lib/Target/ARM/
ARMSelectionDAGInfo.cpp 154 TargetLowering::ArgListTy Args;
161 Args.push_back(Entry);
167 Args.push_back(Entry);
179 Args.push_back(Entry);
195 Args, DAG, dl);
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 155 std::vector<ExprAST*> Args;
157 CallExprAST(const std::string &callee, std::vector<ExprAST*> &args)
158 : Callee(callee), Args(args) {}
198 std::vector<std::string> Args;
202 PrototypeAST(const std::string &name, const std::vector<std::string> &args,
204 : Name(name), Args(args), isOperator(isoperator), Precedence(prec) {}
206 bool isUnaryOp() const { return isOperator && Args.size() == 1; }
207 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/initial/
toy.cpp 156 std::vector<ExprAST*> Args;
158 CallExprAST(const std::string &callee, std::vector<ExprAST*> &args)
159 : Callee(callee), Args(args) {}
199 std::vector<std::string> Args;
203 PrototypeAST(const std::string &name, const std::vector<std::string> &args,
205 : Name(name), Args(args), isOperator(isoperator), Precedence(prec) {}
207 bool isUnaryOp() const { return isOperator && Args.size() == 1; }
208 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...]
toy.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/chromium_org/tools/grit/grit/gather/
interface.py 25 Args:
53 Args:
64 Args:
129 Args:
150 Args:
  /external/clang/unittests/AST/
DeclPrinterTest.cpp 70 const std::vector<std::string> &Args,
79 if (!runToolOnCodeWithArgs(Factory->create(), Code, Args, FileName))
102 std::vector<std::string> Args(1, "-std=c++98");
104 Args,
114 std::vector<std::string> Args(1, "-std=c++98");
116 Args,
125 std::vector<std::string> Args(1, "-std=c++11");
127 Args,
137 std::vector<std::string> Args(1, "-std=c++11");
139 Args,
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/allocator.adaptor/
allocators.h 136 template <class U, class ...Args>
137 void construct(U* p, Args&& ...args)
139 ::new (p) U(std::forward<Args>(args)...);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/tuple/tuple.tuple/
allocators.h 136 template <class U, class ...Args>
137 void construct(U* p, Args&& ...args)
139 ::new (p) U(std::forward<Args>(args)...);
  /external/chromium_org/tools/grit/grit/format/policy_templates/writers/
template_writer.py 15 Args:
36 Args:
48 Args:
63 Args:
93 Args:
105 Args:
129 Args:
173 Args:
185 Args:
194 Args
    [all...]
  /external/clang/unittests/ASTMatchers/Dynamic/
RegistryTest.cpp 25 std::vector<ParserValue> Args() { return std::vector<ParserValue>(); }
26 std::vector<ParserValue> Args(const VariantValue &Arg1) {
31 std::vector<ParserValue> Args(const VariantValue &Arg1,
44 Registry::constructMatcher(MatcherName, SourceRange(), Args(), Error);
54 MatcherName, SourceRange(), Args(Arg1), Error);
65 MatcherName, SourceRange(), Args(Arg1, Arg2), Error);
  /dalvik/dx/src/com/android/dx/command/dump/
Main.java 29 static Args parsedArgs = new Args();
41 public static void main(String[] args) {
44 for (/*at*/; at < args.length; at++) {
45 String arg = args[at];
78 if (at == args.length) {
83 for (/*at*/; at < args.length; at++) {
85 String name = args[at];
  /external/clang/include/clang/ASTMatchers/Dynamic/
Diagnostics.h 146 std::vector<std::string> Args;
155 std::vector<std::string> Args;
  /external/clang/test/SemaCXX/
captured-statements.cpp 151 template <typename T, typename... Args>
152 T captured_sum(const T &a, const Args&... args) {
157 result = a + captured_sum(args...);
  /external/llvm/lib/Transforms/ObjCARC/
ObjCARCContract.cpp 271 Value *Args[] = { Load->getPointerOperand(), New };
272 if (Args[0]->getType() != I8XX)
273 Args[0] = new BitCastInst(Args[0], I8XX, "", Store);
274 if (Args[1]->getType() != I8X)
275 Args[1] = new BitCastInst(Args[1], I8X, "", Store);
277 CallInst *StoreStrong = CallInst::Create(Decl, Args, "", Store);
  /hardware/ti/omap3/omx/system/src/openmax_il/lcml/inc/
LCML_DspCodec.h 164 Args) \
171 Args) /* Macro End */
178 * @param args - Array of "void *" that contains the associated arguments for
188 args) \
192 args) /* Macro End */
237 * @param args - pointer to send some specific command to DSP
246 args) \
250 args) /* Macro End */

Completed in 1093 milliseconds

1 2 3 45 6 7 8 91011>>