HomeSort by relevance Sort by last modified time
    Searched defs:wsContentType (Results 1 - 7 of 7) sorted by null

  /external/pdfium/xfa/src/fxfa/src/parser/
xfa_document_serialize.cpp 241 CFX_WideString wsContentType;
242 pNode->GetAttribute(XFA_ATTRIBUTE_ContentType, wsContentType, FALSE);
244 wsContentType.Equal(FX_WSTRC(L"text/html"))) {
266 wsContentType.Equal(FX_WSTRC(L"text/xml"))) {
xfa_document_datamerger_imp.cpp 74 CFX_WideString wsContentType;
75 pChildNode->GetAttribute(XFA_ATTRIBUTE_ContentType, wsContentType,
77 if (wsContentType.Equal(FX_WSTRC(L"text/html"))) {
79 } else if (wsContentType.Equal(FX_WSTRC(L"text/xml"))) {
119 CFX_WideString wsContentType;
123 image.GetContentType(wsContentType);
131 pDataNode->SetCData(XFA_ATTRIBUTE_ContentType, wsContentType);
270 CFX_WideString wsContentType;
272 pXMLDataElement->GetString(L"xfa:contentType", wsContentType);
273 if (!wsContentType.IsEmpty()) {
    [all...]
xfa_parser_imp.cpp     [all...]
xfa_object_imp.cpp     [all...]
xfa_objectacc_imp.cpp 880 void CXFA_ExData::GetContentType(CFX_WideStringC& wsContentType) {
881 m_pNode->TryCData(XFA_ATTRIBUTE_ContentType, wsContentType);
898 FX_BOOL CXFA_ExData::SetContentType(const CFX_WideString& wsContentType) {
899 return m_pNode->SetCData(XFA_ATTRIBUTE_ContentType, wsContentType);
    [all...]
  /external/pdfium/xfa/src/fxfa/src/app/
xfa_ffwidgetacc.cpp 221 CFX_WideString wsContentType, wsHref;
224 image.GetContentType(wsContentType);
227 SetImageEdit(wsContentType, wsHref, wsValue);
268 void CXFA_WidgetAcc::SetImageEdit(const CFX_WideStringC& wsContentType,
273 image.SetContentType(wsContentType);
284 pBind->SetCData(XFA_ATTRIBUTE_ContentType, wsContentType);
    [all...]
xfa_ffwidget.cpp 940 CFX_WideString wsContentType(wsType);
941 wsContentType.MakeLower();
942 if (wsContentType == FX_WSTRC(L"image/jpg")) {
945 if (wsContentType == FX_WSTRC(L"image/png")) {
948 if (wsContentType == FX_WSTRC(L"image/gif")) {
951 if (wsContentType == FX_WSTRC(L"image/bmp")) {
954 if (wsContentType == FX_WSTRC(L"image/tif")) {
971 CFX_WideString wsContentType;
972 pImage->GetContentType(wsContentType);
973 FXCODEC_IMAGE_TYPE type = XFA_GetImageType(wsContentType);
    [all...]

Completed in 179 milliseconds