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

1 2 3 45 6 7 8 91011>>

  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
sizeofpack.cpp 19 array<sizeof...(Types)> make_array1(Types&&... args);
28 int make_array(array<sizeof...(Types)>&, Types... args);
41 static array<sizeof...(Types)> make_array(Types ... args);
83 template<class Ex, typename... Args>
84 void cxx_throw(typename enable_if<(sizeof...(Args) > 0), const char *>::type fmt, Args&&... args) {
123 template<typename T, typename... Args>
126 static const int count = 1 + Counter<Args...>::count;
135 template<typename Arg, typename... Args>
    [all...]
  /external/eigen/unsupported/Eigen/CXX11/src/Tensor/
TensorSyclTuple.h 117 /// \tparam Args the type of the arguments to construct the tuple from
118 /// \param args zero or more arguments to construct the tuple from
119 /// \return Tuple<Args...>
120 template <typename... Args>
121 Tuple<Args...> make_tuple(Args... args) {
122 return Tuple<Args...>(args...);
128 /// \tparam Args the type of the arguments to construct the tuple fro
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/ToolDrivers/llvm-dlltool/
DlltoolDriver.cpp 89 llvm::opt::InputArgList Args =
92 llvm::errs() << Args.getArgString(MissingIndex) << ": missing argument\n";
97 if (Args.hasArgNoClaim(OPT_INPUT) ||
98 (!Args.hasArgNoClaim(OPT_d) && !Args.hasArgNoClaim(OPT_l))) {
104 if (!Args.hasArgNoClaim(OPT_m) && Args.hasArgNoClaim(OPT_d)) {
110 for (auto *Arg : Args.filtered(OPT_UNKNOWN))
113 if (!Args.hasArg(OPT_d)) {
119 openFile(Args.getLastArg(OPT_d)->getValue())
    [all...]
  /external/llvm/lib/ExecutionEngine/Interpreter/
ExternalFunctions.cpp 195 std::vector<ffi_type*> args(NumArgs);
200 args[ArgNo] = ffiTypeFor(ArgTy);
219 if (ffi_prep_cif(&cif, FFI_DEFAULT_ABI, NumArgs, rtype, &args[0]) == FFI_OK) {
300 ArrayRef<GenericValue> Args) {
301 assert(Args.size() == 1);
302 TheInterpreter->addAtExitHandler((Function*)GVTOP(Args[0]));
309 static GenericValue lle_X_exit(FunctionType *FT, ArrayRef<GenericValue> Args) {
310 TheInterpreter->exitCalled(Args[0]);
315 static GenericValue lle_X_abort(FunctionType *FT, ArrayRef<GenericValue> Args) {
325 ArrayRef<GenericValue> Args) {
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/ExecutionEngine/Interpreter/
ExternalFunctions.cpp 206 std::vector<ffi_type*> args(NumArgs);
211 args[ArgNo] = ffiTypeFor(ArgTy);
230 if (ffi_prep_cif(&cif, FFI_DEFAULT_ABI, NumArgs, rtype, &args[0]) == FFI_OK) {
310 ArrayRef<GenericValue> Args) {
311 assert(Args.size() == 1);
312 TheInterpreter->addAtExitHandler((Function*)GVTOP(Args[0]));
319 static GenericValue lle_X_exit(FunctionType *FT, ArrayRef<GenericValue> Args) {
320 TheInterpreter->exitCalled(Args[0]);
325 static GenericValue lle_X_abort(FunctionType *FT, ArrayRef<GenericValue> Args) {
335 ArrayRef<GenericValue> Args) {
    [all...]
  /external/grpc-grpc/test/cpp/microbenchmarks/
bm_fullstack_streaming_ping_pong.cc 34 // Generate Args for StreamingPingPong benchmarks. Currently generates args for
39 b->Args({0, 0}); // spl case: 0 ping-pong msgs (msg_size doesn't matter here)
43 b->Args({msg_size, 1});
44 b->Args({msg_size, 2});
82 // Generate Args for StreamingPingPongWithCoalescingApi benchmarks. Currently
83 // generates args for only "small streams" (i.e streams with 0, 1 or 2 messages)
88 b->Args(
90 b->Args(
95 b->Args({msg_size, 1, 0})
    [all...]
  /external/llvm/lib/DebugInfo/PDB/
PDBSymbolFunc.cpp 45 Args.push_back(std::move(Child));
52 uint32_t getChildCount() const override { return Args.size(); }
56 if (Index >= Args.size())
60 Args[Index]->getSymIndexId());
64 if (CurIter == Args.end())
71 void reset() override { CurIter = Args.empty() ? Args.end() : Args.begin(); }
81 ArgListType Args;
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/PDB/
PDBSymbolFunc.cpp 44 Args.push_back(std::move(Child));
51 uint32_t getChildCount() const override { return Args.size(); }
55 if (Index >= Args.size())
59 Args[Index]->getSymIndexId());
63 if (CurIter == Args.end())
70 void reset() override { CurIter = Args.empty() ? Args.end() : Args.begin(); }
80 ArgListType Args;
  /external/google-fruit/include/fruit/impl/meta/
signatures.h 27 // Similar to ConsSignature, but takes a Vector of args instead of individual args.
32 template <typename ReturnType, typename... Args>
33 struct apply<Type<ReturnType>, Vector<Type<Args>...>> {
34 using type = Type<ReturnType(Args...)>;
64 template <typename C, typename... Args>
65 struct apply<Type<C(Args...)>> {
  /external/llvm/lib/Target/Hexagon/
HexagonSelectionDAGInfo.cpp 35 TargetLowering::ArgListTy Args;
39 Args.push_back(Entry);
41 Args.push_back(Entry);
43 Args.push_back(Entry);
55 std::move(Args))
  /external/llvm/lib/Target/XCore/
XCoreSelectionDAGInfo.cpp 28 TargetLowering::ArgListTy Args;
31 Entry.Node = Dst; Args.push_back(Entry);
32 Entry.Node = Src; Args.push_back(Entry);
33 Entry.Node = Size; Args.push_back(Entry);
42 std::move(Args))
  /external/pdfium/third_party/base/
ptr_util.h 43 // MakeUnique<T>(args) should be preferred over WrapUnique(new T(args)): bare
54 template <typename T, typename... Args>
55 typename internal::MakeUniqueResult<T>::Scalar MakeUnique(Args&&... args) {
56 return std::unique_ptr<T>(new T(std::forward<Args>(args)...));
68 template <typename T, typename... Args>
69 typename internal::MakeUniqueResult<T>::Invalid MakeUnique(Args&&... args)
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/
Program.h 92 ArrayRef<StringRef> Args, ///< An array of strings that are passed to the
127 ProcessInfo ExecuteNoWait(StringRef Program, ArrayRef<StringRef> Args,
137 ArrayRef<StringRef> Args);
142 ArrayRef<const char *> Args);
204 std::string flattenWindowsCommandLine(ArrayRef<StringRef> Args);
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/XCore/
XCoreSelectionDAGInfo.cpp 28 TargetLowering::ArgListTy Args;
31 Entry.Node = Dst; Args.push_back(Entry);
32 Entry.Node = Src; Args.push_back(Entry);
33 Entry.Node = Size; Args.push_back(Entry);
42 std::move(Args))
  /art/runtime/interpreter/
lock_count_data.h 56 template <typename T, typename... Args>
57 void VisitMonitors(T visitor, Args&&... args) REQUIRES_SHARED(Locks::mutator_lock_) {
61 visitor(/* inout */ &obj, std::forward<Args>(args)...);
  /external/clang/test/Index/
annotate-tokens-cxx0x.cpp 1 template<typename ...Args>
2 int f(Args ...args) {
3 return sizeof...(args) + sizeof...(Args);
69 // CHECK: Identifier: "args" [3:20 - 3:24] SizeOfPackExpr=args:2:15
70 // CHECK: Identifier: "Args" [3:38 - 3:42] TypeRef=Args:1:22
  /external/libchrome/base/memory/
protected_memory_cfi.h 40 template <typename... Args>
42 auto operator()(Args&&... args) {
43 return function_(std::forward<Args>(args)...);
  /external/libchrome/base/
no_destructor.h 53 template <typename... Args>
54 explicit NoDestructor(Args&&... args) {
55 new (storage_) T(std::forward<Args>(args)...);
  /external/skia/include/private/
SkOnce.h 24 template <typename Fn, typename... Args>
25 void operator()(Fn&& fn, Args&&... args) {
37 fn(std::forward<Args>(args)...);
  /external/skqp/include/private/
SkOnce.h 24 template <typename Fn, typename... Args>
25 void operator()(Fn&& fn, Args&&... args) {
37 fn(std::forward<Args>(args)...);
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/dsymutil/
NonRelocatableStringpool.h 68 template <typename... Args>
69 explicit StrongType(Args... A) : T(std::forward<Args>(A)...) {}
  /art/tools/jvmti-agents/ti-fast/
tifast.cc 40 template <typename ...Args> static void Unused(Args... args ATTRIBUTE_UNUSED) {}
73 // Setup for all supported events. Give a macro with fun(name, event_num, args)
114 #define GENERATE_EMPTY_FUNCTION(name, number, args, argnames) \
115 static void JNICALL empty ## name args { Unused argnames ; }
120 #define CREATE_EMPTY_EVENT_CALLBACKS(name, num, args, argnames) \
327 template <typename ...Args> void PrintRestNoJNI(jvmtiEnv* jvmti, Args... args) {
    [all...]
  /external/google-fruit/include/fruit/impl/component_storage/
component_storage_entry.defn.h 70 template <typename Component, typename... Args>
75 using fun_t = Component (*)(Args...);
76 std::tuple<Args...> args_tuple;
79 inline ComponentInterfaceImpl(fun_t fun, std::tuple<Args...> args_tuple)
87 const auto& casted_other = static_cast<const ComponentInterfaceImpl<Component, Args...>&>(other);
92 Component component = callWithTuple<Component, Args...>(reinterpret_cast<fun_t>(erased_fun), args_tuple);
108 return fruit::impl::getTypeId<Component (*)(Args...)>();
112 template <typename Component, typename... Args>
113 inline ComponentStorageEntry ComponentStorageEntry::LazyComponentWithArgs::create(Component (*fun)(Args...),
114 std::tuple<Args...> args_tuple)
    [all...]
  /external/llvm/include/llvm/Option/
ArgList.h 36 const ArgList &Args;
57 arg_iterator(SmallVectorImpl<Arg *>::const_iterator it, const ArgList &Args,
60 : Current(it), Args(Args), Id0(Id0), Id1(Id1), Id2(Id2) {
104 arglist_type Args;
116 ArgList(ArgList &&RHS) : Args(std::move(RHS.Args)) { RHS.Args.clear(); }
118 Args = std::move(RHS.Args);
    [all...]
  /external/pdfium/core/fpdfapi/parser/
cpdf_indirect_object_holder.h 37 template <typename T, typename... Args>
39 Args&&... args) {
41 AddIndirectObject(pdfium::MakeUnique<T>(std::forward<Args>(args)...)));
43 template <typename T, typename... Args>
45 Args&&... args) {
47 pdfium::MakeUnique<T>(m_pByteStringPool, std::forward<Args>(args)...)))
    [all...]

Completed in 3641 milliseconds

1 2 3 45 6 7 8 91011>>