Searched refs:typedecl (Results 1 – 4 of 4) sorted by relevance
/third_party/python/Tools/c-analyzer/c_analyzer/ |
D | analyze.py | 120 typedecl = POTSType(typespec) 122 typedecl = SystemType(typespec) 124 typedecl = FuncPtr(vartype) 126 typedecl = find_typedecl(decl, typespec, typespecs) 127 if typedecl is None: 128 typedecl = find_typedecl(decl, typespec, knowntypespecs) 129 elif not isinstance(typedecl, TypeDeclaration): 130 raise NotImplementedError(repr(typedecl)) 131 if typedecl is None: 133 typedecl = UNKNOWN [all …]
|
D | info.py | 58 return cls(item, typedecl=resolved, **extra) 91 def __init__(self, item, typedecl=None, **extra): argument 94 if typedecl in (UNKNOWN, IGNORED): 97 if isinstance(typedecl, TypeDeclaration): 98 raise NotImplementedError(item, typedecl) 99 elif typedecl is None: 100 typedecl = UNKNOWN 102 typedecl = [UNKNOWN if d is None else d for d in typedecl] 103 elif typedecl is None: 104 typedecl = UNKNOWN [all …]
|
/third_party/python/Tools/c-analyzer/cpython/ |
D | _analyzer.py | 183 for member, typedecl in zip(members, typedeps): 184 checked = _check_typedep(member, typedecl, types, knowntypes) 194 def _check_typedep(decl, typedecl, types, knowntypes): argument 195 if not isinstance(typedecl, TypeDeclaration): 196 if hasattr(type(typedecl), '__len__'): 197 if len(typedecl) == 1: 198 typedecl, = typedecl 199 if typedecl is None: 202 elif typedecl is _info.UNKNOWN: 205 elif not isinstance(typedecl, TypeDeclaration): [all …]
|
/third_party/protobuf/src/google/protobuf/compiler/cpp/ |
D | cpp_test_bad_identifiers.proto | 117 optional uint32 typedecl = 39; field
|