Lines Matching full:want
72 elif hasattr(key, 'want'):
73 keystr = key.want
122 return AE.AECreateDesc('type', x.want)
127 if hasattr(x, 'want'):
128 return AE.AECreateDesc('TEXT', x.want)
325 want = dict['want'].type
330 if want == 'text': return aetypes.Text(seld, fr)
331 if want == 'cha ': return aetypes.Character(seld, fr)
332 if want == 'cwor': return aetypes.Word(seld, fr)
333 if want == 'clin': return aetypes.Line(seld, fr)
334 if want == 'cpar': return aetypes.Paragraph(seld, fr)
335 if want == 'cwin': return aetypes.Window(seld, fr)
336 if want == 'docu': return aetypes.Document(seld, fr)
337 if want == 'file': return aetypes.File(seld, fr)
338 if want == 'cins': return aetypes.InsertionPoint(seld, fr)
339 if want == 'prop' and form == 'prop' and aetypes.IsType(seld):
341 return aetypes.ObjectSpecifier(want, form, seld, fr)
348 if type(dict['want']) == types.ClassType and issubclass(dict['want'], ObjectSpecifier):
350 classtype = dict['want']
351 dict['want'] = aetypes.mktype(classtype.want)
352 want = dict['want'].type
355 classtype = codenamemapper.get(want, None)