Lines Matching defs:Name
362 return Name.parse(unpacker.unpack_string())
845 class Name(object):
849 The Name class serves as both an object name and a pattern to match existing
873 Returns: Name
874 a new Name
926 Return a new Name by parsing the supplied string into its
939 Returns: Name
940 a new Name instance
948 return Name(domain, [])
956 kvs.append([Name.unquote(kv[0]), Name.unquote(kv[1])])
958 return Name(domain, kvs)
968 name: Name
985 Return the domain part of this Name.
1049 keystr = ",".join([ "%s=%s" % (Name.quote(i[0]), Name.quote(i[1]))
1055 return "Name.parse(\"%s\")" % str(self)
1257 pattern: Name (default: None)
1258 a RAD Name pattern
1260 Returns: List[Name]
1261 a list of RAD Name objects
1270 return [ Name.parse(i) for i in up.unpack_array(up.unpack_string) ]
1278 name: Name
1322 return self.get_object(Name(domain, keys))