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

1 23 4 5 6 7 8 91011>>

  /external/google-fruit/include/fruit/impl/
fruit_internal_forward_decls.h 36 template <typename Component, typename... Args>
39 template <typename Component, typename... Args>
  /external/google-fruit/include/fruit/impl/util/
hash_codes.h 25 template <typename... Args>
26 std::size_t hashTuple(const std::tuple<Args...>& x);
  /external/llvm/lib/Option/
Option.cpp 32 assert(getAlias().isValid() && "Only alias options can have alias args.");
33 assert(getKind() == FlagClass && "Only Flag aliases can have alias args.");
35 "Cannot provide alias args to a flag option.");
104 Arg *Option::accept(const ArgList &Args,
111 Spelling = StringRef(Args.getArgString(Index), ArgSize);
113 Spelling = Args.MakeArgString(Twine(UnaliasedOption.getPrefix()) +
119 if (ArgSize != strlen(Args.getArgString(Index)))
140 const char *Value = Args.getArgString(Index) + ArgSize;
145 const char *Str = Args.getArgString(Index) + ArgSize;
174 if (ArgSize != strlen(Args.getArgString(Index))
    [all...]
  /external/pdfium/fpdfsdk/
fsdk_filewriteadapter.h 16 template <typename T, typename... Args>
17 friend RetainPtr<T> pdfium::MakeRetain(Args&&... args);
  /external/pdfium/xfa/fxfa/
cxfa_linkuserdata.h 16 template <typename T, typename... Args>
17 friend RetainPtr<T> pdfium::MakeRetain(Args&&... args);
  /external/perfetto/src/trace_processor/
args_tracker.h 26 // Tracks and stores args for rows until the end of the packet. This allows
27 // allows args to pushed as a group into storage.
30 using Variadic = TraceStorage::Args::Variadic;
37 // Commits the added args to storage.
41 std::vector<TraceStorage::Args::Arg> args_;
  /external/skia/src/core/
SkArenaAllocList.h 28 template <typename... Args>
29 inline T& append(SkArenaAlloc* arena, Args... args);
52 template <typename... Args>
53 Node(Args... args) : fT(std::forward<Args>(args)...) {}
62 template <typename... Args>
63 T& SkArenaAllocList<T>::append(SkArenaAlloc* arena, Args... args)
    [all...]
  /external/skqp/src/core/
SkArenaAllocList.h 28 template <typename... Args>
29 inline T& append(SkArenaAlloc* arena, Args... args);
52 template <typename... Args>
53 Node(Args... args) : fT(std::forward<Args>(args)...) {}
62 template <typename... Args>
63 T& SkArenaAllocList<T>::append(SkArenaAlloc* arena, Args... args)
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Option/
Option.cpp 35 assert(getAlias().isValid() && "Only alias options can have alias args.");
36 assert(getKind() == FlagClass && "Only Flag aliases can have alias args.");
38 "Cannot provide alias args to a flag option.");
110 Arg *Option::accept(const ArgList &Args,
117 Spelling = StringRef(Args.getArgString(Index), ArgSize);
119 Spelling = Args.MakeArgString(Twine(UnaliasedOption.getPrefix()) +
125 if (ArgSize != strlen(Args.getArgString(Index)))
146 const char *Value = Args.getArgString(Index) + ArgSize;
151 const char *Str = Args.getArgString(Index) + ArgSize;
180 if (ArgSize != strlen(Args.getArgString(Index))
    [all...]
  /external/clang/lib/AST/
SelectorLocationsKind.cpp 65 SourceLocation getArgLoc(unsigned Index, ArrayRef<T*> Args) {
66 return Index < Args.size() ? getArgLoc(Args[Index]) : SourceLocation();
72 ArrayRef<T *> Args,
74 // Are selector locations in standard position with no space between args ?
78 Args, EndLoc))
84 // Are selector locations in standard position with space between args ?
87 Args, EndLoc))
99 ArrayRef<Expr *> Args,
101 return hasStandardSelLocs(Sel, SelLocs, Args, EndLoc)
    [all...]
  /external/libbrillo/brillo/dbus/
dbus_signal_handler.h 21 // C++ signal handler with expected signal parameters as native method args.
34 template<typename... Args>
39 base::Callback<void(Args...)> signal_callback,
46 const base::Callback<void(Args...)>& signal_callback,
50 auto signal_callback_wrapper = [signal_callback](const Args&... args) {
52 signal_callback.Run(args...);
57 DBusParamReader<false, Args...>::Invoke(
dbus_object_internal_impl.h 16 // void callback(Args...);
19 // void handler(Args...);
20 // ReturnType handler(Args...);
21 // bool handler(ErrorPtr* error, Args...);
22 // void handler(std::unique_ptr<DBusMethodResponse<T1, T2,...>>, Args...);
63 // |Args...| which can contain both inputs (passed in by value or constant
69 // R(Args...)
70 template<typename R, typename... Args>
77 const base::Callback<R(Args...)>& handler) : handler_(handler) {}
82 auto invoke_callback = [this, &method_response](const Args&... args)
    [all...]
dbus_param_reader.h 53 // args... - the callback parameters processed so far.
54 template<typename CallbackType, typename... Args>
58 const Args&... args) {
59 return InvokeHelper<CurrentParam, CallbackType, Args...>(
60 handler, reader, error, static_cast<const Args&>(args)...);
73 template<typename ParamType, typename CallbackType, typename... Args>
78 const Args&... args) {
    [all...]
  /external/libchrome/mojo/public/cpp/bindings/
filter_chain.h 29 template <typename FilterType, typename... Args>
30 inline void Append(Args&&... args);
49 template <typename FilterType, typename... Args>
50 inline void FilterChain::Append(Args&&... args) {
51 Append(std::make_unique<FilterType>(std::forward<Args>(args)...));
callback_helpers.h 60 template <typename... Args>
61 class CallbackWithDeleteHelper<void(Args...)> {
63 using CallbackType = base::OnceCallback<void(Args...)>;
69 explicit CallbackWithDeleteHelper(CallbackType callback, BoundArgs&&... args)
73 std::forward<BoundArgs>(args)...);
90 void Run(Args... args) {
92 std::move(callback_).Run(std::forward<Args>(args)...);
104 template <typename T, typename... Args>
    [all...]
  /external/clang/lib/Driver/
Tools.cpp 55 static void handleTargetFeaturesGroup(const ArgList &Args,
58 for (const Arg *A : Args.filtered(Group)) {
69 Features.push_back(Args.MakeArgString((IsNegative ? "-" : "+") + Name));
113 static void CheckPreprocessingOptions(const Driver &D, const ArgList &Args) {
114 if (Arg *A = Args.getLastArg(options::OPT_C, options::OPT_CC)) {
115 if (!Args.hasArg(options::OPT_E) && !Args.hasArg(options::OPT__SLASH_P) &&
116 !Args.hasArg(options::OPT__SLASH_EP) && !D.CCCIsCPP()) {
118 << A->getBaseArg().getAsString(Args)
126 static void CheckCodeGenerationOptions(const Driver &D, const ArgList &Args) {
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/FuzzMutate/
FuzzerCLI.cpp 40 std::vector<std::string> Args{ExecName};
50 Args.push_back("-global-isel");
52 Args.push_back("-O0");
54 Args.push_back("-" + Opt.str());
56 Args.push_back("-mtriple=" + Opt.str());
62 errs() << NameAndArgs.first << ": Injected args:";
63 for (int I = 1, E = Args.size(); I < E; ++I)
64 errs() << " " << Args[I];
68 CLArgs.reserve(Args.size());
69 for (std::string &S : Args)
    [all...]
  /external/tensorflow/tensorflow/core/framework/
rendezvous.h 48 struct Args {
89 // (e.g., a not-taken branch). args is passed by Send to the
95 virtual Status Send(const ParsedKey& key, const Args& args, const Tensor& val,
101 // two Rendezvous::Args, one provided by the sender, the other by the
104 typedef std::function<void(const Status&, const Args&, const Args&,
108 virtual void RecvAsync(const ParsedKey& key, const Args& args,
112 Status Recv(const ParsedKey& key, const Args& args, Tensor* val
    [all...]
  /external/libchrome/base/
bind.h 108 typename Args,
114 typename... Args,
118 TypeList<Args...>,
121 : AssertConstructible<Ns, Args, std::decay_t<Args>, Unwrapped, Params>... {
157 // Transforms |Args| into `Unwrapped` types, and packs them into a TypeList.
160 template <bool is_once, bool is_method, typename... Args>
162 using Type = TypeList<TransformToUnwrappedType<is_once, Args>...>;
169 template <bool is_once, typename Receiver, typename... Args>
170 struct MakeUnwrappedTypeListImpl<is_once, true, Receiver, Args...>
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/hidl/1.2/
hidl_return_util.h 32 template <typename ObjT, typename WorkFuncT, typename... Args>
35 const std::function<void(const SupplicantStatus&)>& hidl_cb, Args&&... args)
38 hidl_cb((obj->*work)(std::forward<Args>(args)...));
47 template <typename ObjT, typename WorkFuncT, typename ReturnT, typename... Args>
51 Args&&... args)
55 (obj->*work)(std::forward<Args>(args)...)
    [all...]
  /external/bcc/src/cc/
common.h 26 template <class T, class... Args>
28 make_unique(Args &&... args) {
29 return std::unique_ptr<T>(new T(std::forward<Args>(args)...));
  /external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.call/
p1-0x.cpp 29 template<typename ...Args>
30 typename get_nth_type<0, Args...>::type first_arg(Args...);
32 template<typename ...Args>
33 typename get_nth_type<1, Args...>::type second_arg(Args...);
42 template<typename ...Args>
43 typename get_nth_type<0, Args...>::type first_arg_ref(Args&...);
45 template<typename ...Args>
    [all...]
  /external/libchrome/mojo/public/cpp/bindings/lib/
serialization_forward.h 38 typename... Args,
41 void Serialize(InputUserType&& input, Args&&... args) {
44 std::forward<Args>(args)...);
50 typename... Args,
53 bool Deserialize(DataType&& input, InputUserType* output, Args&&... args) {
55 std::forward<DataType>(input), output, std::forward<Args>(args)...)
    [all...]
  /external/llvm/include/llvm/Support/
thread.h 53 template <class Function, class... Args>
54 explicit thread(Function &&f, Args &&... args) {
55 f(std::forward<Args>(args)...);
  /external/perfetto/include/perfetto/base/
no_destructor.h 45 template <typename... Args>
46 explicit NoDestructor(Args&&... args) {
47 new (storage_) T(std::forward<Args>(args)...);

Completed in 1712 milliseconds

1 23 4 5 6 7 8 91011>>