Lines Matching defs:pcszPath

564     /** Finds the first decendant matching the name at the end of @a pcszPath and
568 * @param pcszPath The attribute name. Slashes can be used to make a
575 const ElementNode *findChildElementP(const char *pcszPath, const char *pcszNamespace = NULL) const;
581 * @param pcszPath The attribute name. Slashes can be used to make a
588 const char *findChildElementValueP(const char *pcszPath, const char *pcszNamespace = NULL) const
590 const ElementNode *pElem = findChildElementP(pcszPath, pcszNamespace);
600 * @param pcszPath The attribute name. Slashes can be used to make a
603 * @param pcszPathNamespace The namespace to match @pcszPath with, NULL
610 const char *findChildElementAttributeValueP(const char *pcszPath, const char *pcszAttribute,
614 const ElementNode *pElem = findChildElementP(pcszPath, pcszPathNamespace);
750 bool getChildElementValueP(const char *pcszPath, int32_t *piValue, const char *pcszNamespace = NULL) const
752 const ElementNode *pElem = findChildElementP(pcszPath, pcszNamespace);
755 bool getChildElementValueP(const char *pcszPath, uint32_t *puValue, const char *pcszNamespace = NULL) const
757 const ElementNode *pElem = findChildElementP(pcszPath, pcszNamespace);
760 bool getChildElementValueP(const char *pcszPath, int64_t *piValue, const char *pcszNamespace = NULL) const
762 const ElementNode *pElem = findChildElementP(pcszPath, pcszNamespace);
765 bool getChildElementValueP(const char *pcszPath, uint64_t *puValue, const char *pcszNamespace = NULL) const
767 const ElementNode *pElem = findChildElementP(pcszPath, pcszNamespace);
770 bool getChildElementValueP(const char *pcszPath, bool *pfValue, const char *pcszNamespace = NULL) const
772 const ElementNode *pElem = findChildElementP(pcszPath, pcszNamespace);
783 bool getChildElementValueDefP(const char *pcszPath, int32_t iDefault, int32_t *piValue, const char *pcszNamespace = NULL) const
785 const ElementNode *pElem = findChildElementP(pcszPath, pcszNamespace);
791 bool getChildElementValueDefP(const char *pcszPath, uint32_t uDefault, uint32_t *puValue, const char *pcszNamespace = NULL) const
793 const ElementNode *pElem = findChildElementP(pcszPath, pcszNamespace);
799 bool getChildElementValueDefP(const char *pcszPath, int64_t iDefault, int64_t *piValue, const char *pcszNamespace = NULL) const
801 const ElementNode *pElem = findChildElementP(pcszPath, pcszNamespace);
807 bool getChildElementValueDefP(const char *pcszPath, uint64_t uDefault, uint64_t *puValue, const char *pcszNamespace = NULL) const
809 const ElementNode *pElem = findChildElementP(pcszPath, pcszNamespace);
815 bool getChildElementValueDefP(const char *pcszPath, bool fDefault, bool *pfValue, const char *pcszNamespace = NULL) const
817 const ElementNode *pElem = findChildElementP(pcszPath, pcszNamespace);