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

  /external/pdfium/core/fpdfapi/page/
cpdf_allstates.cpp 53 CPDF_Object* pElement = it.second.get();
54 CPDF_Object* pObject = pElement ? pElement->GetDirect() : nullptr;
cpdf_streamcontentparser.cpp 218 CPDF_Object* pElement = pArray->GetObjectAt(i);
219 if (pElement->IsName()) {
220 CFX_ByteString name = pElement->GetString();
226 ReplaceAbbr(pElement);
    [all...]
  /external/pdfium/core/fpdfapi/parser/
fpdf_parser_utility.cpp 182 CPDF_Object* pElement = p->GetObjectAt(i);
183 if (pElement && !pElement->IsInline()) {
184 buf << " " << pElement->GetObjNum() << " 0 R";
186 buf << pElement;
cpdf_parser.cpp 801 CPDF_Object* pElement = it->second.get();
804 pElement ? pElement->GetObjNum() : 0;
809 m_pTrailer->SetFor(key, pElement->Clone());
    [all...]
  /external/pdfium/fpdfsdk/
fpdf_ext.cpp 78 bool CheckSharedForm(const CXML_Element* pElement, CFX_ByteString cbName) {
79 int count = pElement->CountAttrs();
84 pElement->GetAttrByIndex(i, space, name, value);
88 pElement->GetElement("adhocwf", cbName.AsStringC());
107 uint32_t nCount = pElement->CountChildren();
109 CXML_Element::ChildType childType = pElement->GetChildType(i);
111 CXML_Element* pChild = pElement->GetElement(i);
160 const CXML_Element* pElement = metaData.GetRoot();
161 if (pElement)
162 CheckSharedForm(pElement, "workflowType")
    [all...]
fpdfppo.cpp 168 CPDF_Object* pElement = pNewRoot->GetObjectFor("Pages");
170 pElement ? ToDictionary(pElement->GetDirect()) : nullptr;
  /external/pdfium/fpdfsdk/formfiller/
cba_fontmap.cpp 128 CPDF_Dictionary* pElement = ToDictionary(it.second->GetDirect());
129 if (!pElement)
131 if (pElement->GetStringFor("Type") != "Font")
134 CPDF_Font* pFont = pDocument->LoadFont(pElement);
  /external/pdfium/core/fpdfapi/font/
cpdf_font.cpp 408 CPDF_Object* pElement = pDiffs->GetDirectObjectAt(i);
409 if (!pElement)
412 if (CPDF_Name* pName = pElement->AsName()) {
417 cur_code = pElement->GetInteger();
  /external/pdfium/core/fpdfdoc/
cpdf_formcontrol.cpp 294 CPDF_Dictionary* pElement = pFonts->GetDictFor(csFontNameTag);
295 if (pElement) {
296 CPDF_Font* pFont = m_pField->m_pForm->m_pDocument->LoadFont(pElement);
310 CPDF_Dictionary* pElement = pFonts->GetDictFor(csFontNameTag);
311 if (pElement) {
312 CPDF_Font* pFont = m_pField->m_pForm->m_pDocument->LoadFont(pElement);
doc_tagged.cpp 123 auto pElement = pdfium::MakeRetain<CPDF_StructElement>(this, nullptr, pDict);
124 (*map)[pDict] = pElement;
127 if (!AddTopLevelNode(pDict, pElement))
129 return pElement;
137 kid.m_pElement = pElement;
143 return pElement;
148 const CFX_RetainPtr<CPDF_StructElement>& pElement) {
156 m_Kids[0] = pElement;
163 m_Kids[i] = pElement;
307 CPDF_Object* pElement = pArray->GetDirectObjectAt(i)
    [all...]
cpdf_interform.cpp 118 CPDF_Dictionary* pElement = pFonts->GetDictFor(csAlias);
119 if (!pElement)
122 if (pElement->GetStringFor("Type") == "Font")
123 return pDocument->LoadFont(pElement);
147 CPDF_Dictionary* pElement = ToDictionary(it.second->GetDirect());
148 if (!pElement)
150 if (pElement->GetStringFor("Type") != "Font")
152 CPDF_Font* pFind = pDocument->LoadFont(pElement);
186 CPDF_Dictionary* pElement = ToDictionary(it.second->GetDirect());
187 if (!pElement)
    [all...]
  /external/pdfium/xfa/fxfa/parser/
cxfa_dataexporter.cpp 498 CFDE_XMLElement* pElement =
500 if (!pElement || pElement->GetType() != FDE_XMLNODE_Element)
506 pXMLDoc->SaveXMLNode(pStream, pElement);
515 CFDE_XMLElement* pElement =
517 if (!pElement || pElement->GetType() != FDE_XMLNODE_Element)
520 pXMLDoc->SaveXMLNode(pStream, pElement);
537 CFDE_XMLElement* pElement =
539 if (!pElement || pElement->GetType() != FDE_XMLNODE_Element
    [all...]
cxfa_document.cpp 231 const XFA_ELEMENTINFO* pElement = XFA_GetElementByID(eElement);
232 if (pElement && (pElement->dwPackets & pPacket->eName)) {
234 new CXFA_Node(this, pPacket->eName, pElement->eObjectType,
235 pElement->eName, pElement->pName);
xfa_locale.cpp 67 CXML_Element* pElement = m_pLocaleData->GetElement("", bsSymbols.AsStringC());
68 if (!pElement) {
71 GetPattern(pElement,
144 CXML_Element* pElement = m_pLocaleData->GetElement("", "datePatterns");
145 if (!pElement) {
164 GetPattern(pElement, "datePattern", wsName.AsStringC(), wsPattern);
169 CXML_Element* pElement = m_pLocaleData->GetElement("", "timePatterns");
170 if (!pElement) {
189 GetPattern(pElement, "timePattern", wsName.AsStringC(), wsPattern);
194 CXML_Element* pElement = m_pLocaleData->GetElement("", "numberPatterns")
    [all...]
cxfa_simple_parser.cpp 50 void GetElementTagNamespaceURI(CFDE_XMLElement* pElement,
53 pElement->GetNamespacePrefix(wsNodeStr);
55 pElement, wsNodeStr.AsStringC(), wsNamespaceURI)) {
67 CFDE_XMLElement* pElement = reinterpret_cast<CFDE_XMLElement*>(pNode);
69 pElement->GetLocalTagName(wsNodeStr);
73 GetElementTagNamespaceURI(pElement, wsNodeStr);
95 bool ResolveAttribute(CFDE_XMLElement* pElement,
110 pElement, wsNSPrefix.AsStringC(), wsNamespaceURI)) {
117 bool FindAttributeWithNS(CFDE_XMLElement* pElement,
122 if (!pElement)
    [all...]
cxfa_node.cpp     [all...]
  /external/pdfium/core/fxcrt/
fx_xml_parser.cpp 508 auto pElement = pdfium::MakeUnique<CXML_Element>(
536 pElement->m_AttrMap.SetAt(attr_space, attr_name, attr_value);
544 return pElement;
550 return pElement;
558 return pElement;
598 InsertContentSegment(bCDATA, dataStr.AsStringC(), pElement.get());
605 ParseElement(pElement.get(), true));
609 pElement->m_Children.push_back(
640 InsertContentSegment(bCDATA, dataStr.AsStringC(), pElement.get());
644 return pElement;
    [all...]
  /external/pdfium/xfa/fxfa/app/
cxfa_textparser.cpp 512 CFDE_XMLElement* pElement = static_cast<CFDE_XMLElement*>(pXMLNode);
514 pElement->GetString(L"xfa:embed", wsAttr);
521 pElement->GetString(L"xfa:embedType", ws);
532 pElement->GetString(L"xfa:embedMode", ws);
cxfa_textlayout.cpp 722 CFDE_XMLElement* pElement = nullptr;
731 pElement = static_cast<CFDE_XMLElement*>(pXMLNode);
732 pElement->GetLocalTagName(wsName);
763 ASSERT(pElement);
764 pElement->GetString(L"href", wsLinkContent);
    [all...]
xfa_ffwidgetacc.cpp     [all...]
  /external/pdfium/core/fpdfapi/edit/
fpdf_edit_create.cpp 113 CPDF_Object* pElement = p->GetObjectAt(i);
114 if (!pElement->IsInline()) {
118 if ((len = pFile->AppendDWord(pElement->GetObjNum())) < 0) {
126 if (PDF_CreatorAppendObject(pElement, pFile, offset) < 0) {
    [all...]
  /external/pdfium/xfa/fde/xml/
fde_xml_imp.cpp 747 CFDE_XMLElement* pElement = (CFDE_XMLElement*)pNode;
748 if (!pElement->HasAttribute(wsAttri.c_str())) {
752 pElement->GetString(wsAttri.c_str(), wsNamespace);
    [all...]
  /external/parameter-framework/upstream/parameter/
ParameterMgr.cpp 709 const CElement *pElement = getConstSystemClass()->findDescendant(pathNavigator);
711 if (!pElement) {
720 static_cast<const CConfigurableElement *>(pElement);
    [all...]

Completed in 6841 milliseconds