Home
last modified time | relevance | path

Searched refs:FromASCII (Results 1 – 20 of 20) sorted by relevance

/external/pdfium/xfa/fxfa/fm2js/
Dcxfa_fmlexer.cpp123 WideString str = WideString::FromASCII("type = "); in ToDebugString()
124 str += WideString::FromASCII(tokenStrings[m_type]); in ToDebugString()
125 str += WideString::FromASCII(", string = "); in ToDebugString()
/external/pdfium/fxjs/xfa/
Dcjx_object.cpp182 ThrowException(WideString::FromASCII("The element [") + obj + in ThrowTooManyOccurancesException()
183 WideString::FromASCII( in ThrowTooManyOccurancesException()
188 ThrowException(WideString::FromASCII("Invalid property set operation.")); in ThrowInvalidPropertyException()
192 ThrowException(WideString::FromASCII("Index value is out of bounds.")); in ThrowIndexOutOfBoundsException()
198 WideString::FromASCII("Incorrect number of parameters calling method '") + in ThrowParamCountMismatchException()
199 method + WideString::FromASCII("'.")); in ThrowParamCountMismatchException()
203 ThrowException(WideString::FromASCII( in ThrowArgumentMismatchException()
280 return WideString::FromASCII(XFA_AttributeValueToName(*value)); in TryAttribute()
337 elem->SetAttribute(WideString::FromASCII(XFA_AttributeToName(eAttr)), in SetBoolean()
349 elem->SetAttribute(WideString::FromASCII(XFA_AttributeToName(eAttr)), in SetInteger()
[all …]
Dcjx_hostpseudomodel.cpp132 ThrowException(WideString::FromASCII("Unable to set language value.")); in language()
148 ThrowException(WideString::FromASCII("Unable to set numPages value.")); in numPages()
162 ThrowException(WideString::FromASCII("Unable to set platform value.")); in platform()
214 ThrowException(WideString::FromASCII("Unable to set variation value.")); in variation()
224 ThrowException(WideString::FromASCII("Unable to set version value.")); in version()
Dcjx_layoutpseudomodel.cpp72 ThrowException(WideString::FromASCII("Unable to set ready value.")); in ready()
92 WideString unit = WideString::FromASCII("pt"); in HWXY()
Dcjx_tree.cpp123 L"#" + WideString::FromASCII(GetXFAObject()->GetClassName()) + L"[*]"; in classAll()
Dcfxjse_formcalc_context.cpp863 *wsHTMLReserve = WideString::FromASCII(result->m_htmlReserve); in HTMLCode2STR()
5480 wsName = L"#" + WideString::FromASCII(pNode->GetClassName()); in ResolveObjects()
5852 WideString::FromASCII(" doesn't have a default property.")); in ThrowNoDefaultPropertyException()
5856 ThrowException(WideString::FromASCII("Compiler error.")); in ThrowCompilerErrorException()
5860 ThrowException(WideString::FromASCII("Divide by zero.")); in ThrowDivideByZeroException()
5864 ThrowException(WideString::FromASCII("Server does not permit operation.")); in ThrowServerDeniedException()
5871 WideString::FromASCII("An attempt was made to reference property '") + in ThrowPropertyNotInObjectException()
5872 name + WideString::FromASCII("' of a non-object in SOM expression ") + in ThrowPropertyNotInObjectException()
5879 WideString::FromASCII("Incorrect number of parameters calling method '") + in ThrowParamCountMismatchException()
5884 ThrowException(WideString::FromASCII( in ThrowArgumentMismatchException()
Dcjx_node.cpp302 WideString::FromASCII(GetXFANode()->GetClassName())); in loadXML()
/external/pdfium/xfa/fxfa/parser/
Dxfa_utils.cpp169 SaveAttribute(pNode, attr, WideString::FromASCII(XFA_AttributeToName(attr)), in RegenerateFormFile_Changed()
287 WideString wsElement = WideString::FromASCII(pNode->GetClassName()); in RegenerateFormFile_Changed()
320 WideString wsElement = WideString::FromASCII(pNode->GetClassName()); in RegenerateFormFile_Container()
336 SaveAttribute(pNode, attr, WideString::FromASCII(XFA_AttributeToName(attr)), in RegenerateFormFile_Container()
Dcxfa_node.cpp749 ws = WideString::FromASCII(pNode->GetClassName()); in GetNameExpressionSinglePath()
/external/pdfium/xfa/fgas/font/
Dcfgas_defaultfontmanager.cpp45 WideString::FromASCII(ByteStringView(pReplace, pNameText - pReplace)); in GetFont()
Dfgas_fontutils.cpp1881 return WideString::FromASCII(ByteStringView(pFontInfo->pPsName)); in FGAS_FontNameToEnglishName()
/external/pdfium/fxjs/
Djs_resources.cpp94 return WideString::FromASCII(msg_string); in JSGetStringFromID()
Dcjs_publicmethods.cpp592 return CJS_Result::Failure(WideString::FromASCII("No event handler")); in AFNumber_Format()
952 return CJS_Result::Failure(WideString::FromASCII( in AFDate_KeystrokeEx()
/external/pdfium/core/fpdfdoc/
Dcpdf_metadata.cpp24 element->GetAttribute(WideString::FromASCII("xmlns:adhocwf")); in CheckForSharedFormInternal()
/external/pdfium/xfa/fxfa/
Dcxfa_fffield.cpp688 WideString::FromASCII("You are not allowed to modify this field."), in CalculateNode()
689 WideString::FromASCII("Calculate Override"), in CalculateNode()
713 WideString::FromASCII("Are you sure you want to modify this field?"); in CalculateNode()
716 WideString::FromASCII("Calculate Override"), in CalculateNode()
Dcxfa_fftextedit.cpp234 wsText + WideString::FromASCII(" can not contain ") + wsSomField, in ValidateNumberField()
Dcxfa_textparser.cpp101 WideString ws = WideString::FromASCII(kStyle); in LoadDefaultSheetStyle()
/external/pdfium/core/fxcrt/
Dwidestring.h63 static WideString FromASCII(ByteStringView str) WARN_UNUSED_RESULT;
Dwidestring_unittest.cpp1184 TEST(WideString, FromASCII) { in TEST() argument
1185 EXPECT_EQ(L"", WideString::FromASCII(ByteStringView())); in TEST()
1191 EXPECT_EQ(kResult, WideString::FromASCII("x" in TEST()
Dwidestring.cpp893 WideString WideString::FromASCII(ByteStringView bstr) { in FromASCII() function in fxcrt::WideString