Home | History | Annotate | Download | only in python2.7

Lines Matching full:argumentdescriptor

152 # of ArgumentDescriptor.  These are not to be confused with arguments taken
153 # off the stack -- ArgumentDescriptor applies only to arguments embedded in
165 class ArgumentDescriptor(object):
213 uint1 = ArgumentDescriptor(
234 uint2 = ArgumentDescriptor(
255 int4 = ArgumentDescriptor(
311 stringnl = ArgumentDescriptor(
324 stringnl_noescape = ArgumentDescriptor(
344 stringnl_noescape_pair = ArgumentDescriptor(
379 string4 = ArgumentDescriptor(
408 string1 = ArgumentDescriptor(
434 unicodestringnl = ArgumentDescriptor(
472 unicodestring4 = ArgumentDescriptor(
538 decimalnl_short = ArgumentDescriptor(
551 decimalnl_long = ArgumentDescriptor(
571 floatnl = ArgumentDescriptor(
600 float8 = ArgumentDescriptor(
643 long1 = ArgumentDescriptor(
677 long4 = ArgumentDescriptor(
834 # instance of ArgumentDescriptor specifying its type. Note that
863 assert arg is None or isinstance(arg, ArgumentDescriptor)