Searched defs:GetAt (Results 1 - 14 of 14) sorted by relevance

/external/pdfium/core/src/fxcrt/
H A Dfx_basic_array.cpp195 return GetAt(m_DataSize ++);
326 void* CFX_BaseSegmentedArray::GetAt(int index) const function in class:CFX_BaseSegmentedArray
344 FX_BYTE* pSrc = (FX_BYTE*)GetAt(i + count);
345 FX_BYTE* pDest = (FX_BYTE*)GetAt(i);
H A Dfx_xml_parser.cpp176 if (str.GetAt(i) != m_pBuffer[m_dwIndex ++]) {
651 ChildType type = (ChildType)(FX_UINTPTR)m_Children.GetAt(i);
653 CXML_Content* content = (CXML_Content*)m_Children.GetAt(i + 1);
660 CXML_Element* child = (CXML_Element*)m_Children.GetAt(i + 1);
758 CXML_AttrItem& item = m_AttrMap.GetAt(index);
769 CXML_AttrItem& item = m_AttrMap.GetAt(index);
856 return (ChildType)(FX_UINTPTR)m_Children.GetAt(index);
862 (ChildType)(FX_UINTPTR)m_Children.GetAt(index) != Content) {
865 CXML_Content* pContent = (CXML_Content*)m_Children.GetAt(index + 1);
875 (ChildType)(FX_UINTPTR)m_Children.GetAt(inde
996 CXML_AttrItem& CXML_AttrMap::GetAt(int index) const function in class:CXML_AttrMap
[all...]
/external/chromium_org/win8/metro_driver/
H A Dfile_picker.cc41 STDMETHOD(GetAt)(unsigned index, HSTRING* item) { function in class:__anon17430::StringVectorImpl
399 hr = files->GetAt(i, file.GetAddressOf());
H A Dfile_picker_ash.cc38 STDMETHOD(GetAt)(unsigned index, HSTRING* item) { function in class:__anon17431::StringVectorImpl
336 hr = files->GetAt(i, file.GetAddressOf());
/external/pdfium/core/include/fxcrt/
H A Dfx_string.h118 FX_BYTE GetAt(FX_STRSIZE index) const function in class:CFX_ByteStringC
262 FX_BYTE GetAt(FX_STRSIZE nIndex) const function in class:CFX_ByteString
547 FX_WCHAR GetAt(FX_STRSIZE index) const function in class:CFX_WideStringC
673 FX_WCHAR GetAt(FX_STRSIZE nIndex) const function in class:CFX_WideString
H A Dfx_basic.h434 const TYPE GetAt(int nIndex) const function in class:CFX_ArrayTemplate
704 void* GetAt(int index) const;
761 return *(ElementType*)CFX_BaseSegmentedArray::GetAt(index);
1138 void* GetAt(FX_POSITION rPosition) const function in class:CFX_PtrList
1541 FX_LPBYTE GetAt(FX_INT32 nIndex) function in class:CFX_SortListArray
1618 FX_LPBYTE data = m_Data.GetAt(nIndex);
1625 return (T2*)m_Data.GetAt(nIndex);
/external/pdfium/fpdfsdk/include/fxedit/
H A Dfxet_list.h211 TYPE GetAt(FX_INT32 nIndex) const { if (nIndex >= 0 && nIndex < CFX_ArrayTemplate<TYPE>::GetSize()) return CFX_ArrayTemplate<TYPE>::GetAt(nIndex); return NULL;} function in class:CLST_ArrayTemplate
H A Dfxet_edit.h114 delete m_LineRects.GetAt(i);
128 m_LineRects.Add(rects.GetAt(i));
144 CFX_Edit_LineRect * GetAt(FX_INT32 nIndex) const function in class:CFX_Edit_LineRectArray
149 return m_LineRects.GetAt(nIndex);
170 delete m_Rects.GetAt(i);
179 if (CPDF_Rect * pRect = m_Rects.GetAt(i))
191 CPDF_Rect * GetAt(FX_INT32 nIndex) const function in class:CFX_Edit_RectArray
196 return m_Rects.GetAt(nIndex);
795 const CPVT_WordPlace & GetAt() const;
/external/pdfium/fpdfsdk/include/javascript/
H A DField.h57 delete m_Data.GetAt(i);
71 CFX_WideString GetAt(int i) const function in class:CJS_WideStringArray
73 return *m_Data.GetAt(i);
H A DJS_Object.h92 delete m_Array.GetAt(i);
103 if (JS_TIMER_MAP * pMap = m_Array.GetAt(i))
117 CJS_Timer * GetAt(FX_UINT nIndex) function in struct:JS_TIMER_MAPARRAY
123 if (JS_TIMER_MAP * pMap = m_Array.GetAt(i))
135 delete m_Array.GetAt(i);
147 if (JS_TIMER_MAP * pMap = m_Array.GetAt(i))
258 if (CJS_Timer * pTimer = m_sTimeMap.GetAt(idEvent))
/external/pdfium/fpdfsdk/src/javascript/
H A DJS_GlobalData.cpp29 CJS_KeyValue* pOldObjData = array.GetAt(i);
90 CJS_KeyValue* CJS_GlobalVariableArray::GetAt(int index) const function in class:CJS_GlobalVariableArray
92 return array.GetAt(index);
98 delete array.GetAt(i);
136 delete m_arrayGlobalData.GetAt(i);
149 CJS_GlobalData_Element* pTemp = m_arrayGlobalData.GetAt(i);
167 return m_arrayGlobalData.GetAt(nFind);
333 delete m_arrayGlobalData.GetAt(nFind);
346 CJS_GlobalData_Element* CJS_GlobalData::GetAt(int index) const function in class:CJS_GlobalData
348 return m_arrayGlobalData.GetAt(inde
[all...]
/external/pdfium/core/src/fpdfdoc/
H A Dpdf_vt.h202 TYPE GetAt(int nIndex) const function in class:CPVT_ArrayTemplate
205 return CFX_ArrayTemplate<TYPE>::GetAt(nIndex);
240 CLine * GetAt(FX_INT32 nIndex) const function in class:CLines
242 return m_Lines.GetAt(nIndex);
251 delete GetAt(i);
266 if (CLine * pLine = GetAt(m_nTotal)) {
275 delete GetAt(i);
635 const CPVT_WordPlace & GetAt() const function in class:CPDF_VariableText_Iterator
/external/pdfium/core/include/fpdfdoc/
H A Dfpdf_doc.h705 CPDF_Annot* GetAt(int index) function in class:CPDF_AnnotList
707 return (CPDF_Annot*)m_AnnotList.GetAt(index);
1126 return (CPDF_FormControl*)m_ControlList.GetAt(index);
/external/pdfium/fpdfsdk/src/fxedit/
H A Dfxet_edit.cpp122 const CPVT_WordPlace & CFX_Edit_Iterator::GetAt() const function in class:CFX_Edit_Iterator
126 return m_pVTIterator->GetAt();
224 if (CFX_Edit_LineRect * pOldRect = m_OldLineRects.GetAt(i))
230 if (CFX_Edit_LineRect * pNewRect = m_NewLineRects.GetAt(i))
246 CFX_Edit_LineRect * pOldRect = m_OldLineRects.GetAt(i);
247 CFX_Edit_LineRect * pNewRect = m_NewLineRects.GetAt(i);
373 IFX_Edit_UndoItem * pItem = m_UndoItemStack.GetAt(m_nCurUndoPos-1);
398 IFX_Edit_UndoItem * pItem = m_UndoItemStack.GetAt(m_nCurUndoPos);
447 return m_UndoItemStack.GetAt(nIndex);
456 IFX_Edit_UndoItem* pItem = m_UndoItemStack.GetAt(
[all...]

Completed in 7953 milliseconds