HomeSort by relevance Sort by last modified time
    Searched refs:Args (Results 126 - 150 of 537) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/llvm/examples/Fibonacci/
fibonacci.cpp 129 std::vector<GenericValue> Args(1);
130 Args[0].IntVal = APInt(32, n);
131 GenericValue GV = EE->runFunction(FibF, Args);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/allocator.traits/allocator.traits.members/
construct.pass.cpp 15 // template <class Ptr, class... Args>
16 // static void construct(allocator_type& a, Ptr p, Args&&... args);
40 template <class U, class ...Args>
41 void construct(U* p, Args&& ...args)
44 ::new ((void*)p) U(std::forward<Args>(args)...);
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 151 std::vector<ExprAST*> Args;
153 CallExprAST(const std::string &callee, std::vector<ExprAST*> &args)
154 : Callee(callee), Args(args) {}
183 std::vector<std::string> Args;
187 PrototypeAST(const std::string &name, const std::vector<std::string> &args,
189 : Name(name), Args(args), isOperator(isoperator), Precedence(prec) {}
191 bool isUnaryOp() const { return isOperator && Args.size() == 1; }
192 bool isBinaryOp() const { return isOperator && Args.size() == 2;
    [all...]
  /external/clang/lib/AST/
DeclTemplate.cpp 167 ArrayRef<TemplateArgument> Args,
171 EntryType::Profile(ID,Args, getASTContext());
180 TemplateArgument *Args) {
213 *Args++ = Arg;
266 FunctionTemplateDecl::findSpecialization(ArrayRef<TemplateArgument> Args,
268 return findSpecializationImpl(getSpecializations(), Args, InsertPos);
353 ClassTemplateDecl::findSpecialization(ArrayRef<TemplateArgument> Args,
355 return findSpecializationImpl(getSpecializations(), Args, InsertPos);
373 ClassTemplateDecl::findPartialSpecialization(ArrayRef<TemplateArgument> Args,
375 return findSpecializationImpl(getPartialSpecializations(), Args, InsertPos)
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
logtesting.py 51 Args:
107 Args:
141 Args:
196 Args:
254 Args:
  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
p4.cpp 63 template<typename ...Args> struct Var {
64 Var(const Args &...args, int *) { Foo(args...); }
85 template<typename T, typename... Args> void f(Args... args) {
87 constexpr T t(args...);
  /external/lldb/source/Commands/
CommandObjectDisassemble.h 101 DoExecute (Args& command,
CommandObjectPlatform.cpp 22 #include "lldb/Interpreter/Args.h"
59 HandleCompletion (Args &input,
88 DoExecute (Args& args, CommandReturnObject &result)
90 if (args.GetArgumentCount() == 1)
92 const char *platform_name = args.GetArgumentAtIndex (0);
151 DoExecute (Args& args, CommandReturnObject &result)
206 DoExecute (Args& args, CommandReturnObject &result
    [all...]
  /external/lldb/source/Interpreter/
OptionValueFileSpecLIst.cpp 17 #include "lldb/Interpreter/Args.h"
47 Args args(value);
48 const size_t argc = args.GetArgumentCount();
59 uint32_t idx = Args::StringToUInt32(args.GetArgumentAtIndex(0), UINT32_MAX);
69 FileSpec file (args.GetArgumentAtIndex(i), false);
94 FileSpec file (args.GetArgumentAtIndex(i), false);
108 uint32_t idx = Args::StringToUInt32(args.GetArgumentAtIndex(0), UINT32_MAX)
    [all...]
OptionValueFormat.cpp 20 #include "lldb/Interpreter/Args.h"
52 error = Args::StringToFormat (value_cstr, new_format, NULL);
OptionValuePathMappings.cpp 17 #include "lldb/Interpreter/Args.h"
39 Args args(value);
40 const size_t argc = args.GetArgumentCount();
52 uint32_t idx = Args::StringToUInt32(args.GetArgumentAtIndex(0), UINT32_MAX);
62 ConstString a(args.GetArgumentAtIndex(i));
63 ConstString b(args.GetArgumentAtIndex(i+1));
95 ConstString a(args.GetArgumentAtIndex(i));
96 ConstString b(args.GetArgumentAtIndex(i+1))
    [all...]
OptionValueSInt64.cpp 17 #include "lldb/Interpreter/Args.h"
53 int64_t value = Args::StringToSInt64 (value_cstr, 0, 0, &success);
OptionValueString.cpp 17 #include "lldb/Interpreter/Args.h"
36 Args::ExpandEscapedCharacters(m_current_value.c_str(), expanded_escape_value);
103 Args::EncodeEscapeSequences (value_cstr, str);
134 Args::EncodeEscapeSequences (value_cstr, m_current_value);
  /external/clang/lib/Tooling/
Tooling.cpp 116 std::vector<std::string> Args;
117 Args.push_back("clang-tool");
118 Args.push_back("-fsyntax-only");
119 Args.insert(Args.end(), ExtraArgs.begin(), ExtraArgs.end());
120 Args.push_back(FileName.str());
121 return Args;
125 const std::vector<std::string> &Args,
131 ToolInvocation Invocation(getSyntaxOnlyToolArgs(Args, FileNameRef), ToolAction,
406 const std::vector<std::string> &Args,
    [all...]
  /external/chromium_org/chrome/test/ispy/common/
ispy_utils.py 29 Args:
42 Args:
56 Args:
72 Args:
81 Args:
91 Args:
105 Args:
117 Args:
137 Args:
169 Args
    [all...]
  /external/clang/include/clang/ASTMatchers/Dynamic/
Parser.h 89 /// \param Args The argument list for the matcher.
97 ArrayRef<ParserValue> Args,
122 ArrayRef<ParserValue> Args,
  /external/clang/include/clang/StaticAnalyzer/Checkers/
ObjCRetainCount.h 192 llvm::SmallVector<ArgEffect, 10> Args;
200 ArrayRef<ArgEffect> getArgs() const { return Args; }
  /external/clang/lib/CodeGen/
CGStmtOpenMP.cpp 39 llvm::Value *Args[] = {
48 EmitRuntimeCall(RTLFn, Args);
  /external/lldb/include/lldb/Interpreter/
OptionValueArray.h 163 GetArgs (Args &args) const;
166 SetArgs (const Args &args, VarSetOperationType op);
  /external/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/
DynamicLoaderPOSIXDYLD.h 77 ExecutePluginCommand(lldb_private::Args &command, lldb_private::Stream *strm);
80 EnablePluginLogging(lldb_private::Stream *strm, lldb_private::Args &command);
  /external/llvm/include/llvm/ADT/
VariadicFunction.h 69 /// ResultT FooImpl(ArrayRef<const ArgT *> Args) {
70 /// // 'Args[i]' is a pointer to the i-th argument passed to Foo().
97 /// ArrayRef<const ArgT *> Args) { ... }
113 const ArgT *const Args[] = { LLVM_COMMA_JOIN ## N(&A) }; \
114 return Func(makeArrayRef(Args)); \
160 const ArgT *const Args[] = { LLVM_COMMA_JOIN ## N(&A) }; \
161 return Func(P0, makeArrayRef(Args)); \
208 const ArgT *const Args[] = { LLVM_COMMA_JOIN ## N(&A) }; \
209 return Func(P0, P1, makeArrayRef(Args)); \
257 const ArgT *const Args[] = { LLVM_COMMA_JOIN ## N(&A) };
    [all...]
  /external/llvm/include/llvm/IR/
LegacyPassNameParser.h 131 template<const char *Args>
135 return(std::strstr(Args, P.getPassArgument()));
  /external/llvm/lib/IR/
Module.cpp 133 va_list Args;
134 va_start(Args, RetTy);
138 while (Type *ArgTy = va_arg(Args, Type*))
141 va_end(Args);
151 va_list Args;
152 va_start(Args, RetTy);
156 while (Type *ArgTy = va_arg(Args, Type*))
159 va_end(Args);
  /external/chromium_org/third_party/mesa/src/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/compiler-rt/lib/ubsan/
ubsan_diag.cc 134 static void renderText(const char *Message, const Diag::Arg *Args) {
145 const Diag::Arg &A = Args[*++Msg - '0'];
199 const Diag::Arg *Args) {
255 renderText(InRange->getText(), Args);
295 renderText(Message, Args);
301 NumRanges, Args);

Completed in 474 milliseconds

1 2 3 4 56 7 8 91011>>