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

  /external/pdfium/fpdfsdk/src/formfiller/
FFL_Utils.cpp 75 CPDF_Object* pElement = pArray->GetElementValue(i);
76 TraceObject(pElement);
89 CPDF_Object* pElement = pDict->GetNextElement(fPos, csKey);
91 if (!pElement) break;
92 TraceObject(pElement);
FFL_CBA_Fontmap.cpp 145 CPDF_Dictionary* pElement = (CPDF_Dictionary*)pDirect;
146 if (pElement->GetString("Type") != "Font") continue;
148 CPDF_Font* pFont = pDocument->LoadFont(pElement);
  /hardware/samsung_slsi/exynos5/exynos_omx/openmax/exynos_omx/osal/
Exynos_OSAL_SharedMemory.c 143 EXYNOS_SHAREDMEM_LIST *pElement = NULL;
153 pElement = (EXYNOS_SHAREDMEM_LIST *)Exynos_OSAL_Malloc(sizeof(EXYNOS_SHAREDMEM_LIST));
154 Exynos_OSAL_Memset(pElement, 0, sizeof(EXYNOS_SHAREDMEM_LIST));
155 pElement->owner = OMX_TRUE;
179 Exynos_OSAL_Free((OMX_PTR)pElement);
187 Exynos_OSAL_Free((OMX_PTR)pElement);
192 pElement->IONBuffer = IONBuffer;
193 pElement->mapAddr = pBuffer;
194 pElement->allocSize = size;
195 pElement->pNextMemory = NULL
    [all...]
  /external/pdfium/fpdfsdk/src/
fpdf_ext.cpp 106 FX_BOOL CheckSharedForm(CXML_Element * pElement, CFX_ByteString cbName)
108 int count = pElement->CountAttrs();
114 pElement->GetAttrByIndex(i, space, name, value);
117 CXML_Element *pVersion = pElement->GetElement("adhocwf",cbName);
137 FX_DWORD nCount = pElement->CountChildren();
140 CXML_Element::ChildType childType = pElement->GetChildType(i);
143 CXML_Element * pChild = pElement->GetElement(i);
203 CXML_Element * pElement = metaData.GetRoot();
204 if(pElement)
205 CheckSharedForm(pElement, "workflowType");
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/joystick/darwin/
SDL_sysjoystick.c 117 static SInt32 HIDGetElementValue (recDevice *pDevice, recElement *pElement)
123 if (NULL != pDevice && NULL != pElement && NULL != pDevice->interface)
125 result = (*(pDevice->interface))->getElementValue(pDevice->interface, pElement->cookie, &hidEvent);
129 if (hidEvent.value < pElement->minReport)
130 pElement->minReport = hidEvent.value;
131 if (hidEvent.value > pElement->maxReport)
132 pElement->maxReport = hidEvent.value;
140 static SInt32 HIDScaledCalibratedValue (recDevice *pDevice, recElement *pElement, long min, long max)
143 float readScale = pElement->maxReport - pElement->minReport
    [all...]
  /external/pdfium/core/src/reflow/
layoutprovider_taggedpdf.cpp 675 CPDF_LayoutElement* pElement = FX_NEW CPDF_LayoutElement;
676 if (!pElement) {
680 pElement->m_pParentElement = pParent;
681 pElement->m_pTaggedElement = pTaggedElement;
682 pParent->m_ChildArray.Add(pElement);
688 ProcessElement(pElement, Kid.m_Element.m_pElement);
705 pElement->AddObject(pObj);
738 CPDF_StructElement* pElement = m_pPageTree->GetTopElement(i);
739 if(pElement) {
740 ProcessElement(m_pRoot, pElement);
    [all...]
layoutprocessor_reflow.cpp 130 LayoutStatus CPDF_LayoutProcessor_Reflow::StartProcess(IPDF_LayoutElement* pElement, IFX_Pause* pPause, const CFX_AffineMatrix* pPDFMatrix)
132 if(!pElement) {
137 m_pRootElement = pElement;
321 CFX_FloatRect CPDF_LayoutProcessor_Reflow::GetElmBBox(IPDF_LayoutElement* pElement)
324 int objCount = pElement->CountObjects();
325 int count = pElement->CountChildren();
332 CPDF_PageObject* pObj = pElement->GetObject(0);
343 IPDF_LayoutElement* pChildElement = pElement->GetChild(i);
352 FX_FLOAT CPDF_LayoutProcessor_Reflow::GetElmWidth(IPDF_LayoutElement* pElement)
354 if(!pElement) {
    [all...]
reflowedpage.h 36 LayoutStatus StartProcess(IPDF_LayoutElement* pElement, IFX_Pause* pPause, const CFX_AffineMatrix* pPDFMatrix = NULL);
41 void ProcessElement(IPDF_LayoutElement* pElement, FX_FLOAT reflowWidth);
42 FX_FLOAT GetElmWidth(IPDF_LayoutElement* pElement);
43 CFX_FloatRect GetElmBBox(IPDF_LayoutElement* pElement);
45 void ProcessObjs(IPDF_LayoutElement* pElement, FX_FLOAT reflowWidth);
  /external/pdfium/core/src/fpdfdoc/
doc_tagged.cpp 139 CPDF_StructElementImpl* pElement = NULL;
140 if (map.Lookup(pDict, (FX_LPVOID&)pElement)) {
141 return pElement;
143 pElement = FX_NEW CPDF_StructElementImpl(this, NULL, pDict);
144 if (pElement == NULL) {
147 map.SetAt(pDict, pElement);
150 if (!AddTopLevelNode(pDict, pElement)) {
151 pElement->Release();
164 pParentElement->m_Kids[i].m_Element.m_pElement = pElement->Retain();
168 pElement->Release();
    [all...]
doc_utils.cpp 353 CPDF_Dictionary* pElement = (CPDF_Dictionary*)pDirect;
354 if (pElement->GetString("Type") != "Font") {
359 return pDocument->LoadFont(pElement);
379 CPDF_Dictionary* pElement = pFonts->GetDict(csAlias);
380 if (pElement == NULL) {
383 if (pElement->GetString("Type") == "Font") {
384 return pDocument->LoadFont(pElement);
413 CPDF_Dictionary* pElement = (CPDF_Dictionary*)pDirect;
414 if (pElement->GetString("Type") != "Font") {
417 CPDF_Font* pFind = pDocument->LoadFont(pElement);
    [all...]
tagged_int.h 26 CPDF_StructElementImpl* AddPageNode(CPDF_Dictionary* pElement, CFX_MapPtrToPtr& map, int nLevel = 0);
27 FX_BOOL AddTopLevelNode(CPDF_Dictionary* pDict, CPDF_StructElementImpl* pElement);
doc_formcontrol.cpp 303 CPDF_Dictionary *pElement = pFonts->GetDict(csFontNameTag);
304 CPDF_Font *pFont = m_pField->m_pForm->m_pDocument->LoadFont(pElement);
319 CPDF_Dictionary *pElement = pFonts->GetDict(csFontNameTag);
320 CPDF_Font *pFont = m_pField->m_pForm->m_pDocument->LoadFont(pElement);
doc_form.cpp     [all...]
  /external/pdfium/core/src/fxcrt/
xml_int.h 174 void InsertContentSegment(FX_BOOL bCDATA, FX_WSTR content, CXML_Element* pElement);
175 void InsertCDATASegment(CFX_UTF8Decoder& decoder, CXML_Element* pElement);
  /external/pdfium/core/src/fpdfapi/fpdf_parser/
fpdf_parser_utility.cpp 362 CPDF_Object* pElement = p->GetElement(i);
363 if (pElement->GetObjNum()) {
364 buf << " " << pElement->GetObjNum() << FX_BSTRC(" 0 R");
366 buf << pElement;
  /external/pdfium/fpdfsdk/src/javascript/
JS_GlobalData.cpp 483 CJS_GlobalData_Element* pElement = m_arrayGlobalData.GetAt(i);
484 ASSERT(pElement != NULL);
486 if (pElement->bPersistent)
489 MakeByteString(pElement->data.sKey, &pElement->data, sElement);
Document.cpp     [all...]
  /external/pdfium/core/include/reflow/
fpdf_layout.h 228 virtual LayoutStatus StartProcess(IPDF_LayoutElement* pElement, IFX_Pause* pPause, const CFX_AffineMatrix* pPDFMatrix = NULL) = 0;
  /hardware/ti/omap3/omx/video/src/openmax_il/video_decode/inc/
OMX_VideoDec_Utils.h 592 OMX_PTR pElement[CBUFFER_SIZE];
    [all...]
  /external/pdfium/fpdfsdk/include/javascript/
JS_Console.h 153 void SetElementList(LPCWSTR* pElement, int* pType , int iCount);
  /external/pdfium/core/src/fpdfapi/fpdf_edit/
fpdf_edit_create.cpp 83 CPDF_Object* pElement = p->GetElement(i);
84 if (pElement->GetObjNum()) {
88 if ((len = pFile->AppendDWord(pElement->GetObjNum())) < 0) {
96 if (PDF_CreatorAppendObject(pElement, pFile, offset) < 0) {
    [all...]
  /hardware/ti/omap3/omx/video/src/openmax_il/video_decode/src/
OMX_VideoDec_Utils.c 234 OMX_ERRORTYPE VIDDEC_Queue_Add(VIDDEC_QUEUE_TYPE *queue, OMX_PTR pElement, VIDDEC_QUEUE_TYPES type)
249 pLocal[queue->nHead] = *(OMX_U32 *)pElement;
255 pLocal[queue->nHead] = *(OMX_MARKTYPE *)pElement;
256 /*memcpy(&pLocal[queue->nHead], pElement, sizeof(OMX_MARKTYPE));*/
272 if(pLocal[queue->nHead] == *(OMX_U32 *)pElement)
289 pLocal[queue->nHead] = *(OMX_U32 *)pElement;
299 if(pLocal[queue->nHead].hMarkTargetComponent == ((OMX_MARKTYPE *)pElement)->hMarkTargetComponent
300 && pLocal[queue->nHead].pMarkData == ((OMX_MARKTYPE *)pElement)->pMarkData)
317 pLocal[queue->nHead] = *(OMX_MARKTYPE *)pElement;
336 OMX_ERRORTYPE VIDDEC_Queue_Remove(VIDDEC_QUEUE_TYPE *queue, OMX_PTR pElement, VIDDEC_QUEUE_TYPES type
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
bluetoothapis.h 290 HBLUETOOTH_CONTAINER_ELEMENT *pElement,
  /external/pdfium/core/src/fpdfapi/fpdf_font/
fpdf_font.cpp 803 CPDF_Object* pElement = pDiffs->GetElementValue(i);
804 if (pElement == NULL) {
807 if (pElement->GetType() == PDFOBJ_NAME) {
809 pCharNames[cur_code] = ((CPDF_Name*)pElement)->GetString();
813 cur_code = pElement->GetInteger();
    [all...]

Completed in 422 milliseconds