HomeSort by relevance Sort by last modified time
    Searched refs:pElement (Results 1 - 25 of 42) sorted by null

1 2

  /external/parameter-framework/upstream/parameter/
ParameterBlockType.cpp 55 void CParameterBlockType::populate(CElement *pElement) const
67 pElement->addChild(pChildParameterBlock);
73 base::populate(pElement);
ParameterBlockType.h 49 virtual void populate(CElement *pElement) const;
ComponentInstance.cpp 121 void CComponentInstance::populate(CElement *pElement) const
132 pElement->addChild(pChildComponent);
139 base::populate(pElement);
141 _pComponentType->populate(static_cast<CComponent *>(pElement));
ComponentInstance.h 63 virtual void populate(CElement *pElement) const;
ComponentType.h 44 virtual void populate(CElement *pElement) const;
ComponentType.cpp 114 void CComponentType::populate(CElement *pElement) const
117 base::populate(pElement);
123 _pExtendsComponentType->populate(pElement);
TypeElement.h 86 virtual void populate(CElement *pElement) const;
TypeElement.cpp 88 void CTypeElement::populate(CElement *pElement) const
103 pElement->addChild(pInstanceConfigurableChildElement);
  /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/core/fxcrt/
xml_int.h 40 CXML_Element* pElement);
41 void InsertCDATASegment(CFX_UTF8Decoder& decoder, CXML_Element* pElement);
  /external/pdfium/xfa/fxfa/parser/
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_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_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_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_utils.cpp 350 const XFA_ELEMENTHIERARCHY* pElement =
352 iCount = pElement->wCount;
353 return g_XFAElementPropertyData + pElement->wStart;
360 const XFA_ELEMENTHIERARCHY* pElement =
362 iCount = pElement->wCount;
363 return g_XFAElementAttributeData + pElement->wStart;
  /device/linaro/bootloader/edk2/StdLib/LibC/Containers/Queues/
Fifo.c 195 pElement points to the first byte of the first element to be added.
200 @param[in] pElement Pointer to the element(s) to enqueue (add).
211 const void *pElement,
222 assert(pElement != NULL);
232 ElemPtr = (uintptr_t)pElement; // Addr. of element to add, as an integer
257 pElement points to the destination of the first byte of the first element
262 @param[out] pElement Pointer to where to store the element(s) read from the FIFO.
274 void *pElement,
285 assert(pElement != NULL);
297 (void)CopyMem(pElement, (const void *)QPtr, SizeOfElement); // Copy element from FIFO to caller's buffer
    [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;
  /external/pdfium/core/fpdfdoc/
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_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);
tagged_int.h 45 CPDF_Dictionary* pElement,
49 const CFX_RetainPtr<CPDF_StructElement>& pElement);
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/core/fpdfapi/page/
cpdf_allstates.cpp 53 CPDF_Object* pElement = it.second.get();
54 CPDF_Object* pObject = pElement ? pElement->GetDirect() : nullptr;
  /external/mesa3d/src/gallium/state_trackers/nine/
vertexdeclaration9.h 79 D3DVERTEXELEMENT9 *pElement,
  /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);

Completed in 1034 milliseconds

1 2