Home | History | Annotate | Download | only in generator

Lines Matching refs:allocation

199         # Check if the field can be implemented with static allocation
219 self.allocation = 'STATIC'
221 self.allocation = 'POINTER'
223 self.allocation = 'CALLBACK'
239 if self.allocation == 'STATIC':
245 if self.allocation == 'STATIC':
248 elif self.allocation == 'POINTER':
262 if self.allocation == 'POINTER':
274 elif self.allocation == 'CALLBACK':
277 if self.rules == 'OPTIONAL' and self.allocation == 'STATIC':
279 elif self.rules == 'REPEATED' and self.allocation == 'STATIC':
286 if self.pbtype == 'BYTES' and self.allocation == 'STATIC':
304 if self.allocation != 'STATIC':
312 if self.allocation != 'STATIC':
342 result += '%-8s, ' % self.allocation
352 elif self.pbtype in ['BYTES', 'STRING'] and self.allocation != 'STATIC':
365 if self.rules == 'REPEATED' and self.allocation == 'STATIC':
377 if self.allocation != 'STATIC':
430 self.allocation = 'CALLBACK'