/external/skqp/src/pdf/ |
SkPDFUnion.h | 14 template<class... Args> void init(Args&&... args) { 15 new (&this->get()) T(std::forward<Args>(args)...);
|
/external/spirv-llvm/lib/SPIRV/ |
OCL20To12.cpp | 126 mutateCallInstOCL(M, CI, [=](CallInst *, std::vector<Value *> &Args){ 127 Args.resize(1); 128 Args[0] = getInt32(M, std::get<0>(Lit));
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Option/ |
Arg.h | 111 void render(const ArgList &Args, ArgStringList &Output) const; 118 void renderAsInput(const ArgList &Args, ArgStringList &Output) const; 125 std::string getAsString(const ArgList &Args) const;
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/AsmPrinter/ |
DwarfFile.cpp | 89 auto Cached = ScopeVars.Args.find(ArgNum); 90 if (Cached == ScopeVars.Args.end()) 91 ScopeVars.Args[ArgNum] = Var;
|
/external/tensorflow/tensorflow/core/distributed_runtime/ |
partial_run_mgr.cc | 23 template <typename T, typename... Args> 24 std::unique_ptr<T> MakeUnique(Args&&... args) { 25 return std::unique_ptr<T>(new T(std::forward<Args>(args)...));
|
/device/google/cuttlefish_common/common/libs/utils/ |
subprocess.h | 82 template<typename T, typename...Args> 83 bool BuildParameter(std::stringstream* stream, T t, Args...args) { 85 BuildParameter(stream, args...); 110 template<typename... Args> 111 bool AddParameter(Args... args) { 113 if (BuildParameter(&ss, args...)) {
|
/external/clang/lib/CodeGen/ |
CGCUDARuntime.h | 55 virtual void emitDeviceStub(CodeGenFunction &CGF, FunctionArgList &Args) = 0;
|
/external/clang/tools/diagtool/ |
ShowEnabledWarnings.cpp | 67 SmallVector<const char *, 4> Args; 68 Args.push_back("diagtool"); 69 Args.append(argv, argv + argc); 71 createInvocationFromCommandLine(Args, InterimDiags));
|
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/ |
TensorSyclConvertToDeviceExpression.h | 37 template<template<class...> class NonOpCategory, bool IsConst, typename... Args> 39 typedef typename GetType<IsConst, NonOpCategory<typename ConvertToDeviceExpression<Args>::Type...> >::Type Type; 43 template<template<class, template <class> class > class NonOpCategory, bool IsConst, typename Args> 45 typedef typename GetType<IsConst, NonOpCategory<typename ConvertToDeviceExpression<Args>::Type, MakeGlobalPointer> >::Type Type;
|
TensorSyclLeafCount.h | 34 template<typename... Args> struct CategoryCount; 41 template<typename Arg, typename... Args> 42 struct CategoryCount<Arg,Args...>{ 43 static const size_t Count = LeafCount<Arg>::Count + CategoryCount<Args...>::Count;
|
/external/google-fruit/include/fruit/impl/meta/ |
wrappers.h | 29 template <typename ReturnType, typename... Args> 32 template <typename ReturnType, typename... Args> 33 struct apply<Type<ReturnType>, Type<Args>...> { 34 using type = Type<ReturnType(Args...)>;
|
/external/libbrillo/brillo/dbus/ |
dbus_object_test_helpers.h | 83 // |instance| and passes the |args| to it. The method's return value provided 90 template<class Class, typename... Params, typename... Args> 96 Args... args) { 105 (instance->*method)(std::move(method_response), args...); 118 template<class Class, typename... Params, typename... Args> 123 Args... args) { 132 (instance->*method)(std::move(method_response), args...);
|
/external/libchrome/base/ |
callback_list.h | 203 template <typename... Args> 204 class CallbackList<void(Args...)> 205 : public internal::CallbackListBase<RepeatingCallback<void(Args...)>> { 207 using CallbackType = RepeatingCallback<void(Args...)>; 212 void Notify(RunArgs&&... args) { 216 cb->Run(args...);
|
/external/libchrome/base/strings/ |
safe_sprintf.h | 208 const Arg* args, size_t max_args); 220 template<typename... Args> 221 ssize_t SafeSNPrintf(char* buf, size_t N, const char* fmt, Args... args) { 224 const internal::Arg arg_array[] = { args... }; 225 return internal::SafeSNPrintf(buf, N, fmt, arg_array, sizeof...(args)); 228 template<size_t N, typename... Args> 229 ssize_t SafeSPrintf(char (&buf)[N], const char* fmt, Args... args) { 232 const internal::Arg arg_array[] = { args... } [all...] |
/external/libcxx/test/std/utilities/variant/variant.variant/variant.mod/ |
emplace_index_init_list_args.pass.cpp | 25 // template <size_t I, class U, class ...Args> 26 // variant_alternative_t<I, variant<Types...>>& emplace(initializer_list<U> il,Args&&... args); 49 template <class Var, size_t I, class... Args> 51 std::declval<Var>().template emplace<I>(std::declval<Args>()...), true) { 60 template <class Var, size_t I, class... Args> constexpr bool emplace_exists() { 61 return test_emplace_exists_imp<Var, I, Args...>(0); 70 static_assert(!emplace_exists<V, 2, int>(), "args don't match"); 71 static_assert(!emplace_exists<V, 2, IL, int>(), "too many args"); 73 static_assert(!emplace_exists<V, 3, int>(), "args don't match") [all...] |
emplace_type_init_list_args.pass.cpp | 25 // template <class T, class U, class ...Args> 26 // T& emplace(initializer_list<U> il,Args&&... args); 49 template <class Var, class T, class... Args> 51 std::declval<Var>().template emplace<T>(std::declval<Args>()...), true) { 60 template <class... Args> constexpr bool emplace_exists() { 61 return test_emplace_exists_imp<Args...>(0); 69 static_assert(!emplace_exists<V, InitList, int>(), "args don't match"); 70 static_assert(!emplace_exists<V, InitList, IL, int>(), "too many args"); 72 static_assert(!emplace_exists<V, InitListArg, int>(), "args don't match") [all...] |
/external/llvm/examples/Kaleidoscope/Chapter3/ |
toy.cpp | 138 std::vector<std::unique_ptr<ExprAST>> Args; 142 std::vector<std::unique_ptr<ExprAST>> Args) 143 : Callee(Callee), Args(std::move(Args)) {} 152 std::vector<std::string> Args; 155 PrototypeAST(const std::string &Name, std::vector<std::string> Args) 156 : Name(Name), Args(std::move(Args)) {} 246 std::vector<std::unique_ptr<ExprAST>> Args; 250 Args.push_back(std::move(Arg)) [all...] |
/external/llvm/examples/Kaleidoscope/Chapter4/ |
toy.cpp | 147 std::vector<std::unique_ptr<ExprAST>> Args; 151 std::vector<std::unique_ptr<ExprAST>> Args) 152 : Callee(Callee), Args(std::move(Args)) {} 161 std::vector<std::string> Args; 164 PrototypeAST(const std::string &Name, std::vector<std::string> Args) 165 : Name(Name), Args(std::move(Args)) {} 255 std::vector<std::unique_ptr<ExprAST>> Args; 259 Args.push_back(std::move(Arg)) [all...] |
/external/llvm/lib/Target/AArch64/ |
AArch64CallLowering.cpp | 57 MachineIRBuilder &MIRBuilder, const Function::ArgumentListType &Args, 65 unsigned NumArgs = Args.size(); 66 Function::const_arg_iterator CurOrigArg = Args.begin(); 77 assert(ArgLocs.size() == Args.size() && 78 "We have a different number of location and args?!");
|
/external/skia/fuzz/ |
Fuzz.h | 54 template <typename Arg, typename... Args> 55 void next(Arg* first, Args... rest); 89 template <typename Arg, typename... Args> 90 inline void Fuzz::next(Arg* first, Args... rest) {
|
/external/skia/src/core/ |
SkLiteDL.h | 81 template <typename T, typename... Args> 82 void* push(size_t, Args&&...); 84 template <typename Fn, typename... Args> 85 void map(const Fn[], Args...) const;
|
/external/skqp/fuzz/ |
Fuzz.h | 54 template <typename Arg, typename... Args> 55 void next(Arg* first, Args... rest); 89 template <typename Arg, typename... Args> 90 inline void Fuzz::next(Arg* first, Args... rest) {
|
/external/skqp/src/core/ |
SkLiteDL.h | 80 template <typename T, typename... Args> 81 void* push(size_t, Args&&...); 83 template <typename Fn, typename... Args> 84 void map(const Fn[], Args...) const;
|
/external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/Chapter3/ |
toy.cpp | 145 std::vector<std::unique_ptr<ExprAST>> Args; 149 std::vector<std::unique_ptr<ExprAST>> Args) 150 : Callee(Callee), Args(std::move(Args)) {} 160 std::vector<std::string> Args; 163 PrototypeAST(const std::string &Name, std::vector<std::string> Args) 164 : Name(Name), Args(std::move(Args)) {} 257 std::vector<std::unique_ptr<ExprAST>> Args; 261 Args.push_back(std::move(Arg)) [all...] |
/external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/Chapter4/ |
toy.cpp | 155 std::vector<std::unique_ptr<ExprAST>> Args; 159 std::vector<std::unique_ptr<ExprAST>> Args) 160 : Callee(Callee), Args(std::move(Args)) {} 170 std::vector<std::string> Args; 173 PrototypeAST(const std::string &Name, std::vector<std::string> Args) 174 : Name(Name), Args(std::move(Args)) {} 267 std::vector<std::unique_ptr<ExprAST>> Args; 271 Args.push_back(std::move(Arg)) [all...] |