Home
last modified time | relevance | path

Searched defs:TypeDeclarationStmt (Results 1 – 4 of 4) sorted by relevance

/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/stmt/
DTypeDeclarationStmt.java32 public final class TypeDeclarationStmt extends Statement { class
36 public TypeDeclarationStmt() { in TypeDeclarationStmt() method in TypeDeclarationStmt
39 public TypeDeclarationStmt(final TypeDeclaration typeDecl) { in TypeDeclarationStmt() method in TypeDeclarationStmt
43 public TypeDeclarationStmt(Range range, final TypeDeclaration typeDecl) { in TypeDeclarationStmt() method in TypeDeclarationStmt
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/proper_source/com/github/javaparser/ast/stmt/
DTypeDeclarationStmt.java31 public final class TypeDeclarationStmt extends Statement { class
35 public TypeDeclarationStmt() { in TypeDeclarationStmt() method in TypeDeclarationStmt
38 public TypeDeclarationStmt(final TypeDeclaration typeDecl) { in TypeDeclarationStmt() method in TypeDeclarationStmt
42 …public TypeDeclarationStmt(final int beginLine, final int beginColumn, final int endLine, final in… in TypeDeclarationStmt() method in TypeDeclarationStmt
/external/llvm-project/flang/include/flang/Parser/
Dparse-tree.h1345 struct TypeDeclarationStmt { struct
1347 std::tuple<DeclarationTypeSpec, std::list<AttrSpec>, std::list<EntityDecl>> t;
/external/llvm-project/flang/lib/Semantics/
Dresolve-names.cpp765 bool Pre(const parser::TypeDeclarationStmt &) { return BeginDecl(); } in Pre()
3169 void DeclarationVisitor::Post(const parser::TypeDeclarationStmt &) { in Post()