Home
last modified time | relevance | path

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

/onnv-gate/usr/src/cmd/man/src/util/nsgmls.src/lib/
H A DEntity.cxx20 Entity::Entity(const StringC &name, DeclType declType, DataType dataType, in Entity() argument
22 : EntityDecl(name, declType, dataType, defLocation), in Entity()
32 DeclType declType, in InternalEntity() argument
36 : Entity(name, declType, dataType, defLocation) in InternalEntity()
41 PiEntity::PiEntity(const StringC &name, DeclType declType, in PiEntity() argument
43 : InternalEntity(name, declType, pi, defLocation, text) in PiEntity()
83 InternalTextEntity::InternalTextEntity(const StringC &name, DeclType declType, in InternalTextEntity() argument
86 : InternalEntity(name, declType, sgmlText, defLocation, text), in InternalTextEntity()
98 DeclType declType, in ExternalEntity() argument
102 : Entity(name, declType, dataType, defLocation), externalId_(id) in ExternalEntity()
[all …]
H A DEntityDecl.cxx15 EntityDecl::EntityDecl(const StringC &str, DeclType declType, DataType dataType, in EntityDecl() argument
17 : NamedResource(str), declType_(declType), dataType_(dataType), in EntityDecl()
H A DSOEntityCatalog.cxx189 void parseNameMap(EntityDecl::DeclType declType);
447 int tableIndex = (entity.declType() >= EntityDecl::parameterEntity in lookup()
448 ? int(entity.declType()) - 1 in lookup()
449 : int(entity.declType())); in lookup()
452 switch (entity.declType()) { in lookup()
632 void SOEntityCatalog::addName(StringC &name, DeclType declType, in addName() argument
640 int tableIndex = (declType >= EntityDecl::parameterEntity in addName()
641 ? int(declType) - 1 in addName()
642 : int(declType)); in addName()
1005 void CatalogParser::parseNameMap(EntityDecl::DeclType declType) in parseNameMap() argument
[all …]
H A DGenericEventHandler.cxx650 switch (from.declType()) { in setEntity()
652 to.declType = SGMLApplication::Entity::general; in setEntity()
655 to.declType = SGMLApplication::Entity::parameter; in setEntity()
658 to.declType = SGMLApplication::Entity::doctype; in setEntity()
661 to.declType = SGMLApplication::Entity::linktype; in setEntity()
H A DparseDecl.cxx263 && (e->declType() == Entity::doctype in doDeclSubset()
264 || e->declType() == Entity::linktype)) { in doDeclSubset()
1536 Entity::DeclType declType; in parseEntityDecl() local
1539 declType = Entity::parameterEntity; in parseEntityDecl()
1546 declType = Entity::generalEntity; in parseEntityDecl()
1572 return parseExternalEntity(name, declType, declInputLevel, parm); in parseEntityDecl()
1653 if (declType == Entity::parameterEntity in parseEntityDecl()
1668 entity = new PiEntity(name, declType, markupLocation(), text); in parseEntityDecl()
1671 entity = new InternalTextEntity(name, declType, markupLocation(), text, bracketed); in parseEntityDecl()
1682 Entity::DeclType declType, in parseExternalEntity() argument
[all …]
H A DParserState.cxx604 = dtd_[0]->lookupEntity(ref->entity->declType() in checkEntityStability()
612 message(((ref->entity->declType() in checkEntityStability()
H A DParser.h270 Entity::DeclType declType,
/onnv-gate/usr/src/cmd/man/src/util/nsgmls.src/include/
H A DEntityDecl.h27 EntityDecl(const StringC &, DeclType declType, DataType dataType,
30 DeclType declType() const;
63 EntityDecl::DeclType EntityDecl::declType() const in declType() function
H A DEntity.h41 Entity(const StringC &name, DeclType declType, DataType dataType,
92 InternalEntity(const StringC &, DeclType declType, DataType dataType,
246 IgnoredEntity(const StringC &, DeclType declType);
H A DDtd.h157 return (entity->declType() == Entity::parameterEntity in insertEntity()
/onnv-gate/usr/src/cmd/man/src/util/nsgmls.src/generic/
H A DSGMLApplication.h59 DeclType declType; member