Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Public Types | Public Member Functions | Public Attributes | List of all members
impeller::android::AndroidProc< T > Struct Template Reference

#include <proc_table.h>

Public Types

using AndroidProcType = T
 

Public Member Functions

constexpr bool IsAvailable () const
 
constexpr operator bool () const
 
template<class... Args>
auto operator() (Args &&... args) const
 
void Reset ()
 

Public Attributes

const char * proc_name = nullptr
 
AndroidProcTypeproc = nullptr
 

Detailed Description

template<class T>
struct impeller::android::AndroidProc< T >

Definition at line 65 of file proc_table.h.

Member Typedef Documentation

◆ AndroidProcType

template<class T >
using impeller::android::AndroidProc< T >::AndroidProcType = T

Definition at line 66 of file proc_table.h.

Member Function Documentation

◆ IsAvailable()

template<class T >
constexpr bool impeller::android::AndroidProc< T >::IsAvailable ( ) const
inlineconstexpr

Definition at line 72 of file proc_table.h.

72{ return proc != nullptr; }

◆ operator bool()

template<class T >
constexpr impeller::android::AndroidProc< T >::operator bool ( ) const
inlineexplicitconstexpr

Definition at line 74 of file proc_table.h.

74{ return IsAvailable(); }
constexpr bool IsAvailable() const
Definition proc_table.h:72

◆ operator()()

template<class T >
template<class... Args>
auto impeller::android::AndroidProc< T >::operator() ( Args &&...  args) const
inline

Definition at line 77 of file proc_table.h.

77 {
79 << "Android method " << proc_name
80 << " is not available on this device. Missing check.";
81 return proc(std::forward<Args>(args)...);
82 }
G_BEGIN_DECLS G_MODULE_EXPORT FlValue * args
#define FML_DCHECK(condition)
Definition logging.h:103

◆ Reset()

template<class T >
void impeller::android::AndroidProc< T >::Reset ( )
inline

Definition at line 84 of file proc_table.h.

84{ proc = nullptr; }

Member Data Documentation

◆ proc

template<class T >
AndroidProcType* impeller::android::AndroidProc< T >::proc = nullptr

Definition at line 70 of file proc_table.h.

◆ proc_name

template<class T >
const char* impeller::android::AndroidProc< T >::proc_name = nullptr

Definition at line 68 of file proc_table.h.


The documentation for this struct was generated from the following file: