void XTokenNumberAdapter::str( XPathExecutionContext& /* executionContext */, XalanDOMString& theBuffer) const { theBuffer.append(m_value.str()); }
/** * Static conversion function. Appends the supplied boolean * value to a string. * * @param theBool The boolean value to convert. * @param theString The string value of the provided boolean value. */ static void string( bool theBool, XalanDOMString& theString) { theString.append(theBool == true ? s_trueString : s_falseString); }
void XUnknown::str( XPathExecutionContext& /* executionContext */, XalanDOMString& theBuffer) const { theBuffer.append(m_value); }
void AVTPartSimple::evaluate( XalanDOMString& buf, const PrefixResolver& /* prefixResolver */, XPathExecutionContext& /* executionContext */) const { buf.append(m_val, m_len); }
void XTokenNumberAdapter::str(XalanDOMString& theBuffer) const { theBuffer.append(m_value.str()); }
void XUnknown::str(XalanDOMString& theBuffer) const { theBuffer.append(m_value); }