예제 #1
0
void
XTokenNumberAdapter::str(
            XPathExecutionContext&  /* executionContext */,
            XalanDOMString&         theBuffer) const
{
    theBuffer.append(m_value.str());
}
예제 #2
0
파일: XObject.hpp 프로젝트: apache/xalan-c
 /**
  * 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);
 }
예제 #3
0
파일: XUnknown.cpp 프로젝트: apache/xalan-c
void
XUnknown::str(
            XPathExecutionContext&  /* executionContext */,
            XalanDOMString&         theBuffer) const
{
    theBuffer.append(m_value);
}
예제 #4
0
void
AVTPartSimple::evaluate(
            XalanDOMString&         buf,
            const PrefixResolver&   /* prefixResolver */,
            XPathExecutionContext&  /* executionContext */) const

{
    buf.append(m_val, m_len);
}
예제 #5
0
void
XTokenNumberAdapter::str(XalanDOMString&    theBuffer) const
{
    theBuffer.append(m_value.str());
}
예제 #6
0
파일: XUnknown.cpp 프로젝트: apache/xalan-c
void
XUnknown::str(XalanDOMString&   theBuffer) const
{
    theBuffer.append(m_value);
}