Home
last modified time | relevance | path

Searched refs:shortkey (Results 1 – 4 of 4) sorted by relevance

/third_party/python/Tools/c-analyzer/c_analyzer/
Danalyze.py24 if decl.shortkey not in typespecs:
25 typespecs[decl.shortkey] = [decl]
27 typespecs[decl.shortkey].append(decl)
74 if member.vartype.typespec != decl.shortkey:
242 decl, = (d for d in types if d.shortkey == typespec)
247 if d.shortkey == typespec and d.filename == filename]
252 found = [d for d in types if d.shortkey == typespec]
267 if typespec == decl.shortkey:
280 if d.shortkey == member.vartype.typespec
284 if d.shortkey == typespec]
D__main__.py179 name = data.shortkey if data.kind is KIND.VARIABLE else data.name
/third_party/python/Tools/c-analyzer/cpython/
D__main__.py172 if decl.shortkey == 'struct _object':
184 if decl.shortkey not in _analyzer.KNOWN_IN_DOT_C:
/third_party/python/Tools/c-analyzer/c_parser/
Dinfo.py599 def shortkey(self): member in HighlevelParsedItem