Searched refs:TypeDeclaration (Results 1 - 18 of 18) sorted by relevance
/third_party/python/Tools/c-analyzer/c_analyzer/ |
H A D | info.py | 11 TypeDeclaration, 25 class SystemType(TypeDeclaration): 57 if isinstance(resolved, TypeDeclaration): 79 if isinstance(typedeps, TypeDeclaration): 87 elif any(not isinstance(td, TypeDeclaration) for td in typedeps): 97 if isinstance(typedecl, TypeDeclaration): 105 elif typedecl and not isinstance(typedecl, TypeDeclaration): 223 elif isinstance(self.typedecl, TypeDeclaration):
|
H A D | __init__.py | 6 TypeDeclaration, 82 if not isinstance(typedeps, TypeDeclaration):
|
H A D | analyze.py | 3 TypeDeclaration, 129 elif not isinstance(typedecl, TypeDeclaration): 199 class Skipped(TypeDeclaration):
|
/third_party/python/Tools/c-analyzer/cpython/ |
H A D | _analyzer.py | 9 TypeDeclaration, 145 #assert isinstance(typedeps, (list, TypeDeclaration)), typedeps 173 if isinstance(typedeps, TypeDeclaration): 197 if not isinstance(typedecl, TypeDeclaration): 207 elif not isinstance(typedecl, TypeDeclaration): 285 elif isinstance(unsupported, (str, TypeDeclaration)):
|
/third_party/node/deps/v8/src/torque/ |
H A D | declaration-visitor.h | 37 static void Predeclare(TypeDeclaration* decl) { in Predeclare() 77 static void Visit(TypeDeclaration* decl) { in Visit()
|
H A D | ast.h | 857 struct TypeDeclaration : Declaration { struct 858 DEFINE_AST_NODE_INNER_BOILERPLATE(TypeDeclaration) 859 TypeDeclaration(Kind kKind, SourcePosition pos, Identifier* name) in TypeDeclaration() function 870 struct AbstractTypeDeclaration : TypeDeclaration { 876 : TypeDeclaration(kKind, pos, name), in AbstractTypeDeclaration() 892 struct TypeAliasDeclaration : TypeDeclaration { 896 : TypeDeclaration(kKind, pos, name), type(type) {} in TypeAliasDeclaration() 1145 TypeDeclaration* declaration) in GenericTypeDeclaration() 1151 TypeDeclaration* declaration; 1184 struct StructDeclaration : TypeDeclaration { [all...] |
H A D | type-visitor.h | 43 TypeDeclaration* decl,
|
H A D | declarable.cc | 187 TypeDeclaration* decl = *delayed_; in Resolve()
|
H A D | declarations.h | 97 TypeDeclaration* type,
|
H A D | declarable.h | 679 TypeDeclaration* type, bool redeclaration, in TypeAlias() 687 mutable base::Optional<TypeDeclaration*> delayed_;
|
H A D | declarations.cc | 172 TypeDeclaration* type, in PredeclareTypeAlias()
|
H A D | torque-parser.cc | 737 TypeDeclaration* type_decl = MakeNode<AbstractTypeDeclaration>( in MakeAbstractTypeDeclaration() 758 TypeDeclaration* constexpr_decl = MakeNode<AbstractTypeDeclaration>( in MakeAbstractTypeDeclaration() 1096 TypeDeclaration* constexpr_decl = MakeNode<AbstractTypeDeclaration>( in MakeClassDeclaration() 1195 TypeDeclaration* struct_decl = MakeNode<StructDeclaration>( in MakeStructDeclaration()
|
H A D | type-visitor.cc | 19 const Type* TypeVisitor::ComputeType(TypeDeclaration* decl, in ComputeType()
|
/third_party/typescript/tests/baselines/reference/ |
H A D | parserRealSource6.js | 32 public enclosingClassDecl: TypeDeclaration = null; 140 context.enclosingClassDecl = <TypeDeclaration>ast;
|
H A D | parserRealSource11.js | 1237 export class TypeDeclaration extends NamedDeclaration { 1257 export class ClassDeclaration extends TypeDeclaration { 1279 export class InterfaceDeclaration extends TypeDeclaration { 3566 var TypeDeclaration = /** @class */ (function (_super) {
3567 __extends(TypeDeclaration, _super);
3568 function TypeDeclaration(nodeType, name, extendsList, implementsList, members) {
3575 TypeDeclaration.prototype.isExported = function () {
3578 TypeDeclaration.prototype.isAmbient = function () {
3581 return TypeDeclaration;
3583 TypeScript.TypeDeclaration [all...] |
H A D | parserRealSource12.js | 462 export function walkNamedTypeChildren(preAst: TypeDeclaration, parent: AST, walker: IAstWalker): void {
|
H A D | parserRealSource7.js | 30 function getBases(type: Type, typeDecl: TypeDeclaration) {
|
/third_party/python/Tools/c-analyzer/c_parser/ |
H A D | info.py | 1072 class TypeDeclaration(Declaration): class 1086 class POTSType(TypeDeclaration): 1093 class FuncPtr(TypeDeclaration): 1102 class TypeDef(TypeDeclaration): 1188 class _StructUnion(TypeDeclaration): 1246 class Enum(TypeDeclaration):
|
Completed in 22 milliseconds