Lines Matching defs:StorageType

77   typedef T StorageType;
82 static inline APIArgType StorageToAPIArg(StorageType& t) { return &t; }
87 static inline T& StorageToPluginArg(StorageType& t) { return t; }
91 static inline void Initialize(StorageType* /* t */) {}
106 typedef PP_Resource StorageType;
108 static inline APIArgType StorageToAPIArg(StorageType& t) {
117 static inline T StorageToPluginArg(StorageType& t) {
121 static inline void Initialize(StorageType* t) {
146 typedef PP_Var StorageType;
148 static inline APIArgType StorageToAPIArg(StorageType& t) {
155 static inline pp::Var StorageToPluginArg(StorageType& t) {
159 static inline void Initialize(StorageType* t) {
171 typedef PP_Bool StorageType;
173 static inline APIArgType StorageToAPIArg(StorageType& t) {
178 static inline bool StorageToPluginArg(StorageType& t) {
182 static inline void Initialize(StorageType* t) {
201 typedef ArrayOutputAdapterWithStorage<T> StorageType;
205 static inline APIArgType StorageToAPIArg(StorageType& t) {
210 static inline std::vector<T>& StorageToPluginArg(StorageType& t) {
214 static inline void Initialize(StorageType* /* t */) {}
228 typedef ResourceArrayOutputAdapterWithStorage<T> StorageType;
230 static inline APIArgType StorageToAPIArg(StorageType& t) {
233 static inline std::vector<T>& StorageToPluginArg(StorageType& t) {
237 static inline void Initialize(StorageType* /* t */) {}
263 typedef VarArrayOutputAdapterWithStorage StorageType;
267 static inline APIArgType StorageToAPIArg(StorageType& t) {
272 static inline std::vector<pp::Var>& StorageToPluginArg(StorageType& t) {
276 static inline void Initialize(StorageType* /* t */) {}