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

1 2

  /external/pdfium/fxjs/
cjs_globalvariablearray.h 22 CJS_KeyValue* GetAt(int index) const;
cjs_globalvariablearray.cpp 18 CJS_KeyValue* pOldObjData = array.GetAt(i);
66 CJS_KeyValue* CJS_GlobalVariableArray::GetAt(int index) const {
cjs_globaldata.h 44 CJS_GlobalData_Element* GetAt(int index) const;
cjs_globaldata.cpp 215 CJS_GlobalData_Element* CJS_GlobalData::GetAt(int index) const {
cjs_global.cpp 367 CJS_GlobalData_Element* pData = m_pGlobalData->GetAt(i);
508 CJS_KeyValue* pObjData = pData->objData.GetAt(i);
  /external/libmojo/mojo/public/cpp/bindings/
array_traits_wtf_vector.h 33 static U& GetAt(WTF::Vector<U>& input, size_t index) { return input[index]; }
35 static const U& GetAt(const WTF::Vector<U>& input, size_t index) {
array_traits_carray.h 44 static T& GetAt(CArray<T>& input, size_t index) { return input.data[index]; }
46 static const T& GetAt(const CArray<T>& input, size_t index) {
69 static const T& GetAt(const ConstCArray<T>& input, size_t index) {
array_traits_stl.h 36 static typename std::vector<T>::reference GetAt(std::vector<T>& input,
41 static typename std::vector<T>::const_reference GetAt(
  /external/mdnsresponder/mDNSWindows/DLLX/
_IDNSSDEvents_CP.h 22 CComPtr<IUnknown> punkConnection = m_vec.GetAt(iConnection);
51 CComPtr<IUnknown> punkConnection = m_vec.GetAt(iConnection);
80 CComPtr<IUnknown> punkConnection = m_vec.GetAt(iConnection);
113 CComPtr<IUnknown> punkConnection = m_vec.GetAt(iConnection);
146 CComPtr<IUnknown> punkConnection = m_vec.GetAt(iConnection);
180 CComPtr<IUnknown> punkConnection = m_vec.GetAt(iConnection);
211 CComPtr<IUnknown> punkConnection = m_vec.GetAt(iConnection);
245 CComPtr<IUnknown> punkConnection = m_vec.GetAt(iConnection);
270 CComPtr<IUnknown> punkConnection = m_vec.GetAt(iConnection);
304 CComPtr<IUnknown> punkConnection = m_vec.GetAt(iConnection);
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
objectarray.h 53 virtual HRESULT STDMETHODCALLTYPE GetAt(
83 HRESULT (STDMETHODCALLTYPE *GetAt)(
103 #define IObjectArray_GetAt(This,uiIndex,riid,ppv) (This)->lpVtbl->GetAt(This,uiIndex,riid,ppv)
120 return This->lpVtbl->GetAt(This,uiIndex,riid,ppv);
196 HRESULT (STDMETHODCALLTYPE *GetAt)(
232 #define IObjectCollection_GetAt(This,uiIndex,riid,ppv) (This)->lpVtbl->GetAt(This,uiIndex,riid,ppv)
254 return This->lpVtbl->GetAt(This,uiIndex,riid,ppv);
dxtmpl.h 95 TYPE GetAt(int nIndex) const;
126 inline TYPE CDXArray<TYPE,ARG_TYPE>::GetAt(int nIndex) const { _ASSERT((nIndex >= 0 && nIndex < m_nSize)); return m_pData[nIndex]; }
142 inline TYPE CDXArray<TYPE,ARG_TYPE>::operator[](int nIndex) const { return GetAt(nIndex); }
286 InsertAt(nStartIndex,pNewArray->GetAt(0),pNewArray->GetSize());
288 SetAt(nStartIndex + i,pNewArray->GetAt(i));
344 TYPE &GetAt(DXLISTPOS position);
345 TYPE GetAt(DXLISTPOS position) const;
413 inline TYPE &CDXList<TYPE,ARG_TYPE>::GetAt(DXLISTPOS position) {
419 inline TYPE CDXList<TYPE,ARG_TYPE>::GetAt(DXLISTPOS position) const {
portabledevicetypes.h 88 virtual HRESULT STDMETHODCALLTYPE GetAt(
268 HRESULT (STDMETHODCALLTYPE *GetAt)(
475 #define IPortableDeviceValues_GetAt(This,index,pKey,pValue) (This)->lpVtbl->GetAt(This,index,pKey,pValue)
530 return This->lpVtbl->GetAt(This,index,pKey,pValue);
    [all...]
xpsdigitalsignature.h     [all...]
xpsobjectmodel.h     [all...]
propsys.h 399 virtual HRESULT STDMETHODCALLTYPE GetAt(
439 HRESULT (STDMETHODCALLTYPE *GetAt)(
471 #define IPropertyStore_GetAt(This,iProp,pkey) (This)->lpVtbl->GetAt(This,iProp,pkey)
491 return This->lpVtbl->GetAt(This,iProp,pkey);
955 virtual HRESULT STDMETHODCALLTYPE GetAt(
    [all...]
sensorsapi.h 306 virtual HRESULT STDMETHODCALLTYPE GetAt(
346 HRESULT (STDMETHODCALLTYPE *GetAt)(
383 #define ISensorCollection_GetAt(This,ulIndex,ppSensor) (This)->lpVtbl->GetAt(This,ulIndex,ppSensor)
402 return This->lpVtbl->GetAt(This,ulIndex,ppSensor);
    [all...]
  /external/pdfium/core/fpdfdoc/
cpdf_annotlist.h 45 CPDF_Annot* GetAt(size_t index) const { return m_AnnotList[index].get(); }
  /external/pdfium/fpdfsdk/pwl/
cpwl_edit.cpp 395 CPVT_WordPlace wpOld = pIterator->GetAt();
693 wpEnd = pIterator->GetAt();
700 wpEnd = pIterator->GetAt();
713 wpStart = pIterator->GetAt();
720 wpStart = pIterator->GetAt();
cpwl_edit_impl.h 411 const CPVT_WordPlace& GetAt() const;
cpwl_edit_impl.cpp 113 const CPVT_WordPlace& CPWL_EditImpl_Iterator::GetAt() const {
468 CPVT_WordPlace place = pIterator->GetAt();
    [all...]
  /external/mdnsresponder/mDNSWindows/ControlPanel/
ControlPanel.cpp 322 CCPApplet * applet = m_applets.GetAt( pos );
  /external/libmojo/mojo/public/cpp/bindings/lib/
array_serialization.h 74 decltype(Traits::GetAt(std::declval<MaybeConstUserType&>(), 0));
77 return Traits::GetAt(input_, iter_++);
  /external/pdfium/fpdfsdk/
fpdfeditpage.cpp 305 CPDF_Annot* pAnnot = AnnotList.GetAt(i);
cpdfsdk_pageview.cpp 461 CPDF_Annot* pPDFAnnot = m_pAnnotList->GetAt(i);
  /external/icu/icu4c/source/common/
putil.cpp     [all...]

Completed in 393 milliseconds

1 2