ECCE @ EIC Software
Reference for
ECCE @ EIC
simulation and reconstruction software on GitHub
|
#include <stddef.h>
#include <string.h>
#include <assert.h>
#include <limits.h>
#include <time.h>
#include "ascii.h"
#include "expat.h"
#include "internal.h"
#include "xmltok.h"
#include "xmlrole.h"
Go to the source code of this file.
Classes | |
struct | NAMED |
struct | HASH_TABLE |
struct | HASH_TABLE_ITER |
struct | binding |
struct | prefix |
struct | TAG_NAME |
struct | tag |
struct | ENTITY |
struct | CONTENT_SCAFFOLD |
struct | block |
struct | STRING_POOL |
struct | attribute_id |
struct | DEFAULT_ATTRIBUTE |
struct | NS_ATT |
struct | ELEMENT_TYPE |
struct | DTD |
struct | open_internal_entity |
struct | XML_ParserStruct |
Macros | |
#define | XML_BUILDING_EXPAT 1 |
#define | XML_ENCODE_MAX XML_UTF8_ENCODE_MAX |
#define | XmlConvert XmlUtf8Convert |
#define | XmlGetInternalEncoding XmlGetUtf8InternalEncoding |
#define | XmlGetInternalEncodingNS XmlGetUtf8InternalEncodingNS |
#define | XmlEncode XmlUtf8Encode |
#define | MUST_CONVERT(enc, s) (!(enc)->isUtf8) |
#define | XmlInitEncodingNS XmlInitEncoding |
#define | XmlInitUnknownEncodingNS XmlInitUnknownEncoding |
#define | XmlGetInternalEncodingNS XmlGetInternalEncoding |
#define | XmlParseXmlDeclNS XmlParseXmlDecl |
#define | XML_T(x) x |
#define | XML_L(x) x |
#define | ROUND_UP(n, sz) (((n) + ((sz) - 1)) & ~((sz) - 1)) |
#define | CHAR_HASH(h, c) (((h) * 0xF4243) ^ (unsigned char)(c)) |
#define | SECOND_HASH(hash, mask, power) ((((hash) & ~(mask)) >> ((power) - 1)) & ((mask) >> 2)) |
#define | PROBE_STEP(hash, mask, power) ((unsigned char)((SECOND_HASH(hash, mask, power)) | 1)) |
#define | INIT_TAG_BUF_SIZE 32 /* must be a multiple of sizeof(XML_Char) */ |
#define | INIT_DATA_BUF_SIZE 1024 |
#define | INIT_ATTS_SIZE 16 |
#define | INIT_ATTS_VERSION 0xFFFFFFFF |
#define | INIT_BLOCK_SIZE 1024 |
#define | INIT_BUFFER_SIZE 1024 |
#define | EXPAND_SPARE 24 |
#define | INIT_SCAFFOLD_ELEMENTS 32 |
#define | poolStart(pool) ((pool)->start) |
#define | poolEnd(pool) ((pool)->ptr) |
#define | poolLength(pool) ((pool)->ptr - (pool)->start) |
#define | poolChop(pool) ((void)--(pool->ptr)) |
#define | poolLastChar(pool) (((pool)->ptr)[-1]) |
#define | poolDiscard(pool) ((pool)->ptr = (pool)->start) |
#define | poolFinish(pool) ((pool)->start = (pool)->ptr) |
#define | poolAppendChar(pool, c) |
#define | MALLOC(s) (parser->m_mem.malloc_fcn((s))) |
#define | REALLOC(p, s) (parser->m_mem.realloc_fcn((p),(s))) |
#define | FREE(p) (parser->m_mem.free_fcn((p))) |
#define | userData (parser->m_userData) |
#define | handlerArg (parser->m_handlerArg) |
#define | startElementHandler (parser->m_startElementHandler) |
#define | endElementHandler (parser->m_endElementHandler) |
#define | characterDataHandler (parser->m_characterDataHandler) |
#define | processingInstructionHandler (parser->m_processingInstructionHandler) |
#define | commentHandler (parser->m_commentHandler) |
#define | startCdataSectionHandler (parser->m_startCdataSectionHandler) |
#define | endCdataSectionHandler (parser->m_endCdataSectionHandler) |
#define | defaultHandler (parser->m_defaultHandler) |
#define | startDoctypeDeclHandler (parser->m_startDoctypeDeclHandler) |
#define | endDoctypeDeclHandler (parser->m_endDoctypeDeclHandler) |
#define | unparsedEntityDeclHandler (parser->m_unparsedEntityDeclHandler) |
#define | notationDeclHandler (parser->m_notationDeclHandler) |
#define | startNamespaceDeclHandler (parser->m_startNamespaceDeclHandler) |
#define | endNamespaceDeclHandler (parser->m_endNamespaceDeclHandler) |
#define | notStandaloneHandler (parser->m_notStandaloneHandler) |
#define | externalEntityRefHandler (parser->m_externalEntityRefHandler) |
#define | externalEntityRefHandlerArg (parser->m_externalEntityRefHandlerArg) |
#define | internalEntityRefHandler (parser->m_internalEntityRefHandler) |
#define | skippedEntityHandler (parser->m_skippedEntityHandler) |
#define | unknownEncodingHandler (parser->m_unknownEncodingHandler) |
#define | elementDeclHandler (parser->m_elementDeclHandler) |
#define | attlistDeclHandler (parser->m_attlistDeclHandler) |
#define | entityDeclHandler (parser->m_entityDeclHandler) |
#define | xmlDeclHandler (parser->m_xmlDeclHandler) |
#define | encoding (parser->m_encoding) |
#define | initEncoding (parser->m_initEncoding) |
#define | internalEncoding (parser->m_internalEncoding) |
#define | unknownEncodingMem (parser->m_unknownEncodingMem) |
#define | unknownEncodingData (parser->m_unknownEncodingData) |
#define | unknownEncodingHandlerData (parser->m_unknownEncodingHandlerData) |
#define | unknownEncodingRelease (parser->m_unknownEncodingRelease) |
#define | protocolEncodingName (parser->m_protocolEncodingName) |
#define | ns (parser->m_ns) |
#define | ns_triplets (parser->m_ns_triplets) |
#define | prologState (parser->m_prologState) |
#define | processor (parser->m_processor) |
#define | errorCode (parser->m_errorCode) |
#define | eventPtr (parser->m_eventPtr) |
#define | eventEndPtr (parser->m_eventEndPtr) |
#define | positionPtr (parser->m_positionPtr) |
#define | position (parser->m_position) |
#define | openInternalEntities (parser->m_openInternalEntities) |
#define | freeInternalEntities (parser->m_freeInternalEntities) |
#define | defaultExpandInternalEntities (parser->m_defaultExpandInternalEntities) |
#define | tagLevel (parser->m_tagLevel) |
#define | buffer (parser->m_buffer) |
#define | bufferPtr (parser->m_bufferPtr) |
#define | bufferEnd (parser->m_bufferEnd) |
#define | parseEndByteIndex (parser->m_parseEndByteIndex) |
#define | parseEndPtr (parser->m_parseEndPtr) |
#define | bufferLim (parser->m_bufferLim) |
#define | dataBuf (parser->m_dataBuf) |
#define | dataBufEnd (parser->m_dataBufEnd) |
#define | _dtd (parser->m_dtd) |
#define | curBase (parser->m_curBase) |
#define | declEntity (parser->m_declEntity) |
#define | doctypeName (parser->m_doctypeName) |
#define | doctypeSysid (parser->m_doctypeSysid) |
#define | doctypePubid (parser->m_doctypePubid) |
#define | declAttributeType (parser->m_declAttributeType) |
#define | declNotationName (parser->m_declNotationName) |
#define | declNotationPublicId (parser->m_declNotationPublicId) |
#define | declElementType (parser->m_declElementType) |
#define | declAttributeId (parser->m_declAttributeId) |
#define | declAttributeIsCdata (parser->m_declAttributeIsCdata) |
#define | declAttributeIsId (parser->m_declAttributeIsId) |
#define | freeTagList (parser->m_freeTagList) |
#define | freeBindingList (parser->m_freeBindingList) |
#define | inheritedBindings (parser->m_inheritedBindings) |
#define | tagStack (parser->m_tagStack) |
#define | atts (parser->m_atts) |
#define | attsSize (parser->m_attsSize) |
#define | nSpecifiedAtts (parser->m_nSpecifiedAtts) |
#define | idAttIndex (parser->m_idAttIndex) |
#define | nsAtts (parser->m_nsAtts) |
#define | nsAttsVersion (parser->m_nsAttsVersion) |
#define | nsAttsPower (parser->m_nsAttsPower) |
#define | attInfo (parser->m_attInfo) |
#define | tempPool (parser->m_tempPool) |
#define | temp2Pool (parser->m_temp2Pool) |
#define | groupConnector (parser->m_groupConnector) |
#define | groupSize (parser->m_groupSize) |
#define | namespaceSeparator (parser->m_namespaceSeparator) |
#define | parentParser (parser->m_parentParser) |
#define | ps_parsing (parser->m_parsingStatus.parsing) |
#define | ps_finalBuffer (parser->m_parsingStatus.finalBuffer) |
#define | hash_secret_salt (parser->m_hash_secret_salt) |
#define | V1(a, b, c) XML_L(#a)XML_L(".")XML_L(#b)XML_L(".")XML_L(#c) |
#define | V2(a, b, c) XML_L("expat_")V1(a,b,c) |
#define | CONTEXT_SEP XML_T(ASCII_FF) |
#define | INIT_POWER 6 |
Typedefs | |
typedef char | ICHAR |
typedef const XML_Char * | KEY |
typedef struct binding | BINDING |
typedef struct prefix | PREFIX |
typedef struct tag | TAG |
typedef struct block | BLOCK |
typedef struct attribute_id | ATTRIBUTE_ID |
typedef struct open_internal_entity | OPEN_INTERNAL_ENTITY |
Variables | |
static Processor | prologProcessor |
static Processor | prologInitProcessor |
static Processor | contentProcessor |
static Processor | cdataSectionProcessor |
static Processor | epilogProcessor |
static Processor | errorProcessor |
static Processor | externalEntityInitProcessor |
static Processor | externalEntityInitProcessor2 |
static Processor | externalEntityInitProcessor3 |
static Processor | externalEntityContentProcessor |
static Processor | internalEntityProcessor |
static const XML_Char | implicitContext [] |
#define _dtd (parser->m_dtd) |
Definition at line 636 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 636 of file xmlparse.cc
Referenced by addBinding(), appendAttributeValue(), build_model(), build_node(), doContent(), doProlog(), getAttributeId(), getContext(), getElementType(), nextScaffoldPart(), parserCreate(), processXmlDecl(), setContext(), setElementTypePrefix(), storeAtts(), storeEntityValue(), XML_ExternalEntityParserCreate(), XML_ParserFree(), XML_ParserReset(), and XML_SetBase().
#define attInfo (parser->m_attInfo) |
Definition at line 660 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 660 of file xmlparse.cc
Referenced by parserCreate(), storeAtts(), and XML_ParserFree().
#define attlistDeclHandler (parser->m_attlistDeclHandler) |
Definition at line 602 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 602 of file xmlparse.cc
Referenced by doProlog(), parserInit(), XML_ExternalEntityParserCreate(), and XML_SetAttlistDeclHandler().
Definition at line 653 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 653 of file xmlparse.cc
Referenced by storeAtts().
#define attsSize (parser->m_attsSize) |
Definition at line 654 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 654 of file xmlparse.cc
Referenced by parserCreate(), and storeAtts().
Definition at line 628 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 628 of file xmlparse.cc
Referenced by PHLog::_file_exists(), G4InterpolationManager::AppendScheme(), G4HadLeadBias::Bias(), destroy_pool(), cheprep::DefaultHepRepAttValue::getAsString(), G4RootAnalysisReader::GetBuffer(), PHPointerList< T >::grow(), G4ParticleHPDeExGammas::Init(), main(), Acts::Logging::TimedOutputDecorator::now(), parserInit(), GIDI_settings_group::print(), GIDI_settings_flux_order::print(), DicomHandler::read_defined_nested(), DicomHandler::read_undefined_item(), DicomHandler::read_undefined_nested(), DicomHandler::ReadFile(), G4RootAnalysisReader::ReadH1Impl(), G4RootAnalysisReader::ReadH2Impl(), G4RootAnalysisReader::ReadH3Impl(), G4RootAnalysisReader::ReadNtupleImpl(), G4RootAnalysisReader::ReadP1Impl(), G4RootAnalysisReader::ReadP2Impl(), G4ZMQServer::SessionStart(), SetSeed(), smr_vallocateFormatMessage(), xDataXML_importFile2(), XML_GetBuffer(), XML_GetInputContext(), and XML_Parse().
#define bufferEnd (parser->m_bufferEnd) |
Definition at line 630 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 630 of file xmlparse.cc
Referenced by parserInit(), XML_GetBuffer(), XML_GetInputContext(), XML_Parse(), and XML_ParseBuffer().
#define bufferLim (parser->m_bufferLim) |
Definition at line 633 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 633 of file xmlparse.cc
Referenced by parserCreate(), XML_GetBuffer(), and XML_Parse().
#define bufferPtr (parser->m_bufferPtr) |
Definition at line 629 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 629 of file xmlparse.cc
Referenced by main(), parserInit(), XML_GetBuffer(), XML_Parse(), XML_ParseBuffer(), and XML_ResumeParser().
#define CHAR_HASH | ( | h, | |
c | |||
) | (((h) * 0xF4243) ^ (unsigned char)(c)) |
Definition at line 119 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 119 of file xmlparse.cc
Referenced by hash(), and storeAtts().
#define characterDataHandler (parser->m_characterDataHandler) |
Definition at line 576 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 576 of file xmlparse.cc
Referenced by doCdataSection(), doContent(), parserInit(), XML_ExternalEntityParserCreate(), and XML_SetCharacterDataHandler().
#define commentHandler (parser->m_commentHandler) |
Definition at line 579 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 579 of file xmlparse.cc
Referenced by parserInit(), reportComment(), XML_ExternalEntityParserCreate(), and XML_SetCommentHandler().
Definition at line 5496 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 5496 of file xmlparse.cc
Referenced by getContext(), and setContext().
#define curBase (parser->m_curBase) |
Definition at line 637 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 637 of file xmlparse.cc
Referenced by doProlog(), parserInit(), XML_GetBase(), and XML_SetBase().
#define dataBuf (parser->m_dataBuf) |
Definition at line 634 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 634 of file xmlparse.cc
Referenced by doCdataSection(), doContent(), parserCreate(), reportDefault(), and XML_ParserFree().
#define dataBufEnd (parser->m_dataBufEnd) |
Definition at line 635 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 635 of file xmlparse.cc
Referenced by doCdataSection(), doContent(), parserCreate(), and reportDefault().
#define declAttributeId (parser->m_declAttributeId) |
Definition at line 646 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 646 of file xmlparse.cc
Referenced by doProlog(), and parserInit().
#define declAttributeIsCdata (parser->m_declAttributeIsCdata) |
Definition at line 647 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 647 of file xmlparse.cc
Referenced by doProlog(), and parserInit().
#define declAttributeIsId (parser->m_declAttributeIsId) |
Definition at line 648 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 648 of file xmlparse.cc
Referenced by doProlog(), and parserInit().
#define declAttributeType (parser->m_declAttributeType) |
Definition at line 642 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 642 of file xmlparse.cc
Referenced by doProlog(), and parserInit().
#define declElementType (parser->m_declElementType) |
Definition at line 645 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 645 of file xmlparse.cc
Referenced by doProlog(), parserInit(), and XML_ExternalEntityParserCreate().
#define declEntity (parser->m_declEntity) |
Definition at line 638 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 638 of file xmlparse.cc
Referenced by doProlog(), and parserInit().
#define declNotationName (parser->m_declNotationName) |
Definition at line 643 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 643 of file xmlparse.cc
Referenced by doProlog(), and parserInit().
#define declNotationPublicId (parser->m_declNotationPublicId) |
Definition at line 644 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 644 of file xmlparse.cc
Referenced by doProlog(), and parserInit().
#define defaultExpandInternalEntities (parser->m_defaultExpandInternalEntities) |
Definition at line 625 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 625 of file xmlparse.cc
Referenced by doContent(), parserInit(), XML_ExternalEntityParserCreate(), XML_SetDefaultHandler(), and XML_SetDefaultHandlerExpand().
#define defaultHandler (parser->m_defaultHandler) |
Definition at line 583 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 583 of file xmlparse.cc
Referenced by doCdataSection(), doContent(), doProlog(), epilogProcessor(), parserInit(), processXmlDecl(), reportComment(), reportDefault(), reportProcessingInstruction(), XML_DefaultCurrent(), XML_ExternalEntityParserCreate(), XML_SetDefaultHandler(), and XML_SetDefaultHandlerExpand().
#define doctypeName (parser->m_doctypeName) |
Definition at line 639 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 639 of file xmlparse.cc
#define doctypePubid (parser->m_doctypePubid) |
Definition at line 641 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 641 of file xmlparse.cc
Referenced by doProlog(), and parserInit().
#define doctypeSysid (parser->m_doctypeSysid) |
Definition at line 640 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 640 of file xmlparse.cc
Referenced by doProlog(), and parserInit().
#define elementDeclHandler (parser->m_elementDeclHandler) |
Definition at line 601 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 601 of file xmlparse.cc
Referenced by doProlog(), parserInit(), XML_ExternalEntityParserCreate(), and XML_SetElementDeclHandler().
Definition at line 605 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 605 of file xmlparse.cc
Referenced by doProlog(), and initializeEncoding().
#define endCdataSectionHandler (parser->m_endCdataSectionHandler) |
Definition at line 582 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 582 of file xmlparse.cc
Referenced by doCdataSection(), parserInit(), XML_ExternalEntityParserCreate(), XML_SetCdataSectionHandler(), and XML_SetEndCdataSectionHandler().
#define endDoctypeDeclHandler (parser->m_endDoctypeDeclHandler) |
Definition at line 585 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 585 of file xmlparse.cc
Referenced by doProlog(), parserInit(), XML_SetDoctypeDeclHandler(), and XML_SetEndDoctypeDeclHandler().
#define endElementHandler (parser->m_endElementHandler) |
Definition at line 575 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 575 of file xmlparse.cc
Referenced by doContent(), parserInit(), XML_ExternalEntityParserCreate(), XML_SetElementHandler(), and XML_SetEndElementHandler().
#define endNamespaceDeclHandler (parser->m_endNamespaceDeclHandler) |
Definition at line 591 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 591 of file xmlparse.cc
Referenced by doContent(), parserInit(), XML_ExternalEntityParserCreate(), XML_SetEndNamespaceDeclHandler(), and XML_SetNamespaceDeclHandler().
#define entityDeclHandler (parser->m_entityDeclHandler) |
Definition at line 603 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 603 of file xmlparse.cc
Referenced by doProlog(), parserInit(), XML_ExternalEntityParserCreate(), and XML_SetEntityDeclHandler().
#define errorCode (parser->m_errorCode) |
Definition at line 618 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 618 of file xmlparse.cc
Referenced by errorProcessor(), parserInit(), XML_GetBuffer(), XML_GetErrorCode(), XML_Parse(), XML_ParseBuffer(), XML_ResumeParser(), and XML_StopParser().
#define eventEndPtr (parser->m_eventEndPtr) |
Definition at line 620 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 620 of file xmlparse.cc
Referenced by doCdataSection(), doContent(), doProlog(), epilogProcessor(), externalEntityInitProcessor3(), parserInit(), reportDefault(), XML_DefaultCurrent(), XML_GetBuffer(), XML_GetCurrentByteCount(), XML_Parse(), XML_ParseBuffer(), and XML_ResumeParser().
#define eventPtr (parser->m_eventPtr) |
Definition at line 619 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 619 of file xmlparse.cc
Referenced by appendAttributeValue(), doCdataSection(), doContent(), doProlog(), epilogProcessor(), externalEntityInitProcessor2(), externalEntityInitProcessor3(), parserInit(), processXmlDecl(), reportDefault(), storeAtts(), storeEntityValue(), XML_DefaultCurrent(), XML_GetBuffer(), XML_GetCurrentByteCount(), XML_GetCurrentByteIndex(), XML_GetCurrentColumnNumber(), XML_GetCurrentLineNumber(), XML_GetInputContext(), XML_Parse(), XML_ParseBuffer(), and XML_ResumeParser().
#define EXPAND_SPARE 24 |
Definition at line 148 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 148 of file xmlparse.cc
Referenced by addBinding(), and storeAtts().
#define externalEntityRefHandler (parser->m_externalEntityRefHandler) |
Definition at line 593 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 593 of file xmlparse.cc
Referenced by doContent(), doProlog(), parserInit(), storeEntityValue(), XML_ExternalEntityParserCreate(), and XML_SetExternalEntityRefHandler().
#define externalEntityRefHandlerArg (parser->m_externalEntityRefHandlerArg) |
Definition at line 595 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 595 of file xmlparse.cc
Referenced by doContent(), doProlog(), parserInit(), storeEntityValue(), XML_ExternalEntityParserCreate(), and XML_SetExternalEntityRefHandlerArg().
Definition at line 570 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 570 of file xmlparse.cc
Referenced by addBinding(), destroyBindings(), doContent(), parserCreate(), storeAtts(), XML_FreeContentModel(), XML_GetBuffer(), XML_MemFree(), XML_ParserFree(), and XML_ParserReset().
#define freeBindingList (parser->m_freeBindingList) |
Definition at line 650 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 650 of file xmlparse.cc
Referenced by addBinding(), doContent(), moveToFreeBindingList(), parserCreate(), and XML_ParserFree().
#define freeInternalEntities (parser->m_freeInternalEntities) |
Definition at line 624 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 624 of file xmlparse.cc
Referenced by internalEntityProcessor(), parserCreate(), processInternalEntity(), XML_ParserFree(), and XML_ParserReset().
#define freeTagList (parser->m_freeTagList) |
Definition at line 649 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 649 of file xmlparse.cc
Referenced by doContent(), parserCreate(), XML_ParserFree(), and XML_ParserReset().
#define groupConnector (parser->m_groupConnector) |
Definition at line 663 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 663 of file xmlparse.cc
Referenced by doProlog(), parserCreate(), and XML_ParserFree().
#define groupSize (parser->m_groupSize) |
Definition at line 664 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 664 of file xmlparse.cc
Referenced by doProlog(), nextScaffoldPart(), and parserCreate().
#define handlerArg (parser->m_handlerArg) |
Definition at line 573 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 573 of file xmlparse.cc
Referenced by addBinding(), doCdataSection(), doContent(), doProlog(), parserInit(), processXmlDecl(), reportComment(), reportDefault(), reportProcessingInstruction(), XML_ExternalEntityParserCreate(), XML_SetUserData(), and XML_UseParserAsHandlerArg().
#define hash_secret_salt (parser->m_hash_secret_salt) |
Definition at line 674 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 674 of file xmlparse.cc
Referenced by hash(), parserInit(), startParsing(), storeAtts(), XML_ExternalEntityParserCreate(), and XML_SetHashSalt().
#define idAttIndex (parser->m_idAttIndex) |
Definition at line 656 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 656 of file xmlparse.cc
Referenced by storeAtts(), and XML_GetIdAttributeIndex().
#define inheritedBindings (parser->m_inheritedBindings) |
Definition at line 651 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 651 of file xmlparse.cc
Referenced by parserInit(), setContext(), XML_ParserFree(), and XML_ParserReset().
#define INIT_ATTS_SIZE 16 |
Definition at line 143 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 143 of file xmlparse.cc
Referenced by parserCreate(), and storeAtts().
#define INIT_ATTS_VERSION 0xFFFFFFFF |
Definition at line 144 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 144 of file xmlparse.cc
Referenced by storeAtts().
#define INIT_BLOCK_SIZE 1024 |
Definition at line 145 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 145 of file xmlparse.cc
Referenced by poolGrow().
#define INIT_BUFFER_SIZE 1024 |
Definition at line 146 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 146 of file xmlparse.cc
Referenced by XML_GetBuffer().
#define INIT_DATA_BUF_SIZE 1024 |
Definition at line 142 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 142 of file xmlparse.cc
Referenced by parserCreate().
#define INIT_POWER 6 |
Definition at line 5955 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 5955 of file xmlparse.cc
Referenced by lookup().
#define INIT_SCAFFOLD_ELEMENTS 32 |
Definition at line 221 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 221 of file xmlparse.cc
Referenced by nextScaffoldPart().
Definition at line 141 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 141 of file xmlparse.cc
Referenced by doContent().
#define initEncoding (parser->m_initEncoding) |
Definition at line 606 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 606 of file xmlparse.cc
Referenced by initializeEncoding(), and parserInit().
#define internalEncoding (parser->m_internalEncoding) |
Definition at line 607 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 607 of file xmlparse.cc
Referenced by appendAttributeValue(), internalEntityProcessor(), parserCreate(), processInternalEntity(), storeEntityValue(), and XML_DefaultCurrent().
#define internalEntityRefHandler (parser->m_internalEntityRefHandler) |
Definition at line 597 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 597 of file xmlparse.cc
Definition at line 568 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 568 of file xmlparse.cc
Referenced by addBinding(), build_model(), defineAttribute(), doContent(), doProlog(), handleUnknownEncoding(), nextScaffoldPart(), parserCreate(), processInternalEntity(), storeAtts(), XML_GetBuffer(), XML_MemMalloc(), and XML_Parse().
#define MUST_CONVERT | ( | enc, | |
s | |||
) | (!(enc)->isUtf8) |
Definition at line 49 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 49 of file xmlparse.cc
Referenced by doCdataSection(), doContent(), and reportDefault().
#define namespaceSeparator (parser->m_namespaceSeparator) |
Definition at line 665 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 665 of file xmlparse.cc
Referenced by addBinding(), doContent(), getContext(), parserCreate(), storeAtts(), and XML_ExternalEntityParserCreate().
#define notationDeclHandler (parser->m_notationDeclHandler) |
Definition at line 588 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 588 of file xmlparse.cc
Referenced by doProlog(), parserInit(), XML_ExternalEntityParserCreate(), and XML_SetNotationDeclHandler().
#define notStandaloneHandler (parser->m_notStandaloneHandler) |
Definition at line 592 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 592 of file xmlparse.cc
Referenced by doProlog(), parserInit(), XML_ExternalEntityParserCreate(), and XML_SetNotStandaloneHandler().
#define ns (parser->m_ns) |
Definition at line 614 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 614 of file xmlparse.cc
Referenced by PHG4TruthTrackingAction::AddVertex(), G4AntiNeutronAnnihilationAtRest::AtRestGetPhysicalInteractionLength(), G4VRestContinuousProcess::AtRestGetPhysicalInteractionLength(), G4VRestProcess::AtRestGetPhysicalInteractionLength(), G4VRestDiscreteProcess::AtRestGetPhysicalInteractionLength(), G4VRestContinuousDiscreteProcess::AtRestGetPhysicalInteractionLength(), doiPETAnalysis::BlurringParameters(), G4ErrorSurfaceTrajState::BuildErrorMatrix(), G4Radioactivation::CalculateChainsFromParent(), G4RadioactiveDecay::CalculateChainsFromParent(), G4ParticleChangeForDecay::CheckIt(), G4ParticleChange::CheckIt(), G4FastStep::CheckIt(), G4VParticleChange::CheckSecondary(), OpNoviceDetectorConstruction::Construct(), G4ShortLivedConstructor::ConstructMesons(), G4NeutronTrackingCut::ConstructProcess(), Run::CountSteps0(), Run::CountSteps1(), WLSMaterials::CreateMaterials(), PHG4HybridHomogeneousCalorimeterDetector::CrystalTable(), G4RadioactiveDecayBase::DecayAnalog(), G4UnknownDecay::DecayIt(), G4Decay::DecayIt(), G4MuonicAtomDecay::DecayIt(), G4RadioactiveDecay::DecayIt(), LXeDetectorConstruction::DefineMaterials(), G4BcMesonMinus::Definition(), G4BcMesonPlus::Definition(), G4EtaPrime::Definition(), G4Upsilon::Definition(), G4AntiSigmaPlus::Definition(), G4AntiSigmaMinus::Definition(), G4AntiSigmaZero::Definition(), G4AntiXicPlus::Definition(), G4AntiXicZero::Definition(), G4AntiXiMinus::Definition(), G4AntiXiZero::Definition(), G4Lambda::Definition(), G4LambdacPlus::Definition(), G4OmegabMinus::Definition(), G4OmegacZero::Definition(), G4OmegaMinus::Definition(), G4SigmacPlus::Definition(), G4SigmacPlusPlus::Definition(), G4SigmacZero::Definition(), G4TauPlus::Definition(), G4SigmaMinus::Definition(), G4SigmaPlus::Definition(), G4SigmaZero::Definition(), G4PionZero::Definition(), G4XicPlus::Definition(), G4XicZero::Definition(), G4XiMinus::Definition(), G4KaonZeroShort::Definition(), G4XiZero::Definition(), G4AntiBMesonZero::Definition(), G4AntiBsMesonZero::Definition(), G4JPsi::Definition(), G4AntiOmegabMinus::Definition(), G4AntiDMesonZero::Definition(), G4BMesonMinus::Definition(), G4DsMesonPlus::Definition(), G4BMesonPlus::Definition(), G4BMesonZero::Definition(), G4BsMesonZero::Definition(), G4DMesonMinus::Definition(), G4DMesonPlus::Definition(), G4DMesonZero::Definition(), G4DsMesonMinus::Definition(), G4AntiLambda::Definition(), G4Eta::Definition(), G4AntiLambdacPlus::Definition(), G4AntiOmegacZero::Definition(), G4KaonMinus::Definition(), G4KaonPlus::Definition(), G4KaonZeroLong::Definition(), G4AntiOmegaMinus::Definition(), G4PionPlus::Definition(), G4PionMinus::Definition(), G4AntiSigmacPlus::Definition(), G4MuonMinus::Definition(), G4MuonPlus::Definition(), G4TauMinus::Definition(), G4AntiSigmacPlusPlus::Definition(), G4AntiSigmacZero::Definition(), G4AntiXibMinus::Definition(), G4AntiXibZero::Definition(), G4SigmabMinus::Definition(), G4SigmabZero::Definition(), G4SigmabPlus::Definition(), G4AntiSigmabZero::Definition(), G4XibMinus::Definition(), G4XibZero::Definition(), G4AntiSigmabMinus::Definition(), G4AntiSigmabPlus::Definition(), G4Etac::Definition(), G4Lambdab::Definition(), G4AntiLambdab::Definition(), doContent(), doiPETAnalysis::doiPETAnalysis(), G4GEMProbability::Dump(), G4ParticleChangeForDecay::DumpInfo(), G4IsotopeProperty::DumpInfo(), G4ParticleChange::DumpInfo(), G4ParticleDefinition::DumpTable(), RE01EventAction::EndOfEventAction(), G4ParticleGunMessenger::G4ParticleGunMessenger(), G4HtmlPPReporter::GenerateIndex(), G4NuclideTable::GenerateNuclide(), MedicalBeam::GeneratePrimaries(), getAttributeId(), G4MuonicAtomDecay::GetMeanLifeTime(), G4Decay::GetMeanLifeTime(), G4RadioactiveDecayBase::GetMeanLifeTime(), G4RadioactiveDecay::GetMeanLifeTime(), PHG4LFHcalDetector::GetScintillatorMaterial(), PHG4ForwardDualReadoutDetector::GetScintillatorMaterial(), PHG4ForwardEcalDetector::GetScintillatorMaterial(), PHG4ForwardEcalDetector::GetWLSFiberFEMCMaterial(), PHG4LFHcalDetector::GetWLSFiberMaterial(), handleUnknownEncoding(), initializeEncoding(), G4LDMPhoton::LDMPhotonDefinition(), luedit(), luprep(), lushow(), lustrf(), operator<<(), OpNovicePrimaryGeneratorAction::OpNovicePrimaryGeneratorAction(), parserCreate(), G4OpWLS::PostStepDoIt(), G4Scintillation::PostStepDoIt(), XAluminumElectrodeHit::Print(), B5HodoscopeHit::Print(), B5DriftChamberHit::Print(), H02MuonHit::Print(), G4PrimaryVertex::Print(), G4PrimaryParticle::Print(), G4MCTSimVertex::Print(), G4ParticlePropertyData::Print(), G4MCTSimParticle::PrintSingle(), ScreenSD::ProcessHits(), processXmlDecl(), pyedit(), pyhiremn(), pyhisspa(), pyprep(), pyremn(), pyshow(), pysspa(), pystrf(), PHG4TpcCentralMembrane::setCentralMembraneDelay(), G4VisCommandsViewerSet::SetNewValue(), Packet_hbd_fpgashort::setNumSamples(), Packet_hbd_fpga::setNumSamples(), G4NeutronKiller::SetTimeLimit(), startParsing(), G4BinaryCascade::StepParticlesOut(), storeAtts(), G4ViewParameters::TimeWindowCommands(), PHG4BbcSteppingAction::UserSteppingAction(), F05SteppingAction::UserSteppingAction(), G4SteppingVerbose::VerboseTrack(), G4ITSteppingVerbose::VerboseTrack(), XAluminumElectrodeSensitivity::WriteHitInfo(), DMXEventAction::writeScintHitsToFile(), and XML_ExternalEntityParserCreate().
#define ns_triplets (parser->m_ns_triplets) |
Definition at line 615 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 615 of file xmlparse.cc
Referenced by doContent(), parserCreate(), storeAtts(), XML_ExternalEntityParserCreate(), and XML_SetReturnNSTriplet().
#define nsAtts (parser->m_nsAtts) |
Definition at line 657 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 657 of file xmlparse.cc
Referenced by parserCreate(), storeAtts(), and XML_ParserFree().
#define nsAttsPower (parser->m_nsAttsPower) |
Definition at line 659 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 659 of file xmlparse.cc
Referenced by parserCreate(), and storeAtts().
#define nsAttsVersion (parser->m_nsAttsVersion) |
Definition at line 658 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 658 of file xmlparse.cc
Referenced by parserCreate(), and storeAtts().
#define nSpecifiedAtts (parser->m_nSpecifiedAtts) |
Definition at line 655 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 655 of file xmlparse.cc
Referenced by parserInit(), storeAtts(), and XML_GetSpecifiedAttributeCount().
#define openInternalEntities (parser->m_openInternalEntities) |
Definition at line 623 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 623 of file xmlparse.cc
Referenced by appendAttributeValue(), doCdataSection(), doContent(), doProlog(), internalEntityProcessor(), parserInit(), processInternalEntity(), reportDefault(), XML_DefaultCurrent(), XML_ParserFree(), and XML_ParserReset().
#define parentParser (parser->m_parentParser) |
Definition at line 666 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 666 of file xmlparse.cc
Referenced by cdataSectionProcessor(), doProlog(), internalEntityProcessor(), parserInit(), XML_ExternalEntityParserCreate(), XML_Parse(), XML_ParseBuffer(), XML_ParserFree(), and XML_ParserReset().
#define parseEndByteIndex (parser->m_parseEndByteIndex) |
Definition at line 631 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 631 of file xmlparse.cc
Referenced by parserInit(), storeAtts(), XML_GetCurrentByteIndex(), XML_Parse(), and XML_ParseBuffer().
#define parseEndPtr (parser->m_parseEndPtr) |
Definition at line 632 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 632 of file xmlparse.cc
Referenced by parserInit(), storeAtts(), XML_GetCurrentByteIndex(), XML_Parse(), XML_ParseBuffer(), and XML_ResumeParser().
#define poolAppendChar | ( | pool, | |
c | |||
) |
Definition at line 460 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 460 of file xmlparse.cc
Referenced by appendAttributeValue(), doProlog(), dtdCopy(), getAttributeId(), getContext(), poolAppendString(), poolCopyString(), poolCopyStringN(), setContext(), setElementTypePrefix(), storeAttributeValue(), and storeAtts().
#define poolChop | ( | pool | ) | ((void)--(pool->ptr)) |
Definition at line 456 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 456 of file xmlparse.cc
Referenced by storeAttributeValue().
#define poolDiscard | ( | pool | ) | ((pool)->ptr = (pool)->start) |
Definition at line 458 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 458 of file xmlparse.cc
Referenced by appendAttributeValue(), doContent(), doProlog(), getAttributeId(), getElementType(), setContext(), setElementTypePrefix(), and storeEntityValue().
#define poolEnd | ( | pool | ) | ((pool)->ptr) |
Definition at line 454 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 454 of file xmlparse.cc
#define poolFinish | ( | pool | ) | ((pool)->start = (pool)->ptr) |
Definition at line 459 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 459 of file xmlparse.cc
Referenced by doContent(), doProlog(), getAttributeId(), getElementType(), poolCopyString(), poolCopyStringN(), processXmlDecl(), reportProcessingInstruction(), setElementTypePrefix(), and storeAtts().
#define poolLastChar | ( | pool | ) | (((pool)->ptr)[-1]) |
Definition at line 457 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 457 of file xmlparse.cc
Referenced by appendAttributeValue(), and storeAttributeValue().
#define poolLength | ( | pool | ) | ((pool)->ptr - (pool)->start) |
Definition at line 455 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 455 of file xmlparse.cc
Referenced by appendAttributeValue(), doProlog(), setContext(), and storeAttributeValue().
#define poolStart | ( | pool | ) | ((pool)->start) |
Definition at line 453 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 453 of file xmlparse.cc
Referenced by doProlog(), getAttributeId(), setContext(), setElementTypePrefix(), and storeAtts().
Definition at line 622 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 622 of file xmlparse.cc
Referenced by accessRandom(), G4ArrayOps::Add(), G4MoleculeGun::AddMolecule(), G4MoleculeGun::AddNMolecules(), G4eLowEnergyLoss::AlongStepDoIt(), Acts::BinUtility::binTriple(), G4GDMLReadSolids::BooleanRead(), Acts::Test::BOOST_AUTO_TEST_CASE(), Acts::CartesianSegmentation::cell(), G4SafetyHelper::CheckNextStep(), G4ITSafetyHelper::CheckNextStep(), CMDistortionReco(), CMDistortionRecoCart(), CMDistortionRecoPhiR(), G4SafetyHelper::ComputeSafety(), G4ITSafetyHelper::ComputeSafety(), G4MultiNavigator::ComputeSafety(), G4PathFinder::ComputeSafety(), G4ITMultiNavigator::ComputeSafety(), G4ITPathFinder::ComputeSafety(), RE02NestedPhantomParameterisation::ComputeTransformation(), Acts::Test::consistencyCheck(), FFDetectorConstruction::Construct(), G02DetectorConstruction::ConstructAssembly(), G4ArrayOps::Copy(), DNAParser::CreateLogicVolume(), G4LowEnergyIonisation::DeexciteAtom(), G4ArrayOps::Divide(), Par01PiModel::DoIt(), ActsEvaluator::fillProtoTrack(), PHActsInitialVertexFinder::findVertices(), Acts::FullBilloirVertexFitter< input_track_t, linearizer_t >::fit(), G4DNAIndirectHit::G4DNAIndirectHit(), PHG4PrimaryGeneratorAction::GeneratePrimaries(), kdfinder::Helix< T >::geometricSignedDistance(), nlohmann::detail::lexer< BasicJsonType >::get_position(), G4PAIxSection::GetCerenkovEnergyTransfer(), XrayFluoDetectorConstruction::GetDetectorPosition(), G4PAIxSection::GetEnergyTransfer(), Acts::InterpolatedBFieldMapper< G >::getField(), Acts::InterpolatedBFieldMapper< G >::getFieldCell(), G4PAIxSection::GetMMEnergyTransfer(), G4Pythia6Decayer::GetParticlePosition(), G4PAIxSection::GetPlasmonEnergyTransfer(), G4VXTRenergyLoss::GetRandomAngle(), G4SynchrotronRadiationInMat::GetRandomEnergySR(), G4PAIxSection::GetResonanceEnergyTransfer(), G4PAIxSection::GetRutherfordEnergyTransfer(), G4PAIySection::GetStepCerenkovLoss(), G4PAIySection::GetStepEnergyLoss(), G4PAIySection::GetStepPlasmonLoss(), G4VXTRenergyLoss::GetXTRrandomEnergy(), Acts::ConeSurface::globalToLocal(), Acts::LineSurface::globalToLocal(), HepMCG4Interface::HepMC2G4(), Acts::BinUtility::inside(), Acts::LineSurface::intersectionEstimate(), Acts::ConeSurface::intersectionSolver(), Acts::HelicalTrackLinearizer< propagator_t, propagator_options_t >::linearizeTrack(), Acts::CylinderSurface::localToGlobal(), G4PathFinder::Locate(), G4ITPathFinder::Locate(), G4MultiNavigator::LocateGlobalPointWithinVolume(), G4ITMultiNavigator::LocateGlobalPointWithinVolume(), PHActsTrkFitter::loopTracks(), PHTpcResiduals::makeTrackParams(), MoveDescendantsToParent(), G4ArrayOps::Multiply(), G4GDMLReadSolids::MultiUnionNodeRead(), Acts::ConeSurface::normal(), Acts::CylinderSurface::normal(), G4GDMLReadParamvol::ParametersRead(), Acts::ConeSurface::pathCorrection(), G4GDMLReadStructure::PhysvolRead(), FFDetectorConstruction::PlaceFuelPlate(), G4GDMLReadDefine::PositionRead(), G4NeutrinoElectronProcess::PostStepDoIt(), G4MuNeutrinoNucleusProcess::PostStepDoIt(), G4PathFinder::PrepareNewTrack(), G4ITPathFinder::PrepareNewTrack(), CexmcTrackPoints::ProcessHits(), G4FastStep::ProposePrimaryTrackFinalPosition(), CexmcSetup::ReadTransforms(), G4GDMLReadSolids::ReflectedSolidRead(), G4PathFinder::ReLocate(), G4ITPathFinder::ReLocate(), G4GDMLReadStructure::ReplicaRead(), CexmcPhysicsList< BasePhysics, StudiedPhysics, ProductionModel >::ResampleTrackLengthInTarget(), FW::RootBFieldWriter< bfield_t >::run(), G4PAIPhotData::SampleAlongStepPhotonTransfer(), G4PAIPhotData::SampleAlongStepPlasmonTransfer(), G4PAIPhotData::SampleAlongStepTransfer(), G4PAIModelData::SampleAlongStepTransfer(), G4hhElastic::SampleBisectionalT(), G4hhElastic::SampleInvariantT(), G4PAIPhotData::SamplePostStepPhotonTransfer(), G4PAIPhotData::SamplePostStepPlasmonTransfer(), G4PAIPhotData::SamplePostStepTransfer(), G4NeutronElectronElModel::SampleSin2HalfTheta(), G4DiffuseElasticV2::SampleTableThetaCMS(), G4NuclNuclDiffuseElastic::SampleTableThetaCMS(), G4DiffuseElastic::SampleTableThetaCMS(), G4hhElastic::SampleTest(), G4ArrayOps::Set(), Acts::AdaptiveMultiVertexFitter< input_track_t, linearizer_t >::setAllVertexCompatibilities(), CexmcParticleGun::SetOrigPosition(), Acts::Vertex< input_track_t >::setPosition(), G4INCL::Particle::setPosition(), G4MPIscorerMerger::SetupOutputBuffer(), G4VUserMPIrunMerger::SetupOutputBuffer(), HadrontherapyDetectorConstruction::SetVirtualLayerPosition(), G4INCL::StandardPropagationModel::shootComposite(), G4INCL::StandardPropagationModel::shootParticle(), PHHepMCGenHelper::smear(), PHG4ParticleGeneratorVectorMeson::smearvtx(), PHG4SimpleEventGenerator::smearvtx(), G4ArrayOps::Subtract(), Acts::KalmanVertexTrackUpdater::update(), PHActsVertexPropagator::updateSvtxTrack(), and Acts::Vertex< input_track_t >::Vertex().
#define positionPtr (parser->m_positionPtr) |
Definition at line 621 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 621 of file xmlparse.cc
Referenced by parserInit(), XML_GetBuffer(), XML_GetCurrentColumnNumber(), XML_GetCurrentLineNumber(), XML_Parse(), XML_ParseBuffer(), and XML_ResumeParser().
#define PROBE_STEP | ( | hash, | |
mask, | |||
power | |||
) | ((unsigned char)((SECOND_HASH(hash, mask, power)) | 1)) |
Definition at line 133 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 133 of file xmlparse.cc
Referenced by lookup(), and storeAtts().
#define processingInstructionHandler (parser->m_processingInstructionHandler) |
Definition at line 577 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 577 of file xmlparse.cc
Referenced by parserInit(), reportProcessingInstruction(), XML_ExternalEntityParserCreate(), and XML_SetProcessingInstructionHandler().
#define processor (parser->m_processor) |
Definition at line 617 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 617 of file xmlparse.cc
Referenced by HepPolyhedron::add(), cdataSectionProcessor(), G4UnionSolid::CreatePolyhedron(), G4IntersectionSolid::CreatePolyhedron(), G4SubtractionSolid::CreatePolyhedron(), G4MultiUnion::CreatePolyhedron(), doContent(), doProlog(), epilogProcessor(), externalEntityInitProcessor(), externalEntityInitProcessor2(), externalEntityInitProcessor3(), internalEntityProcessor(), HepPolyhedron::intersect(), parserInit(), processInternalEntity(), prologInitProcessor(), HepPolyhedron::subtract(), XML_ExternalEntityParserCreate(), XML_Parse(), XML_ParseBuffer(), and XML_ResumeParser().
#define prologState (parser->m_prologState) |
Definition at line 616 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 616 of file xmlparse.cc
Referenced by appendAttributeValue(), doProlog(), parserInit(), storeEntityValue(), and XML_ExternalEntityParserCreate().
#define protocolEncodingName (parser->m_protocolEncodingName) |
Definition at line 613 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 613 of file xmlparse.cc
Referenced by initializeEncoding(), parserCreate(), parserInit(), processXmlDecl(), and XML_SetEncoding().
#define ps_finalBuffer (parser->m_parsingStatus.finalBuffer) |
Definition at line 668 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 668 of file xmlparse.cc
Referenced by cdataSectionProcessor(), contentProcessor(), epilogProcessor(), externalEntityContentProcessor(), externalEntityInitProcessor2(), externalEntityInitProcessor3(), internalEntityProcessor(), prologProcessor(), XML_Parse(), XML_ParseBuffer(), and XML_ResumeParser().
#define ps_parsing (parser->m_parsingStatus.parsing) |
Definition at line 667 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 667 of file xmlparse.cc
Referenced by doCdataSection(), doContent(), doProlog(), epilogProcessor(), externalEntityInitProcessor3(), internalEntityProcessor(), parserInit(), processInternalEntity(), XML_GetBuffer(), XML_Parse(), XML_ParseBuffer(), XML_ResumeParser(), XML_SetEncoding(), XML_SetHashSalt(), XML_SetParamEntityParsing(), XML_SetReturnNSTriplet(), XML_StopParser(), and XML_UseForeignDTD().
Definition at line 569 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 569 of file xmlparse.cc
Referenced by addBinding(), defineAttribute(), doContent(), doProlog(), nextScaffoldPart(), storeAtts(), storeRawNames(), XML_MemRealloc(), and XML_Parse().
Definition at line 82 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 82 of file xmlparse.cc
Referenced by storeRawNames().
Definition at line 131 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 131 of file xmlparse.cc
#define skippedEntityHandler (parser->m_skippedEntityHandler) |
Definition at line 599 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 599 of file xmlparse.cc
Referenced by doContent(), doProlog(), parserInit(), XML_ExternalEntityParserCreate(), and XML_SetSkippedEntityHandler().
#define startCdataSectionHandler (parser->m_startCdataSectionHandler) |
Definition at line 580 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 580 of file xmlparse.cc
Referenced by doContent(), parserInit(), XML_ExternalEntityParserCreate(), XML_SetCdataSectionHandler(), and XML_SetStartCdataSectionHandler().
#define startDoctypeDeclHandler (parser->m_startDoctypeDeclHandler) |
Definition at line 584 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 584 of file xmlparse.cc
Referenced by doProlog(), parserInit(), XML_SetDoctypeDeclHandler(), and XML_SetStartDoctypeDeclHandler().
#define startElementHandler (parser->m_startElementHandler) |
Definition at line 574 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 574 of file xmlparse.cc
Referenced by doContent(), parserInit(), XML_ExternalEntityParserCreate(), XML_SetElementHandler(), and XML_SetStartElementHandler().
#define startNamespaceDeclHandler (parser->m_startNamespaceDeclHandler) |
Definition at line 589 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 589 of file xmlparse.cc
Referenced by addBinding(), parserInit(), XML_ExternalEntityParserCreate(), XML_SetNamespaceDeclHandler(), and XML_SetStartNamespaceDeclHandler().
#define tagLevel (parser->m_tagLevel) |
Definition at line 627 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 627 of file xmlparse.cc
Referenced by doContent(), externalEntityInitProcessor3(), parserInit(), and processInternalEntity().
#define tagStack (parser->m_tagStack) |
Definition at line 652 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 652 of file xmlparse.cc
Referenced by doContent(), parserInit(), storeAtts(), storeRawNames(), XML_ParserFree(), and XML_ParserReset().
#define temp2Pool (parser->m_temp2Pool) |
Definition at line 662 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 662 of file xmlparse.cc
Referenced by appendAttributeValue(), parserCreate(), processXmlDecl(), XML_ParserFree(), and XML_ParserReset().
#define tempPool (parser->m_tempPool) |
Definition at line 661 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 661 of file xmlparse.cc
Referenced by doContent(), doProlog(), getContext(), parserCreate(), parserInit(), reportComment(), reportProcessingInstruction(), setContext(), storeAtts(), storeEntityValue(), XML_ParserFree(), XML_ParserReset(), and XML_SetEncoding().
#define unknownEncodingData (parser->m_unknownEncodingData) |
Definition at line 609 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 609 of file xmlparse.cc
Referenced by handleUnknownEncoding(), parserInit(), XML_ParserFree(), and XML_ParserReset().
#define unknownEncodingHandler (parser->m_unknownEncodingHandler) |
Definition at line 600 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 600 of file xmlparse.cc
Referenced by handleUnknownEncoding(), parserCreate(), XML_ExternalEntityParserCreate(), and XML_SetUnknownEncodingHandler().
#define unknownEncodingHandlerData (parser->m_unknownEncodingHandlerData) |
Definition at line 610 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 610 of file xmlparse.cc
Referenced by handleUnknownEncoding(), parserCreate(), and XML_SetUnknownEncodingHandler().
#define unknownEncodingMem (parser->m_unknownEncodingMem) |
Definition at line 608 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 608 of file xmlparse.cc
Referenced by handleUnknownEncoding(), parserInit(), XML_ParserFree(), and XML_ParserReset().
#define unknownEncodingRelease (parser->m_unknownEncodingRelease) |
Definition at line 612 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 612 of file xmlparse.cc
Referenced by handleUnknownEncoding(), parserInit(), XML_ParserFree(), and XML_ParserReset().
#define unparsedEntityDeclHandler (parser->m_unparsedEntityDeclHandler) |
Definition at line 586 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 586 of file xmlparse.cc
Referenced by doProlog(), parserInit(), XML_ExternalEntityParserCreate(), and XML_SetUnparsedEntityDeclHandler().
#define userData (parser->m_userData) |
Definition at line 572 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 572 of file xmlparse.cc
Referenced by parserInit(), XML_ExternalEntityParserCreate(), XML_SetUserData(), and XmlInitUnknownEncoding().
Referenced by G4Abla::DeexcitationAblaxx(), and hijfst_().
Referenced by G4Abla::DeexcitationAblaxx(), hijfst_(), and XML_ExpatVersion().
#define XML_BUILDING_EXPAT 1 |
Definition at line 17 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 17 of file xmlparse.cc
#define XML_ENCODE_MAX XML_UTF8_ENCODE_MAX |
Definition at line 44 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 44 of file xmlparse.cc
Referenced by appendAttributeValue(), doContent(), and storeEntityValue().
Definition at line 77 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 77 of file xmlparse.cc
Referenced by XML_ErrorString(), and XML_GetFeatureList().
Definition at line 76 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 76 of file xmlparse.cc
Referenced by addBinding(), doContent(), doProlog(), dtdCopy(), getAttributeId(), getContext(), normalizeLines(), normalizePublicId(), setContext(), setElementTypePrefix(), storeAttributeValue(), and storeAtts().
#define XmlConvert XmlUtf8Convert |
Definition at line 45 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 45 of file xmlparse.cc
Referenced by doCdataSection(), doContent(), poolAppend(), and reportDefault().
#define xmlDeclHandler (parser->m_xmlDeclHandler) |
Definition at line 604 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 604 of file xmlparse.cc
Referenced by parserInit(), processXmlDecl(), XML_ExternalEntityParserCreate(), and XML_SetXmlDeclHandler().
#define XmlEncode XmlUtf8Encode |
Definition at line 48 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 48 of file xmlparse.cc
Referenced by appendAttributeValue(), doContent(), and storeEntityValue().
#define XmlGetInternalEncoding XmlGetUtf8InternalEncoding |
Definition at line 46 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 46 of file xmlparse.cc
Referenced by parserCreate().
#define XmlGetInternalEncodingNS XmlGetUtf8InternalEncodingNS |
Definition at line 59 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 59 of file xmlparse.cc
Referenced by parserCreate().
#define XmlGetInternalEncodingNS XmlGetInternalEncoding |
Definition at line 59 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 59 of file xmlparse.cc
#define XmlInitEncodingNS XmlInitEncoding |
Definition at line 56 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 56 of file xmlparse.cc
Referenced by initializeEncoding().
#define XmlInitUnknownEncodingNS XmlInitUnknownEncoding |
Definition at line 57 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 57 of file xmlparse.cc
Referenced by handleUnknownEncoding().
#define XmlParseXmlDeclNS XmlParseXmlDecl |
Definition at line 60 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 60 of file xmlparse.cc
Referenced by processXmlDecl().
typedef struct attribute_id ATTRIBUTE_ID |
typedef char ICHAR |
Definition at line 50 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 50 of file xmlparse.cc
Definition at line 97 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 97 of file xmlparse.cc
typedef struct open_internal_entity OPEN_INTERNAL_ENTITY |
|
static |
Definition at line 3056 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 3056 of file xmlparse.cc
References _dtd, ASCII_0, ASCII_1, ASCII_2, ASCII_3, ASCII_8, ASCII_9, ASCII_a, ASCII_c, ASCII_COLON, ASCII_e, ASCII_g, ASCII_h, ASCII_L, ASCII_l, ASCII_M, ASCII_m, ASCII_n, ASCII_o, ASCII_p, ASCII_PERIOD, ASCII_r, ASCII_s, ASCII_SLASH, ASCII_t, ASCII_w, ASCII_X, ASCII_x, binding::attId, b, prefix::binding, EXPAND_SPARE, FREE, freeBindingList, handlerArg, int(), MALLOC, prefix::name, namespaceSeparator, binding::nextTagBinding, binding::prefix, binding::prevPrefixBinding, REALLOC, startNamespaceDeclHandler, binding::uri, binding::uriAlloc, binding::uriLen, XML_ERROR_NO_MEMORY, XML_ERROR_NONE, XML_ERROR_RESERVED_NAMESPACE_URI, XML_ERROR_RESERVED_PREFIX_XML, XML_ERROR_RESERVED_PREFIX_XMLNS, XML_ERROR_UNDECLARING_PREFIX, XML_FALSE, XML_T, and XML_TRUE.
Referenced by setContext(), and storeAtts().
|
static |
Definition at line 4944 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 4944 of file xmlparse.cc
References _dtd, eventPtr, DTD::generalEntities, DTD::hasParamEntityRefs, internalEncoding, ENTITY::is_internal, lookup(), encoding::minBytesPerChar, n, ENTITY::notation, ENTITY::open, openInternalEntities, DTD::pool, poolAppend(), poolAppendChar, poolDiscard, poolLastChar, poolLength, poolStoreString(), prologState, DTD::standalone, temp2Pool, ENTITY::textLen, ENTITY::textPtr, XML_ENCODE_MAX, XML_ERROR_ATTRIBUTE_EXTERNAL_ENTITY_REF, XML_ERROR_BAD_CHAR_REF, XML_ERROR_BINARY_ENTITY_REF, XML_ERROR_ENTITY_DECLARED_IN_PE, XML_ERROR_INVALID_TOKEN, XML_ERROR_NO_MEMORY, XML_ERROR_NONE, XML_ERROR_RECURSIVE_ENTITY_REF, XML_ERROR_UNDEFINED_ENTITY, XML_ERROR_UNEXPECTED_STATE, XML_FALSE, XML_TOK_ATTRIBUTE_VALUE_S, XML_TOK_CHAR_REF, XML_TOK_DATA_CHARS, XML_TOK_DATA_NEWLINE, XML_TOK_ENTITY_REF, XML_TOK_INVALID, XML_TOK_NONE, XML_TOK_PARTIAL, XML_TOK_TRAILING_CR, XML_TRUE, XmlAttributeValueTok, XmlCharRefNumber, XmlEncode, and XmlPredefinedEntityName.
Referenced by storeAttributeValue().
|
static |
Definition at line 6366 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 6366 of file xmlparse.cc
References _dtd, build_node(), DTD::contentStringLen, MALLOC, and DTD::scaffCount.
Referenced by doProlog().
|
static |
Definition at line 6328 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 6328 of file xmlparse.cc
References _dtd, CONTENT_SCAFFOLD::childcnt, XML_cp::children, CONTENT_SCAFFOLD::firstchild, XML_cp::name, CONTENT_SCAFFOLD::name, CONTENT_SCAFFOLD::nextsib, XML_cp::numchildren, XML_cp::quant, CONTENT_SCAFFOLD::quant, DTD::scaffold, XML_cp::type, CONTENT_SCAFFOLD::type, and XML_CTYPE_NAME.
Referenced by build_model().
|
static |
Definition at line 3173 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 3173 of file xmlparse.cc
References contentProcessor, doCdataSection(), externalEntityContentProcessor, parentParser, processor, ps_finalBuffer, and XML_ERROR_NONE.
|
static |
Definition at line 2106 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 2106 of file xmlparse.cc
References doContent(), ps_finalBuffer, storeRawNames(), XML_ERROR_NO_MEMORY, and XML_ERROR_NONE.
|
static |
Definition at line 5889 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 5889 of file xmlparse.cc
References ENTITY::base, hashTableIterInit(), hashTableIterNext(), ENTITY::is_internal, ENTITY::is_param, lookup(), ENTITY::name, ENTITY::notation, poolCopyString(), poolCopyStringN(), ENTITY::publicId, ENTITY::systemId, ENTITY::textLen, and ENTITY::textPtr.
Referenced by dtdCopy().
|
static |
Definition at line 5362 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 5362 of file xmlparse.cc
References ELEMENT_TYPE::allocDefaultAtts, ELEMENT_TYPE::defaultAtts, DEFAULT_ATTRIBUTE::id, ELEMENT_TYPE::idAtt, DEFAULT_ATTRIBUTE::isCdata, MALLOC, attribute_id::maybeTokenized, ELEMENT_TYPE::nDefaultAtts, REALLOC, DEFAULT_ATTRIBUTE::value, XML_TRUE, and attribute_id::xmlns.
Referenced by doProlog().
|
static |
Definition at line 1123 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 1123 of file xmlparse.cc
References b, FREE, binding::nextTagBinding, and binding::uri.
Referenced by XML_ParserFree().
|
static |
Definition at line 3199 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 3199 of file xmlparse.cc
References c, characterDataHandler, dataBuf, dataBufEnd, defaultHandler, endCdataSectionHandler, eventEndPtr, eventPtr, handlerArg, MUST_CONVERT, openInternalEntities, ps_parsing, reportDefault(), XML_ERROR_ABORTED, XML_ERROR_INVALID_TOKEN, XML_ERROR_NONE, XML_ERROR_PARTIAL_CHAR, XML_ERROR_UNCLOSED_CDATA_SECTION, XML_ERROR_UNEXPECTED_STATE, XML_FINISHED, XML_SUSPENDED, XML_TOK_CDATA_SECT_CLOSE, XML_TOK_DATA_CHARS, XML_TOK_DATA_NEWLINE, XML_TOK_INVALID, XML_TOK_NONE, XML_TOK_PARTIAL, XML_TOK_PARTIAL_CHAR, XmlCdataSectionTok, and XmlConvert.
Referenced by cdataSectionProcessor(), and doContent().
|
static |
Definition at line 2237 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 2237 of file xmlparse.cc
References _dtd, b, ENTITY::base, prefix::binding, tag::bindings, tag::buf, tag::bufEnd, c, cdataSectionProcessor, characterDataHandler, dataBuf, dataBufEnd, defaultExpandInternalEntities, defaultHandler, doCdataSection(), endElementHandler, endNamespaceDeclHandler, epilogProcessor, eventEndPtr, eventPtr, externalEntityRefHandler, externalEntityRefHandlerArg, for(), FREE, freeBindingList, freeTagList, DTD::generalEntities, getContext(), handlerArg, DTD::hasParamEntityRefs, if(), INIT_TAG_BUF_SIZE, int(), ENTITY::is_internal, TAG_NAME::localPart, lookup(), MALLOC, encoding::minBytesPerChar, MUST_CONVERT, n, prefix::name, tag::name, ENTITY::name, namespaceSeparator, binding::nextTagBinding, ENTITY::notation, ns, ns_triplets, ENTITY::open, openInternalEntities, tag::parent, DTD::pool, poolClear(), poolDiscard, poolFinish, poolStoreString(), binding::prefix, TAG_NAME::prefix, binding::prevPrefixBinding, processInternalEntity(), processor, ps_parsing, ENTITY::publicId, tag::rawName, tag::rawNameLength, REALLOC, reportComment(), reportDefault(), reportProcessingInstruction(), skippedEntityHandler, DTD::standalone, startCdataSectionHandler, startElementHandler, storeAtts(), TAG_NAME::str, TAG_NAME::strLen, ENTITY::systemId, tagLevel, tagStack, tempPool, ENTITY::textPtr, TAG_NAME::uriLen, while(), XML_ENCODE_MAX, XML_ERROR_ABORTED, XML_ERROR_ASYNC_ENTITY, XML_ERROR_BAD_CHAR_REF, XML_ERROR_BINARY_ENTITY_REF, XML_ERROR_ENTITY_DECLARED_IN_PE, XML_ERROR_EXTERNAL_ENTITY_HANDLING, XML_ERROR_INVALID_TOKEN, XML_ERROR_MISPLACED_XML_PI, XML_ERROR_NO_ELEMENTS, XML_ERROR_NO_MEMORY, XML_ERROR_NONE, XML_ERROR_PARTIAL_CHAR, XML_ERROR_RECURSIVE_ENTITY_REF, XML_ERROR_TAG_MISMATCH, XML_ERROR_UNCLOSED_TOKEN, XML_ERROR_UNDEFINED_ENTITY, XML_FALSE, XML_FINISHED, XML_SUSPENDED, XML_T, XML_TOK_CDATA_SECT_OPEN, XML_TOK_CHAR_REF, XML_TOK_COMMENT, XML_TOK_DATA_CHARS, XML_TOK_DATA_NEWLINE, XML_TOK_EMPTY_ELEMENT_NO_ATTS, XML_TOK_EMPTY_ELEMENT_WITH_ATTS, XML_TOK_END_TAG, XML_TOK_ENTITY_REF, XML_TOK_INVALID, XML_TOK_NONE, XML_TOK_PARTIAL, XML_TOK_PARTIAL_CHAR, XML_TOK_PI, XML_TOK_START_TAG_NO_ATTS, XML_TOK_START_TAG_WITH_ATTS, XML_TOK_TRAILING_CR, XML_TOK_TRAILING_RSQB, XML_TOK_XML_DECL, XML_TRUE, XmlCharRefNumber, XmlContentTok, XmlConvert, XmlEncode, XmlNameLength, and XmlPredefinedEntityName.
Referenced by contentProcessor(), externalEntityContentProcessor(), internalEntityProcessor(), and processInternalEntity().
|
static |
Definition at line 3750 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 3750 of file xmlparse.cc
References _dtd, ASCII_A, ASCII_C, ASCII_COMMA, ASCII_D, ASCII_E, ASCII_F, ASCII_HASH, ASCII_I, ASCII_K, ASCII_LPAREN, ASCII_M, ASCII_N, ASCII_O, ASCII_PIPE, ASCII_R, ASCII_RPAREN, ASCII_S, ASCII_T, ASCII_Y, attlistDeclHandler, ENTITY::base, build_model(), XML_cp::children, contentProcessor, DTD::contentStringLen, curBase, declAttributeId, declAttributeIsCdata, declAttributeIsId, declAttributeType, declElementType, declEntity, declNotationName, declNotationPublicId, defaultHandler, defineAttribute(), doctypePubid, doctypeSysid, elementDeclHandler, encoding, endDoctypeDeclHandler, entityDeclHandler, DTD::entityValuePool, eventEndPtr, eventPtr, externalEntityRefHandler, externalEntityRefHandlerArg, DTD::generalEntities, getAttributeId(), getElementType(), groupConnector, groupSize, handlerArg, DTD::hasParamEntityRefs, DTD::in_eldecl, int(), ENTITY::is_internal, DTD::keepProcessing, lookup(), MALLOC, encoding::minBytesPerChar, XML_cp::name, CONTENT_SCAFFOLD::name, ELEMENT_TYPE::name, nextScaffoldPart(), normalizePublicId(), notationDeclHandler, notStandaloneHandler, XML_cp::numchildren, ENTITY::open, openInternalEntities, parentParser, DTD::pool, poolAppend(), poolAppendChar, poolAppendString(), poolClear(), poolDiscard, poolFinish, poolLength, poolStart, poolStoreString(), processInternalEntity(), processor, processXmlDecl(), prologState, ps_parsing, ENTITY::publicId, XML_cp::quant, CONTENT_SCAFFOLD::quant, REALLOC, reportComment(), reportDefault(), reportProcessingInstruction(), DTD::scaffCount, DTD::scaffIndex, DTD::scaffLevel, DTD::scaffold, skippedEntityHandler, DTD::standalone, startDoctypeDeclHandler, storeAttributeValue(), storeEntityValue(), ENTITY::systemId, tempPool, ENTITY::textPtr, XML_cp::type, CONTENT_SCAFFOLD::type, unparsedEntityDeclHandler, XML_CQUANT_NONE, XML_CQUANT_OPT, XML_CQUANT_PLUS, XML_CQUANT_REP, XML_CTYPE_ANY, XML_CTYPE_CHOICE, XML_CTYPE_EMPTY, XML_CTYPE_MIXED, XML_CTYPE_NAME, XML_CTYPE_SEQ, XML_DTD, XML_ERROR_ABORTED, XML_ERROR_ENTITY_DECLARED_IN_PE, XML_ERROR_EXTERNAL_ENTITY_HANDLING, XML_ERROR_INCOMPLETE_PE, XML_ERROR_INVALID_TOKEN, XML_ERROR_MISPLACED_XML_PI, XML_ERROR_NO_ELEMENTS, XML_ERROR_NO_MEMORY, XML_ERROR_NONE, XML_ERROR_NOT_STANDALONE, XML_ERROR_PARAM_ENTITY_REF, XML_ERROR_PARTIAL_CHAR, XML_ERROR_PUBLICID, XML_ERROR_RECURSIVE_ENTITY_REF, XML_ERROR_SYNTAX, XML_ERROR_UNCLOSED_TOKEN, XML_ERROR_UNDEFINED_ENTITY, XML_FALSE, XML_FINISHED, XML_ROLE_ATTLIST_ELEMENT_NAME, XML_ROLE_ATTLIST_NONE, XML_ROLE_ATTRIBUTE_ENUM_VALUE, XML_ROLE_ATTRIBUTE_NAME, XML_ROLE_ATTRIBUTE_NOTATION_VALUE, XML_ROLE_ATTRIBUTE_TYPE_CDATA, XML_ROLE_ATTRIBUTE_TYPE_ENTITIES, XML_ROLE_ATTRIBUTE_TYPE_ENTITY, XML_ROLE_ATTRIBUTE_TYPE_ID, XML_ROLE_ATTRIBUTE_TYPE_IDREF, XML_ROLE_ATTRIBUTE_TYPE_IDREFS, XML_ROLE_ATTRIBUTE_TYPE_NMTOKEN, XML_ROLE_ATTRIBUTE_TYPE_NMTOKENS, XML_ROLE_COMMENT, XML_ROLE_CONTENT_ANY, XML_ROLE_CONTENT_ELEMENT, XML_ROLE_CONTENT_ELEMENT_OPT, XML_ROLE_CONTENT_ELEMENT_PLUS, XML_ROLE_CONTENT_ELEMENT_REP, XML_ROLE_CONTENT_EMPTY, XML_ROLE_CONTENT_PCDATA, XML_ROLE_DEFAULT_ATTRIBUTE_VALUE, XML_ROLE_DOCTYPE_CLOSE, XML_ROLE_DOCTYPE_INTERNAL_SUBSET, XML_ROLE_DOCTYPE_NAME, XML_ROLE_DOCTYPE_NONE, XML_ROLE_DOCTYPE_PUBLIC_ID, XML_ROLE_DOCTYPE_SYSTEM_ID, XML_ROLE_ELEMENT_NAME, XML_ROLE_ELEMENT_NONE, XML_ROLE_ENTITY_COMPLETE, XML_ROLE_ENTITY_NONE, XML_ROLE_ENTITY_NOTATION_NAME, XML_ROLE_ENTITY_PUBLIC_ID, XML_ROLE_ENTITY_SYSTEM_ID, XML_ROLE_ENTITY_VALUE, XML_ROLE_ERROR, XML_ROLE_FIXED_ATTRIBUTE_VALUE, XML_ROLE_GENERAL_ENTITY_NAME, XML_ROLE_GROUP_CHOICE, XML_ROLE_GROUP_CLOSE, XML_ROLE_GROUP_CLOSE_OPT, XML_ROLE_GROUP_CLOSE_PLUS, XML_ROLE_GROUP_CLOSE_REP, XML_ROLE_GROUP_OPEN, XML_ROLE_GROUP_SEQUENCE, XML_ROLE_IMPLIED_ATTRIBUTE_VALUE, XML_ROLE_INSTANCE_START, XML_ROLE_NONE, XML_ROLE_NOTATION_NAME, XML_ROLE_NOTATION_NO_SYSTEM_ID, XML_ROLE_NOTATION_NONE, XML_ROLE_NOTATION_PUBLIC_ID, XML_ROLE_NOTATION_SYSTEM_ID, XML_ROLE_PARAM_ENTITY_NAME, XML_ROLE_PARAM_ENTITY_REF, XML_ROLE_PI, XML_ROLE_REQUIRED_ATTRIBUTE_VALUE, XML_ROLE_XML_DECL, XML_SUSPENDED, XML_T, XML_TOK_BOM, XML_TOK_INVALID, XML_TOK_NONE, XML_TOK_PARAM_ENTITY_REF, XML_TOK_PARTIAL, XML_TOK_PARTIAL_CHAR, XML_TOK_PROLOG_S, XML_TOK_XML_DECL, XML_TRUE, XmlIsPublicId, XmlPredefinedEntityName, XmlPrologTok, and XmlTokenRole.
Referenced by internalEntityProcessor(), processInternalEntity(), and prologProcessor().
|
static |
Definition at line 5757 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 5757 of file xmlparse.cc
References ELEMENT_TYPE::allocDefaultAtts, DTD::attributeIds, DTD::contentStringLen, copyEntityTable(), ELEMENT_TYPE::defaultAtts, DTD::defaultPrefix, DTD::elementTypes, XML_Memory_Handling_Suite::free_fcn, DTD::generalEntities, hashTableIterInit(), hashTableIterNext(), DTD::hasParamEntityRefs, DEFAULT_ATTRIBUTE::id, ELEMENT_TYPE::idAtt, DTD::in_eldecl, DEFAULT_ATTRIBUTE::isCdata, DTD::keepProcessing, lookup(), XML_Memory_Handling_Suite::malloc_fcn, attribute_id::maybeTokenized, prefix::name, attribute_id::name, ELEMENT_TYPE::name, ELEMENT_TYPE::nDefaultAtts, DTD::pool, poolAppendChar, poolCopyString(), attribute_id::prefix, ELEMENT_TYPE::prefix, DTD::prefixes, DTD::scaffIndex, DTD::scaffLevel, DTD::scaffold, DTD::scaffSize, DTD::standalone, DEFAULT_ATTRIBUTE::value, XML_T, and attribute_id::xmlns.
Referenced by XML_ExternalEntityParserCreate().
|
static |
Definition at line 5651 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 5651 of file xmlparse.cc
References DTD::attributeIds, prefix::binding, DTD::contentStringLen, DTD::defaultPrefix, DTD::elementTypes, DTD::entityValuePool, DTD::generalEntities, hashTableInit(), DTD::hasParamEntityRefs, DTD::in_eldecl, DTD::keepProcessing, XML_Memory_Handling_Suite::malloc_fcn, prefix::name, DTD::pool, poolInit(), DTD::prefixes, DTD::scaffCount, DTD::scaffIndex, DTD::scaffLevel, DTD::scaffold, DTD::scaffSize, DTD::standalone, XML_FALSE, and XML_TRUE.
Referenced by parserCreate().
|
static |
Definition at line 5726 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 5726 of file xmlparse.cc
References ELEMENT_TYPE::allocDefaultAtts, DTD::attributeIds, ELEMENT_TYPE::defaultAtts, e, DTD::elementTypes, DTD::entityValuePool, XML_Memory_Handling_Suite::free_fcn, DTD::generalEntities, hashTableDestroy(), hashTableIterInit(), hashTableIterNext(), DTD::pool, poolDestroy(), DTD::prefixes, DTD::scaffIndex, and DTD::scaffold.
Referenced by XML_ParserFree().
|
static |
Definition at line 5684 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 5684 of file xmlparse.cc
References ELEMENT_TYPE::allocDefaultAtts, DTD::attributeIds, prefix::binding, DTD::contentStringLen, ELEMENT_TYPE::defaultAtts, DTD::defaultPrefix, e, DTD::elementTypes, DTD::entityValuePool, XML_Memory_Handling_Suite::free_fcn, DTD::generalEntities, hashTableClear(), hashTableIterInit(), hashTableIterNext(), DTD::hasParamEntityRefs, DTD::in_eldecl, DTD::keepProcessing, prefix::name, DTD::pool, poolClear(), DTD::prefixes, DTD::scaffCount, DTD::scaffIndex, DTD::scaffLevel, DTD::scaffold, DTD::scaffSize, DTD::standalone, XML_FALSE, and XML_TRUE.
Referenced by XML_ParserReset().
|
static |
Definition at line 4734 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 4734 of file xmlparse.cc
References defaultHandler, epilogProcessor, eventEndPtr, eventPtr, processor, ps_finalBuffer, ps_parsing, reportComment(), reportDefault(), reportProcessingInstruction(), XML_ERROR_ABORTED, XML_ERROR_INVALID_TOKEN, XML_ERROR_JUNK_AFTER_DOC_ELEMENT, XML_ERROR_NO_MEMORY, XML_ERROR_NONE, XML_ERROR_PARTIAL_CHAR, XML_ERROR_UNCLOSED_TOKEN, XML_FINISHED, XML_SUSPENDED, XML_TOK_COMMENT, XML_TOK_INVALID, XML_TOK_NONE, XML_TOK_PARTIAL, XML_TOK_PARTIAL_CHAR, XML_TOK_PI, XML_TOK_PROLOG_S, and XmlPrologTok.
|
static |
Definition at line 4919 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 4919 of file xmlparse.cc
References errorCode.
|
static |
Definition at line 2222 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 2222 of file xmlparse.cc
References doContent(), ps_finalBuffer, storeRawNames(), XML_ERROR_NO_MEMORY, and XML_ERROR_NONE.
|
static |
Definition at line 2121 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 2121 of file xmlparse.cc
References externalEntityInitProcessor2, initializeEncoding(), processor, and XML_ERROR_NONE.
|
static |
Definition at line 2134 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 2134 of file xmlparse.cc
References eventPtr, externalEntityInitProcessor3, processor, ps_finalBuffer, start(), XML_ERROR_NONE, XML_ERROR_PARTIAL_CHAR, XML_ERROR_UNCLOSED_TOKEN, XML_TOK_BOM, XML_TOK_PARTIAL, XML_TOK_PARTIAL_CHAR, and XmlContentTok.
|
static |
Definition at line 2174 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 2174 of file xmlparse.cc
References eventEndPtr, eventPtr, externalEntityContentProcessor, processor, processXmlDecl(), ps_finalBuffer, ps_parsing, start(), tagLevel, XML_ERROR_ABORTED, XML_ERROR_NONE, XML_ERROR_PARTIAL_CHAR, XML_ERROR_UNCLOSED_TOKEN, XML_FINISHED, XML_SUSPENDED, XML_TOK_PARTIAL, XML_TOK_PARTIAL_CHAR, XML_TOK_XML_DECL, and XmlContentTok.
|
static |
Definition at line 700 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 700 of file xmlparse.cc
References seed, and Acts::VectorHelpers::time().
Referenced by startParsing().
|
static |
Definition at line 5436 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 5436 of file xmlparse.cc
References _dtd, ASCII_COLON, ASCII_l, ASCII_m, ASCII_n, ASCII_s, ASCII_x, DTD::attributeIds, DTD::defaultPrefix, lookup(), prefix::name, attribute_id::name, ns, DTD::pool, poolAppendChar, poolDiscard, poolFinish, poolStart, poolStoreString(), attribute_id::prefix, DTD::prefixes, XML_T, and XML_TRUE.
Referenced by doProlog(), and storeAtts().
|
static |
Definition at line 5499 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 5499 of file xmlparse.cc
References _dtd, ASCII_EQUALS, prefix::binding, CONTEXT_SEP, DTD::defaultPrefix, e, DTD::generalEntities, hashTableIterInit(), hashTableIterNext(), prefix::name, ENTITY::name, namespaceSeparator, ENTITY::open, poolAppendChar, DTD::prefixes, tempPool, binding::uri, binding::uriLen, XML_FALSE, XML_T, and XML_TRUE.
Referenced by doContent().
|
static |
Definition at line 6387 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 6387 of file xmlparse.cc
References _dtd, DTD::elementTypes, lookup(), ELEMENT_TYPE::name, DTD::pool, poolDiscard, poolFinish, poolStoreString(), and setElementTypePrefix().
Referenced by doProlog().
|
static |
Definition at line 3514 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 3514 of file xmlparse.cc
References XML_Encoding::data, if(), MALLOC, XML_Encoding::map, ns, unknownEncodingData, unknownEncodingHandler, unknownEncodingHandlerData, unknownEncodingMem, unknownEncodingRelease, XML_ERROR_NO_MEMORY, XML_ERROR_NONE, XML_ERROR_UNKNOWN_ENCODING, XmlInitUnknownEncoding(), XmlInitUnknownEncodingNS, and XmlSizeOfUnknownEncoding().
Referenced by initializeEncoding(), and processXmlDecl().
|
static |
Definition at line 5967 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 5967 of file xmlparse.cc
References CHAR_HASH, Acts::UnitConstants::h, and hash_secret_salt.
Referenced by G4ITReaction::GetHash(), lookup(), and PHG4Utils::md5sum().
|
static |
Definition at line 6055 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 6055 of file xmlparse.cc
References XML_Memory_Handling_Suite::free_fcn, HASH_TABLE::mem, HASH_TABLE::size, HASH_TABLE::used, and HASH_TABLE::v.
Referenced by dtdReset().
|
static |
Definition at line 6066 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 6066 of file xmlparse.cc
References XML_Memory_Handling_Suite::free_fcn, HASH_TABLE::mem, HASH_TABLE::size, and HASH_TABLE::v.
Referenced by dtdDestroy().
|
static |
Definition at line 6075 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 6075 of file xmlparse.cc
References HASH_TABLE::mem, ms, HASH_TABLE::power, HASH_TABLE::size, HASH_TABLE::used, and HASH_TABLE::v.
Referenced by dtdCreate().
|
static |
Definition at line 6085 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 6085 of file xmlparse.cc
References HASH_TABLE_ITER::end, HASH_TABLE_ITER::p, HASH_TABLE::size, and HASH_TABLE::v.
Referenced by copyEntityTable(), dtdCopy(), dtdDestroy(), dtdReset(), and getContext().
|
static |
Definition at line 6092 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 6092 of file xmlparse.cc
References HASH_TABLE_ITER::end, and HASH_TABLE_ITER::p.
Referenced by copyEntityTable(), dtdCopy(), dtdDestroy(), dtdReset(), and getContext().
|
static |
Definition at line 3396 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 3396 of file xmlparse.cc
References encoding, handleUnknownEncoding(), initEncoding, ns, protocolEncodingName, XML_ERROR_NONE, XmlInitEncoding(), and XmlInitEncodingNS.
Referenced by externalEntityInitProcessor(), and prologInitProcessor().
|
static |
Definition at line 4858 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 4858 of file xmlparse.cc
References contentProcessor, doContent(), doProlog(), open_internal_entity::entity, freeInternalEntities, int(), internalEncoding, ENTITY::is_param, open_internal_entity::next, ENTITY::open, openInternalEntities, parentParser, ENTITY::processed, processor, prologProcessor, ps_finalBuffer, ps_parsing, open_internal_entity::startTagLevel, ENTITY::textLen, ENTITY::textPtr, XML_ERROR_NONE, XML_ERROR_UNEXPECTED_STATE, XML_FALSE, XML_SUSPENDED, and XmlPrologTok.
Definition at line 5958 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 5958 of file xmlparse.cc
References XML_FALSE, and XML_TRUE.
Referenced by lookup().
|
static |
Definition at line 5976 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 5976 of file xmlparse.cc
References XML_Memory_Handling_Suite::free_fcn, Acts::UnitConstants::h, hash(), if(), INIT_POWER, keyeq(), XML_Memory_Handling_Suite::malloc_fcn, mask, HASH_TABLE::mem, NAMED::name, HASH_TABLE::power, PROBE_STEP, HASH_TABLE::size, Acts::Test::step(), HASH_TABLE::used, HASH_TABLE::v, and while().
Referenced by appendAttributeValue(), copyEntityTable(), doContent(), doProlog(), dtdCopy(), getAttributeId(), getElementType(), setContext(), setElementTypePrefix(), storeAtts(), and storeEntityValue().
|
static |
Definition at line 920 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 920 of file xmlparse.cc
References b, freeBindingList, and binding::nextTagBinding.
Referenced by XML_ParserReset().
|
static |
Definition at line 6280 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 6280 of file xmlparse.cc
References _dtd, CONTENT_SCAFFOLD::childcnt, CONTENT_SCAFFOLD::firstchild, groupSize, INIT_SCAFFOLD_ELEMENTS, CONTENT_SCAFFOLD::lastchild, MALLOC, CONTENT_SCAFFOLD::nextsib, REALLOC, DTD::scaffCount, DTD::scaffIndex, DTD::scaffLevel, DTD::scaffold, and DTD::scaffSize.
Referenced by doProlog().
Definition at line 5260 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 5260 of file xmlparse.cc
References XML_T.
Referenced by reportComment(), and reportProcessingInstruction().
Definition at line 5629 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 5629 of file xmlparse.cc
References XML_T.
Referenced by doProlog().
|
static |
Definition at line 731 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 731 of file xmlparse.cc
References _dtd, ASCII_EXCL, attInfo, attsSize, bufferLim, dataBuf, dataBufEnd, dtdCreate(), FREE, XML_Memory_Handling_Suite::free_fcn, freeBindingList, freeInternalEntities, freeTagList, groupConnector, groupSize, INIT_ATTS_SIZE, INIT_DATA_BUF_SIZE, internalEncoding, XML_ParserStruct::m_mem, MALLOC, XML_Memory_Handling_Suite::malloc_fcn, namespaceSeparator, ns, ns_triplets, nsAtts, nsAttsPower, nsAttsVersion, parser(), parserInit(), poolInit(), protocolEncodingName, XML_Memory_Handling_Suite::realloc_fcn, temp2Pool, tempPool, unknownEncodingHandler, unknownEncodingHandlerData, XML_FALSE, XML_ParserFree(), XML_TRUE, XmlGetInternalEncoding, and XmlGetInternalEncodingNS.
Referenced by XML_ExternalEntityParserCreate(), and XML_ParserCreate_MM().
|
static |
Definition at line 846 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 846 of file xmlparse.cc
References attlistDeclHandler, buffer, bufferEnd, bufferPtr, characterDataHandler, commentHandler, curBase, declAttributeId, declAttributeIsCdata, declAttributeIsId, declAttributeType, declElementType, declEntity, declNotationName, declNotationPublicId, defaultExpandInternalEntities, defaultHandler, doctypePubid, doctypeSysid, elementDeclHandler, endCdataSectionHandler, endDoctypeDeclHandler, endElementHandler, endNamespaceDeclHandler, entityDeclHandler, errorCode, eventEndPtr, eventPtr, externalEntityRefHandler, externalEntityRefHandlerArg, handlerArg, hash_secret_salt, inheritedBindings, initEncoding, notationDeclHandler, notStandaloneHandler, nSpecifiedAtts, openInternalEntities, parentParser, parseEndByteIndex, parseEndPtr, parser(), poolCopyString(), positionPtr, processingInstructionHandler, processor, prologInitProcessor, prologState, protocolEncodingName, ps_parsing, skippedEntityHandler, startCdataSectionHandler, startDoctypeDeclHandler, startElementHandler, startNamespaceDeclHandler, tagLevel, tagStack, tempPool, unknownEncodingData, unknownEncodingMem, unknownEncodingRelease, unparsedEntityDeclHandler, userData, XML_ERROR_NONE, XML_FALSE, XML_INITIALIZED, XML_PARAM_ENTITY_PARSING_NEVER, XML_TRUE, xmlDeclHandler, XmlInitEncoding(), and XmlPrologStateInit().
Referenced by parserCreate(), and XML_ParserReset().
|
static |
Definition at line 6151 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 6151 of file xmlparse.cc
References STRING_POOL::end, poolGrow(), STRING_POOL::ptr, STRING_POOL::start, and XmlConvert.
Referenced by appendAttributeValue(), doProlog(), poolStoreString(), and storeEntityValue().
|
static |
Definition at line 6193 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 6193 of file xmlparse.cc
References poolAppendChar, and STRING_POOL::start.
Referenced by doProlog().
|
static |
Definition at line 6114 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 6114 of file xmlparse.cc
References STRING_POOL::blocks, STRING_POOL::end, STRING_POOL::freeBlocks, block::next, STRING_POOL::ptr, and STRING_POOL::start.
Referenced by doContent(), doProlog(), dtdReset(), processXmlDecl(), reportComment(), reportProcessingInstruction(), and XML_ParserReset().
|
static |
Definition at line 6167 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 6167 of file xmlparse.cc
References poolAppendChar, poolFinish, and STRING_POOL::start.
Referenced by copyEntityTable(), dtdCopy(), parserInit(), setContext(), storeAtts(), XML_SetBase(), and XML_SetEncoding().
|
static |
Definition at line 6179 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 6179 of file xmlparse.cc
References n, poolAppendChar, poolFinish, poolGrow(), STRING_POOL::ptr, and STRING_POOL::start.
Referenced by copyEntityTable().
|
static |
Definition at line 6134 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 6134 of file xmlparse.cc
References STRING_POOL::blocks, XML_Memory_Handling_Suite::free_fcn, STRING_POOL::freeBlocks, STRING_POOL::mem, and block::next.
Referenced by dtdDestroy(), and XML_ParserFree().
|
static |
Definition at line 6216 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 6216 of file xmlparse.cc
References STRING_POOL::blocks, STRING_POOL::end, STRING_POOL::freeBlocks, INIT_BLOCK_SIZE, int(), XML_Memory_Handling_Suite::malloc_fcn, STRING_POOL::mem, block::next, STRING_POOL::ptr, XML_Memory_Handling_Suite::realloc_fcn, block::s, block::size, STRING_POOL::start, XML_FALSE, and XML_TRUE.
Referenced by poolAppend(), poolCopyStringN(), poolStoreString(), and storeEntityValue().
|
static |
Definition at line 6103 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 6103 of file xmlparse.cc
References STRING_POOL::blocks, STRING_POOL::end, STRING_POOL::freeBlocks, STRING_POOL::mem, ms, STRING_POOL::ptr, and STRING_POOL::start.
Referenced by dtdCreate(), and parserCreate().
|
static |
Definition at line 6204 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 6204 of file xmlparse.cc
References STRING_POOL::end, poolAppend(), poolGrow(), STRING_POOL::ptr, and STRING_POOL::start.
Referenced by appendAttributeValue(), doContent(), doProlog(), getAttributeId(), getElementType(), processXmlDecl(), reportComment(), reportProcessingInstruction(), storeAtts(), and storeEntityValue().
|
static |
Definition at line 4801 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 4801 of file xmlparse.cc
References open_internal_entity::betweenDecl, doContent(), doProlog(), open_internal_entity::entity, freeInternalEntities, int(), internalEncoding, internalEntityProcessor, open_internal_entity::internalEventEndPtr, open_internal_entity::internalEventPtr, ENTITY::is_param, MALLOC, open_internal_entity::next, ENTITY::open, openInternalEntities, ENTITY::processed, processor, ps_parsing, open_internal_entity::startTagLevel, tagLevel, ENTITY::textLen, ENTITY::textPtr, XML_ERROR_NO_MEMORY, XML_ERROR_NONE, XML_FALSE, XML_SUSPENDED, XML_TRUE, and XmlPrologTok.
Referenced by doContent(), and doProlog().
enum XML_Error PTRCALL Processor | ( | XML_Parser | parser, |
const char * | start, | ||
const char * | end, | ||
const char ** | endPtr | ||
) |
|
static |
Definition at line 3425 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 3425 of file xmlparse.cc
References _dtd, defaultHandler, eventPtr, handlerArg, handleUnknownEncoding(), encoding::minBytesPerChar, ns, poolClear(), poolFinish, poolStoreString(), protocolEncodingName, reportDefault(), temp2Pool, XML_ERROR_INCORRECT_ENCODING, XML_ERROR_NO_MEMORY, XML_ERROR_NONE, XML_ERROR_TEXT_DECL, XML_ERROR_UNKNOWN_ENCODING, XML_ERROR_XML_DECL, XML_PARAM_ENTITY_PARSING_NEVER, XML_PARAM_ENTITY_PARSING_UNLESS_STANDALONE, XML_TRUE, xmlDeclHandler, XmlNameLength, XmlParseXmlDecl(), and XmlParseXmlDeclNS.
Referenced by doProlog(), and externalEntityInitProcessor3().
|
static |
Definition at line 3553 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 3553 of file xmlparse.cc
References initializeEncoding(), processor, prologProcessor, and XML_ERROR_NONE.
|
static |
Definition at line 3738 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 3738 of file xmlparse.cc
References doProlog(), ps_finalBuffer, and XmlPrologTok.
|
static |
Definition at line 5312 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 5312 of file xmlparse.cc
References commentHandler, defaultHandler, handlerArg, encoding::minBytesPerChar, normalizeLines(), poolClear(), poolStoreString(), reportDefault(), and tempPool.
Referenced by doContent(), doProlog(), and epilogProcessor().
|
static |
Definition at line 5334 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 5334 of file xmlparse.cc
References dataBuf, dataBufEnd, defaultHandler, eventEndPtr, eventPtr, handlerArg, MUST_CONVERT, openInternalEntities, and XmlConvert.
Referenced by doCdataSection(), doContent(), doProlog(), epilogProcessor(), processXmlDecl(), reportComment(), reportProcessingInstruction(), and XML_DefaultCurrent().
|
static |
Definition at line 5283 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 5283 of file xmlparse.cc
References defaultHandler, handlerArg, encoding::minBytesPerChar, normalizeLines(), poolClear(), poolFinish, poolStoreString(), processingInstructionHandler, reportDefault(), tempPool, XmlNameLength, and XmlSkipS.
Referenced by doContent(), doProlog(), and epilogProcessor().
|
static |
Definition at line 5568 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 5568 of file xmlparse.cc
References _dtd, addBinding(), ASCII_EQUALS, CONTEXT_SEP, DTD::defaultPrefix, e, DTD::generalEntities, inheritedBindings, lookup(), prefix::name, ENTITY::open, DTD::pool, poolAppendChar, poolCopyString(), poolDiscard, poolLength, poolStart, DTD::prefixes, tempPool, XML_ERROR_NONE, XML_FALSE, XML_T, and XML_TRUE.
Referenced by startParsing(), and XML_ExternalEntityParserCreate().
|
static |
Definition at line 5406 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 5406 of file xmlparse.cc
References _dtd, ASCII_COLON, lookup(), prefix::name, ELEMENT_TYPE::name, DTD::pool, poolAppendChar, poolDiscard, poolFinish, poolStart, ELEMENT_TYPE::prefix, DTD::prefixes, and XML_T.
Referenced by getElementType(), and storeAtts().
|
static |
Definition at line 708 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 708 of file xmlparse.cc
References generate_hash_secret_salt(), hash_secret_salt, implicitContext, ns, setContext(), and XML_TRUE.
Referenced by XML_Parse(), and XML_ParseBuffer().
|
static |
Definition at line 4928 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 4928 of file xmlparse.cc
References appendAttributeValue(), poolAppendChar, poolChop, poolLastChar, poolLength, XML_ERROR_NO_MEMORY, XML_ERROR_NONE, and XML_T.
Referenced by doProlog(), and storeAtts().
|
static |
Definition at line 2704 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 2704 of file xmlparse.cc
References _dtd, addBinding(), ASCII_COLON, binding::attId, attInfo, DTD::attributeIds, atts, attsSize, b, prefix::binding, c, CHAR_HASH, ELEMENT_TYPE::defaultAtts, DTD::defaultPrefix, DTD::elementTypes, eventPtr, EXPAND_SPARE, FREE, getAttributeId(), hash_secret_salt, DEFAULT_ATTRIBUTE::id, ELEMENT_TYPE::idAtt, idAttIndex, if(), INIT_ATTS_SIZE, INIT_ATTS_VERSION, int(), DEFAULT_ATTRIBUTE::isCdata, TAG_NAME::localPart, lookup(), MALLOC, mask, attribute_id::maybeTokenized, n, ATTRIBUTE::name, prefix::name, tag::name, attribute_id::name, namespaceSeparator, ELEMENT_TYPE::nDefaultAtts, binding::nextTagBinding, ns, ns_triplets, nsAtts, nsAttsPower, nsAttsVersion, nSpecifiedAtts, tag::parent, parseEndByteIndex, parseEndPtr, DTD::pool, poolAppendChar, poolCopyString(), poolFinish, poolStart, poolStoreString(), binding::prefix, TAG_NAME::prefix, attribute_id::prefix, ELEMENT_TYPE::prefix, TAG_NAME::prefixLen, PROBE_STEP, REALLOC, s1, setElementTypePrefix(), Acts::Test::step(), storeAttributeValue(), TAG_NAME::str, tagStack, temp2, tempPool, binding::uri, binding::uriAlloc, binding::uriLen, TAG_NAME::uriLen, DEFAULT_ATTRIBUTE::value, ATTRIBUTE::valueEnd, ATTRIBUTE::valuePtr, XML_ERROR_DUPLICATE_ATTRIBUTE, XML_ERROR_NO_MEMORY, XML_ERROR_NONE, XML_ERROR_UNBOUND_PREFIX, XML_T, XML_TRUE, XmlGetAttributes, XmlNameLength, and attribute_id::xmlns.
Referenced by doContent().
|
static |
Definition at line 5094 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 5094 of file xmlparse.cc
References _dtd, ENTITY::base, STRING_POOL::blocks, STRING_POOL::end, DTD::entityValuePool, eventPtr, externalEntityRefHandler, externalEntityRefHandlerArg, internalEncoding, DTD::keepProcessing, lookup(), encoding::minBytesPerChar, n, ENTITY::open, poolAppend(), poolDiscard, poolGrow(), poolStoreString(), prologState, STRING_POOL::ptr, ENTITY::publicId, DTD::standalone, ENTITY::systemId, tempPool, ENTITY::textLen, ENTITY::textPtr, XML_ENCODE_MAX, XML_ERROR_BAD_CHAR_REF, XML_ERROR_EXTERNAL_ENTITY_HANDLING, XML_ERROR_INVALID_TOKEN, XML_ERROR_NO_MEMORY, XML_ERROR_NONE, XML_ERROR_PARAM_ENTITY_REF, XML_ERROR_RECURSIVE_ENTITY_REF, XML_ERROR_UNEXPECTED_STATE, XML_FALSE, XML_TOK_CHAR_REF, XML_TOK_DATA_CHARS, XML_TOK_DATA_NEWLINE, XML_TOK_ENTITY_REF, XML_TOK_INVALID, XML_TOK_NONE, XML_TOK_PARAM_ENTITY_REF, XML_TOK_PARTIAL, XML_TOK_TRAILING_CR, XML_TRUE, XmlCharRefNumber, XmlEncode, and XmlEntityValueTok.
Referenced by doProlog().
|
static |
Definition at line 2061 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 2061 of file xmlparse.cc
References tag::buf, tag::bufEnd, TAG_NAME::localPart, tag::name, tag::parent, tag::rawName, tag::rawNameLength, REALLOC, ROUND_UP, TAG_NAME::str, TAG_NAME::strLen, tagStack, XML_FALSE, and XML_TRUE.
Referenced by contentProcessor(), and externalEntityContentProcessor().
void XMLCALL XML_DefaultCurrent | ( | XML_Parser | parser | ) |
Definition at line 1920 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 1920 of file xmlparse.cc
References defaultHandler, eventEndPtr, eventPtr, internalEncoding, openInternalEntities, and reportDefault().
Definition at line 1934 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 1934 of file xmlparse.cc
References message(), and XML_L.
Referenced by xDataXML_endXMLParsing().
Definition at line 1985 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 1985 of file xmlparse.cc
References V2, XML_MAJOR_VERSION, XML_MICRO_VERSION, and XML_MINOR_VERSION.
XML_Expat_Version XMLCALL XML_ExpatVersionInfo | ( | void | ) |
Definition at line 2005 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 2005 of file xmlparse.cc
References XML_Expat_Version::major, XML_Expat_Version::micro, XML_Expat_Version::minor, XML_MAJOR_VERSION, XML_MICRO_VERSION, and XML_MINOR_VERSION.
XML_Parser XMLCALL XML_ExternalEntityParserCreate | ( | XML_Parser | oldParser, |
const XML_Char * | context, | ||
const XML_Char * | encodingName | ||
) |
Definition at line 986 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 986 of file xmlparse.cc
References _dtd, attlistDeclHandler, characterDataHandler, commentHandler, declElementType, defaultExpandInternalEntities, defaultHandler, dtdCopy(), elementDeclHandler, endCdataSectionHandler, endElementHandler, endNamespaceDeclHandler, entityDeclHandler, externalEntityInitProcessor, externalEntityRefHandler, externalEntityRefHandlerArg, handlerArg, hash_secret_salt, XML_ParserStruct::m_mem, namespaceSeparator, notationDeclHandler, notStandaloneHandler, ns, ns_triplets, parentParser, parser(), parserCreate(), processingInstructionHandler, processor, prologState, setContext(), skippedEntityHandler, startCdataSectionHandler, startElementHandler, startNamespaceDeclHandler, tmp, unknownEncodingHandler, unparsedEntityDeclHandler, userData, XML_ParserFree(), XML_TRUE, and xmlDeclHandler.
void XMLCALL XML_FreeContentModel | ( | XML_Parser | parser, |
XML_Content * | model | ||
) |
Definition at line 1896 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 1896 of file xmlparse.cc
References FREE.
const XML_Char* XMLCALL XML_GetBase | ( | XML_Parser | parser | ) |
Definition at line 1253 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 1253 of file xmlparse.cc
References curBase.
void* XMLCALL XML_GetBuffer | ( | XML_Parser | parser, |
int | len | ||
) |
Definition at line 1685 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 1685 of file xmlparse.cc
References buffer, bufferEnd, bufferLim, bufferPtr, errorCode, eventEndPtr, eventPtr, FREE, INIT_BUFFER_SIZE, int(), MALLOC, offset, positionPtr, ps_parsing, XML_CONTEXT_BYTES, XML_ERROR_FINISHED, XML_ERROR_NO_MEMORY, XML_ERROR_SUSPENDED, XML_FINISHED, and XML_SUSPENDED.
Referenced by XML_Parse().
int XMLCALL XML_GetCurrentByteCount | ( | XML_Parser | parser | ) |
Definition at line 1855 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 1855 of file xmlparse.cc
References eventEndPtr, and eventPtr.
XML_Index XMLCALL XML_GetCurrentByteIndex | ( | XML_Parser | parser | ) |
Definition at line 1847 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 1847 of file xmlparse.cc
References eventPtr, parseEndByteIndex, and parseEndPtr.
XML_Size XMLCALL XML_GetCurrentColumnNumber | ( | XML_Parser | parser | ) |
Definition at line 1886 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 1886 of file xmlparse.cc
References position::columnNumber, eventPtr, positionPtr, and XmlUpdatePosition.
Referenced by xDataXML_endXMLParsing(), and xDataXML_parseGetCurrentPosition().
XML_Size XMLCALL XML_GetCurrentLineNumber | ( | XML_Parser | parser | ) |
Definition at line 1876 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 1876 of file xmlparse.cc
References eventPtr, position::lineNumber, positionPtr, and XmlUpdatePosition.
Referenced by xDataXML_endXMLParsing(), and xDataXML_parseGetCurrentPosition().
enum XML_Error XMLCALL XML_GetErrorCode | ( | XML_Parser | parser | ) |
Definition at line 1841 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 1841 of file xmlparse.cc
References errorCode.
Referenced by xDataXML_endXMLParsing().
const XML_Feature* XMLCALL XML_GetFeatureList | ( | void | ) |
Definition at line 2017 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 2017 of file xmlparse.cc
References XML_CONTEXT_BYTES, XML_FEATURE_ATTR_INFO, XML_FEATURE_CONTEXT_BYTES, XML_FEATURE_DTD, XML_FEATURE_END, XML_FEATURE_LARGE_SIZE, XML_FEATURE_MIN_SIZE, XML_FEATURE_NS, XML_FEATURE_SIZEOF_XML_CHAR, XML_FEATURE_SIZEOF_XML_LCHAR, XML_FEATURE_UNICODE, XML_FEATURE_UNICODE_WCHAR_T, and XML_L.
int XMLCALL XML_GetIdAttributeIndex | ( | XML_Parser | parser | ) |
Definition at line 1265 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 1265 of file xmlparse.cc
References idAttIndex.
const char* XMLCALL XML_GetInputContext | ( | XML_Parser | parser, |
int * | offset, | ||
int * | size | ||
) |
Definition at line 1863 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 1863 of file xmlparse.cc
References buffer, bufferEnd, eventPtr, and int().
void XMLCALL XML_GetParsingStatus | ( | XML_Parser | parser, |
XML_ParsingStatus * | status | ||
) |
Definition at line 1834 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 1834 of file xmlparse.cc
References XML_ParserStruct::m_parsingStatus.
int XMLCALL XML_GetSpecifiedAttributeCount | ( | XML_Parser | parser | ) |
Definition at line 1259 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 1259 of file xmlparse.cc
References nSpecifiedAtts.
void XMLCALL XML_MemFree | ( | XML_Parser | parser, |
void * | ptr | ||
) |
Definition at line 1914 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 1914 of file xmlparse.cc
References FREE.
void* XMLCALL XML_MemMalloc | ( | XML_Parser | parser, |
size_t | size | ||
) |
Definition at line 1902 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 1902 of file xmlparse.cc
References MALLOC.
void* XMLCALL XML_MemRealloc | ( | XML_Parser | parser, |
void * | ptr, | ||
size_t | size | ||
) |
Definition at line 1908 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 1908 of file xmlparse.cc
References REALLOC.
enum XML_Status XMLCALL XML_Parse | ( | XML_Parser | parser, |
const char * | s, | ||
int | len, | ||
int | isFinal | ||
) |
Definition at line 1506 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 1506 of file xmlparse.cc
References buffer, bufferEnd, bufferLim, bufferPtr, errorCode, errorProcessor, eventEndPtr, eventPtr, MALLOC, parentParser, parseEndByteIndex, parseEndPtr, positionPtr, processor, ps_finalBuffer, ps_parsing, REALLOC, startParsing(), XML_ERROR_FINISHED, XML_ERROR_NO_MEMORY, XML_ERROR_NONE, XML_ERROR_SUSPENDED, XML_FINISHED, XML_GetBuffer(), XML_INITIALIZED, XML_ParseBuffer(), XML_PARSING, XML_STATUS_ERROR, XML_STATUS_OK, XML_STATUS_SUSPENDED, XML_SUSPENDED, and XmlUpdatePosition.
Referenced by xDataXML_endXMLParsing(), and xDataXML_parse().
enum XML_Status XMLCALL XML_ParseBuffer | ( | XML_Parser | parser, |
int | len, | ||
int | isFinal | ||
) |
Definition at line 1629 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 1629 of file xmlparse.cc
References bufferEnd, bufferPtr, errorCode, errorProcessor, eventEndPtr, eventPtr, parentParser, parseEndByteIndex, parseEndPtr, positionPtr, processor, ps_finalBuffer, ps_parsing, start(), startParsing(), XML_ERROR_FINISHED, XML_ERROR_NO_MEMORY, XML_ERROR_NONE, XML_ERROR_SUSPENDED, XML_FINISHED, XML_INITIALIZED, XML_PARSING, XML_STATUS_ERROR, XML_STATUS_OK, XML_STATUS_SUSPENDED, XML_SUSPENDED, and XmlUpdatePosition.
Referenced by XML_Parse().
XML_Parser XMLCALL XML_ParserCreate | ( | const XML_Char * | encodingName | ) |
Definition at line 677 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 677 of file xmlparse.cc
References XML_ParserCreate_MM().
Referenced by xDataXML_initializeDoc().
XML_Parser XMLCALL XML_ParserCreate_MM | ( | const XML_Char * | encodingName, |
const XML_Memory_Handling_Suite * | memsuite, | ||
const XML_Char * | nameSep | ||
) |
Definition at line 723 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 723 of file xmlparse.cc
References parserCreate().
Referenced by XML_ParserCreate(), and XML_ParserCreateNS().
XML_Parser XMLCALL XML_ParserCreateNS | ( | const XML_Char * | encodingName, |
XML_Char | nsSep | ||
) |
Definition at line 683 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 683 of file xmlparse.cc
References tmp, and XML_ParserCreate_MM().
void XMLCALL XML_ParserFree | ( | XML_Parser | parser | ) |
Definition at line 1136 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 1136 of file xmlparse.cc
References _dtd, attInfo, tag::bindings, tag::buf, dataBuf, destroyBindings(), dtdDestroy(), FREE, freeBindingList, freeInternalEntities, freeTagList, groupConnector, inheritedBindings, XML_ParserStruct::m_mem, open_internal_entity::next, nsAtts, openInternalEntities, tag::parent, parentParser, poolDestroy(), tagStack, temp2Pool, tempPool, unknownEncodingData, unknownEncodingMem, and unknownEncodingRelease.
Referenced by parserCreate(), xDataXML_endXMLParsing(), and XML_ExternalEntityParserCreate().
XML_Bool XMLCALL XML_ParserReset | ( | XML_Parser | parser, |
const XML_Char * | encodingName | ||
) |
Definition at line 931 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 931 of file xmlparse.cc
References _dtd, tag::bindings, dtdReset(), FREE, freeInternalEntities, freeTagList, inheritedBindings, XML_ParserStruct::m_mem, moveToFreeBindingList(), open_internal_entity::next, openInternalEntities, tag::parent, parentParser, parserInit(), poolClear(), tagStack, temp2Pool, tempPool, unknownEncodingData, unknownEncodingMem, unknownEncodingRelease, XML_FALSE, and XML_TRUE.
enum XML_Status XMLCALL XML_ResumeParser | ( | XML_Parser | parser | ) |
Definition at line 1796 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 1796 of file xmlparse.cc
References bufferPtr, errorCode, errorProcessor, eventEndPtr, eventPtr, parseEndPtr, positionPtr, processor, ps_finalBuffer, ps_parsing, XML_ERROR_NONE, XML_ERROR_NOT_SUSPENDED, XML_FINISHED, XML_INITIALIZED, XML_PARSING, XML_STATUS_ERROR, XML_STATUS_OK, XML_STATUS_SUSPENDED, XML_SUSPENDED, and XmlUpdatePosition.
void XMLCALL XML_SetAttlistDeclHandler | ( | XML_Parser | parser, |
XML_AttlistDeclHandler | attdecl | ||
) |
Definition at line 1460 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 1460 of file xmlparse.cc
References attlistDeclHandler.
enum XML_Status XMLCALL XML_SetBase | ( | XML_Parser | parser, |
const XML_Char * | p | ||
) |
Definition at line 1239 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 1239 of file xmlparse.cc
References _dtd, curBase, poolCopyString(), XML_STATUS_ERROR, and XML_STATUS_OK.
void XMLCALL XML_SetCdataSectionHandler | ( | XML_Parser | parser, |
XML_StartCdataSectionHandler | start, | ||
XML_EndCdataSectionHandler | end | ||
) |
Definition at line 1321 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 1321 of file xmlparse.cc
References endCdataSectionHandler, start(), and startCdataSectionHandler.
void XMLCALL XML_SetCharacterDataHandler | ( | XML_Parser | parser, |
XML_CharacterDataHandler | handler | ||
) |
Definition at line 1300 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 1300 of file xmlparse.cc
References characterDataHandler.
Referenced by xDataXML_initializeDoc().
void XMLCALL XML_SetCommentHandler | ( | XML_Parser | parser, |
XML_CommentHandler | handler | ||
) |
Definition at line 1314 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 1314 of file xmlparse.cc
References commentHandler.
void XMLCALL XML_SetDefaultHandler | ( | XML_Parser | parser, |
XML_DefaultHandler | handler | ||
) |
Definition at line 1342 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 1342 of file xmlparse.cc
References defaultExpandInternalEntities, defaultHandler, and XML_FALSE.
void XMLCALL XML_SetDefaultHandlerExpand | ( | XML_Parser | parser, |
XML_DefaultHandler | handler | ||
) |
Definition at line 1350 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 1350 of file xmlparse.cc
References defaultExpandInternalEntities, defaultHandler, and XML_TRUE.
void XMLCALL XML_SetDoctypeDeclHandler | ( | XML_Parser | parser, |
XML_StartDoctypeDeclHandler | start, | ||
XML_EndDoctypeDeclHandler | end | ||
) |
Definition at line 1358 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 1358 of file xmlparse.cc
References endDoctypeDeclHandler, start(), and startDoctypeDeclHandler.
void XMLCALL XML_SetElementDeclHandler | ( | XML_Parser | parser, |
XML_ElementDeclHandler | eldecl | ||
) |
Definition at line 1453 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 1453 of file xmlparse.cc
References elementDeclHandler.
void XMLCALL XML_SetElementHandler | ( | XML_Parser | parser, |
XML_StartElementHandler | start, | ||
XML_EndElementHandler | end | ||
) |
Definition at line 1279 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 1279 of file xmlparse.cc
References endElementHandler, start(), and startElementHandler.
Referenced by xDataXML_initializeDoc().
enum XML_Status XMLCALL XML_SetEncoding | ( | XML_Parser | parser, |
const XML_Char * | encodingName | ||
) |
Definition at line 967 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 967 of file xmlparse.cc
References poolCopyString(), protocolEncodingName, ps_parsing, tempPool, XML_PARSING, XML_STATUS_ERROR, XML_STATUS_OK, and XML_SUSPENDED.
void XMLCALL XML_SetEndCdataSectionHandler | ( | XML_Parser | parser, |
XML_EndCdataSectionHandler | end | ||
) |
Definition at line 1336 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 1336 of file xmlparse.cc
References endCdataSectionHandler.
void XMLCALL XML_SetEndDoctypeDeclHandler | ( | XML_Parser | parser, |
XML_EndDoctypeDeclHandler | end | ||
) |
Definition at line 1373 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 1373 of file xmlparse.cc
References endDoctypeDeclHandler.
void XMLCALL XML_SetEndElementHandler | ( | XML_Parser | parser, |
XML_EndElementHandler | end | ||
) |
Definition at line 1294 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 1294 of file xmlparse.cc
References endElementHandler.
void XMLCALL XML_SetEndNamespaceDeclHandler | ( | XML_Parser | parser, |
XML_EndNamespaceDeclHandler | end | ||
) |
Definition at line 1408 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 1408 of file xmlparse.cc
References endNamespaceDeclHandler.
void XMLCALL XML_SetEntityDeclHandler | ( | XML_Parser | parser, |
XML_EntityDeclHandler | handler | ||
) |
Definition at line 1467 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 1467 of file xmlparse.cc
References entityDeclHandler.
void XMLCALL XML_SetExternalEntityRefHandler | ( | XML_Parser | parser, |
XML_ExternalEntityRefHandler | handler | ||
) |
Definition at line 1421 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 1421 of file xmlparse.cc
References externalEntityRefHandler.
void XMLCALL XML_SetExternalEntityRefHandlerArg | ( | XML_Parser | parser, |
void * | arg | ||
) |
Definition at line 1428 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 1428 of file xmlparse.cc
References externalEntityRefHandlerArg, and parser().
int XMLCALL XML_SetHashSalt | ( | XML_Parser | parser, |
unsigned long | hash_salt | ||
) |
Definition at line 1495 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 1495 of file xmlparse.cc
References hash_secret_salt, ps_parsing, XML_PARSING, and XML_SUSPENDED.
void XMLCALL XML_SetNamespaceDeclHandler | ( | XML_Parser | parser, |
XML_StartNamespaceDeclHandler | start, | ||
XML_EndNamespaceDeclHandler | end | ||
) |
Definition at line 1393 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 1393 of file xmlparse.cc
References endNamespaceDeclHandler, start(), and startNamespaceDeclHandler.
void XMLCALL XML_SetNotationDeclHandler | ( | XML_Parser | parser, |
XML_NotationDeclHandler | handler | ||
) |
Definition at line 1386 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 1386 of file xmlparse.cc
References notationDeclHandler.
void XMLCALL XML_SetNotStandaloneHandler | ( | XML_Parser | parser, |
XML_NotStandaloneHandler | handler | ||
) |
Definition at line 1414 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 1414 of file xmlparse.cc
References notStandaloneHandler.
int XMLCALL XML_SetParamEntityParsing | ( | XML_Parser | parser, |
enum XML_ParamEntityParsing | peParsing | ||
) |
Definition at line 1480 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 1480 of file xmlparse.cc
References ps_parsing, XML_PARAM_ENTITY_PARSING_NEVER, XML_PARSING, and XML_SUSPENDED.
void XMLCALL XML_SetProcessingInstructionHandler | ( | XML_Parser | parser, |
XML_ProcessingInstructionHandler | handler | ||
) |
Definition at line 1307 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 1307 of file xmlparse.cc
References processingInstructionHandler.
void XMLCALL XML_SetReturnNSTriplet | ( | XML_Parser | parser, |
int | do_nst | ||
) |
Definition at line 1221 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 1221 of file xmlparse.cc
References ns_triplets, ps_parsing, XML_FALSE, XML_PARSING, XML_SUSPENDED, and XML_TRUE.
void XMLCALL XML_SetSkippedEntityHandler | ( | XML_Parser | parser, |
XML_SkippedEntityHandler | handler | ||
) |
Definition at line 1437 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 1437 of file xmlparse.cc
References skippedEntityHandler.
void XMLCALL XML_SetStartCdataSectionHandler | ( | XML_Parser | parser, |
XML_StartCdataSectionHandler | start | ||
) |
Definition at line 1330 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 1330 of file xmlparse.cc
References start(), and startCdataSectionHandler.
void XMLCALL XML_SetStartDoctypeDeclHandler | ( | XML_Parser | parser, |
XML_StartDoctypeDeclHandler | start | ||
) |
Definition at line 1367 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 1367 of file xmlparse.cc
References start(), and startDoctypeDeclHandler.
void XMLCALL XML_SetStartElementHandler | ( | XML_Parser | parser, |
XML_StartElementHandler | start | ||
) |
Definition at line 1288 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 1288 of file xmlparse.cc
References start(), and startElementHandler.
void XMLCALL XML_SetStartNamespaceDeclHandler | ( | XML_Parser | parser, |
XML_StartNamespaceDeclHandler | start | ||
) |
Definition at line 1402 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 1402 of file xmlparse.cc
References start(), and startNamespaceDeclHandler.
void XMLCALL XML_SetUnknownEncodingHandler | ( | XML_Parser | parser, |
XML_UnknownEncodingHandler | handler, | ||
void * | data | ||
) |
Definition at line 1444 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 1444 of file xmlparse.cc
References unknownEncodingHandler, and unknownEncodingHandlerData.
void XMLCALL XML_SetUnparsedEntityDeclHandler | ( | XML_Parser | parser, |
XML_UnparsedEntityDeclHandler | handler | ||
) |
Definition at line 1379 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 1379 of file xmlparse.cc
References unparsedEntityDeclHandler.
void XMLCALL XML_SetUserData | ( | XML_Parser | parser, |
void * | p | ||
) |
Definition at line 1230 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 1230 of file xmlparse.cc
References handlerArg, and userData.
Referenced by xDataXML_initializeDoc().
void XMLCALL XML_SetXmlDeclHandler | ( | XML_Parser | parser, |
XML_XmlDeclHandler | handler | ||
) |
Definition at line 1474 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 1474 of file xmlparse.cc
References xmlDeclHandler.
enum XML_Status XMLCALL XML_StopParser | ( | XML_Parser | parser, |
XML_Bool | resumable | ||
) |
Definition at line 1766 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 1766 of file xmlparse.cc
References errorCode, ps_parsing, XML_ERROR_FINISHED, XML_ERROR_SUSPEND_PE, XML_ERROR_SUSPENDED, XML_FINISHED, XML_STATUS_ERROR, XML_STATUS_OK, and XML_SUSPENDED.
enum XML_Error XMLCALL XML_UseForeignDTD | ( | XML_Parser | parser, |
XML_Bool | useDTD | ||
) |
Definition at line 1207 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 1207 of file xmlparse.cc
References ps_parsing, XML_ERROR_CANT_CHANGE_FEATURE_ONCE_PARSING, XML_ERROR_FEATURE_REQUIRES_XML_DTD, XML_ERROR_NONE, XML_PARSING, and XML_SUSPENDED.
void XMLCALL XML_UseParserAsHandlerArg | ( | XML_Parser | parser | ) |
Definition at line 1201 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 1201 of file xmlparse.cc
References handlerArg, and parser().
|
static |
Definition at line 314 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 314 of file xmlparse.cc
Referenced by doContent().
|
static |
Definition at line 313 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 313 of file xmlparse.cc
Referenced by cdataSectionProcessor(), doProlog(), and internalEntityProcessor().
|
static |
Definition at line 322 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 322 of file xmlparse.cc
Referenced by doContent(), and epilogProcessor().
|
static |
Definition at line 323 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 323 of file xmlparse.cc
Referenced by XML_Parse(), XML_ParseBuffer(), and XML_ResumeParser().
|
static |
Definition at line 327 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 327 of file xmlparse.cc
Referenced by cdataSectionProcessor(), and externalEntityInitProcessor3().
|
static |
Definition at line 324 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 324 of file xmlparse.cc
Referenced by XML_ExternalEntityParserCreate().
|
static |
Definition at line 325 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 325 of file xmlparse.cc
Referenced by externalEntityInitProcessor().
|
static |
Definition at line 326 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 326 of file xmlparse.cc
Referenced by externalEntityInitProcessor2().
|
static |
Definition at line 690 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 690 of file xmlparse.cc
Referenced by startParsing().
|
static |
Definition at line 328 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 328 of file xmlparse.cc
Referenced by processInternalEntity().
|
static |
Definition at line 312 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 312 of file xmlparse.cc
Referenced by parserInit().
|
static |
Definition at line 311 of file xmlparse.cc.
View newest version in sPHENIX GitHub at line 311 of file xmlparse.cc
Referenced by internalEntityProcessor(), and prologInitProcessor().