Home
last modified time | relevance | path

Searched refs:EntityDecl (Results 1 – 11 of 11) sorted by relevance

/external/oss-fuzz/projects/xerces-c/
DxmlProtoConverter.h66 void visit(EntityDecl const&);
Dxml.proto162 message EntityDecl { message
203 EntityDecl entity = 5;
DxmlProtoConverter.cpp372 void ProtoConverter::visit(EntityDecl const& _x) in visit()
380 case EntityDecl::GEDECL: in visit()
384 case EntityDecl::PEDECL: in visit()
/external/llvm-project/flang/lib/Parser/
Dtype-parsers.h72 constexpr Parser<EntityDecl> entityDecl; // R803
DFortran-parsers.cpp596 constexpr auto entityDeclWithoutEqInit{construct<EntityDecl>(name,
644 TYPE_PARSER(construct<EntityDecl>(objectName, maybe(arraySpec),
1193 "STRUCTURE" >> name, pure(false), pure<std::list<EntityDecl>>()))
Dunparse.cpp416 const auto &decls{std::get<std::list<EntityDecl>>(x.t)}; in Unparse()
423 static const auto hasAssignmentInitializer{[](const EntityDecl &d) { in Unparse()
428 static const auto hasSlashDelimitedInitializer{[](const EntityDecl &d) { in Unparse()
466 Put(' '), Walk(std::get<std::list<EntityDecl>>(x.t), ", "); in Unparse()
484 void Unparse(const EntityDecl &x) { // R803 in Unparse()
2487 Walk(" ", std::get<std::list<EntityDecl>>(x.t), ", "); in Unparse()
2489 CHECK(std::get<std::list<EntityDecl>>(x.t).empty()); in Unparse()
/external/python/cpython2/Modules/
Dpyexpat.c50 EntityDecl, enumerator
639 VOID_HANDLER(EntityDecl,
656 VOID_HANDLER(EntityDecl,
/external/python/cpython3/Modules/
Dpyexpat.c40 EntityDecl, enumerator
481 VOID_HANDLER(EntityDecl,
/external/llvm-project/flang/include/flang/Parser/
Dparse-tree.h1336 struct EntityDecl { struct
1337 TUPLE_CLASS_BOILERPLATE(EntityDecl);
1347 std::tuple<DeclarationTypeSpec, std::list<AttrSpec>, std::list<EntityDecl>> t; argument
3263 std::tuple<Name, bool /*slashes*/, std::list<EntityDecl>> t;
Ddump-parse-tree.h267 NODE(parser, EntityDecl) in NODE()
/external/llvm-project/flang/lib/Semantics/
Dresolve-names.cpp733 void Post(const parser::EntityDecl &);
3206 void DeclarationVisitor::Post(const parser::EntityDecl &x) { in Post()
6463 bool Pre(const parser::EntityDecl &decl) { in Pre()