Lines Matching +full:one +full:- +full:to +full:- +full:one
30 """Corresponds to 'identifier' in the XDR language grammar"""
37 """Corresponds to 'value' in the XDR language grammar"""
44 """Corresponds to 'constant' in the XDR language grammar"""
51 """Corresponds to 'type_specifier' in the XDR language grammar"""
59 """Corresponds to a type defined by the input specification"""
64 """Corresponds to a built-in XDR type"""
74 """A fixed-length opaque declaration"""
83 """A variable-length opaque declaration"""
92 """A (NUL-terminated) variable-length string declaration"""
101 """A fixed-length array declaration"""
111 """A variable-length array declaration"""
146 """Corresponds to 'constant_def' in the grammar"""
195 """One case in an XDR union"""
255 """Corresponds to 'definition' in the grammar"""
263 """Corresponds to 'specification' in the grammar"""
272 """Instantiate one _XdrIdentifier object"""
276 """Instantiate one _XdrValue object"""
282 """Instantiate one _XdrConstantValue object"""
293 """Instantiate one type_specifier object"""
313 """Instantiate one _XdrConstant object"""
321 """Instantiate one _XdrEnum object"""
337 """Instantiate one _XdrFixedLengthOpaque declaration object"""
344 """Instantiate one _XdrVariableLengthOpaque declaration object"""
354 """Instantiate one _XdrVariableLengthString declaration object"""
364 """Instantiate one _XdrFixedLengthArray declaration object"""
372 """Instantiate one _XdrVariableLengthArray declaration object"""
383 """Instantiate one _XdrOptionalData declaration object"""
392 """Instantiate one _XdrBasic object"""
399 """Instantiate one _XdrVoid declaration object"""
404 """Instantiate one _XdrStruct object"""
410 last_field = fields[-1]
420 """Instantiate one _XdrTypedef object"""
431 """Instantiate one _XdrCaseSpec object"""
433 for item in children[0:-1]:
435 arm = children[-1]
440 """Instantiate one _XdrDefaultSpec object"""
446 """Instantiate one _XdrUnion object"""
453 cases = body.children[1:-1]
454 default = body.children[-1]
459 """Instantiate one _RpcProcedure object"""
468 """Instantiate one _RpcVersion object"""
470 number = children[-1].value
471 procedures = children[1:-1]
476 """Instantiate one _RpcProgram object"""
478 number = children[-1].value
479 versions = children[1:-1]
484 """Instantiate one _Pragma object"""
508 def get_header_name() -> str: