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

1 2 3 4 5

  /external/pdfium/xfa/fxfa/parser/
cxfa_valuearray.cpp 16 delete GetAt(i);
21 objArray.Add(CXFA_ScriptContext::ToObject(GetAt(i), nullptr));
  /external/pdfium/core/fpdfdoc/
clines.cpp 21 CLine* CLines::GetAt(int32_t nIndex) const {
22 return m_Lines.GetAt(nIndex);
31 delete GetAt(i);
41 } else if (CLine* pLine = GetAt(m_nTotal)) {
49 delete GetAt(i);
cpvt_arraytemplate.h 18 TYPE GetAt(int nIndex) const {
20 return CFX_ArrayTemplate<TYPE>::GetAt(nIndex);
clines.h 23 CLine* GetAt(int32_t nIndex) const;
cpdf_filespec.cpp 63 if (filepath.GetAt(0) != '/')
65 if (filepath.GetAt(1) == '/')
67 if (filepath.GetAt(2) == '/') {
69 result += filepath.GetAt(1);
125 if (filepath.GetAt(1) == ':') {
128 result += filepath.GetAt(0);
129 if (filepath.GetAt(2) != '\\')
135 if (filepath.GetAt(0) == '\\' && filepath.GetAt(1) == '\\')
138 if (filepath.GetAt(0) == '\\')
    [all...]
csection.cpp 31 delete m_WordArray.GetAt(i);
38 if (CLine* pLine = m_LineArray.GetAt(i)) {
73 if (CLine* pLine = m_LineArray.GetAt(0)) {
80 if (CLine* pLine = m_LineArray.GetAt(m_LineArray.GetSize() - 1)) {
93 if (CLine* pLine = m_LineArray.GetAt(place.nLineIndex)) {
98 if (CLine* pPrevLine = m_LineArray.GetAt(place.nLineIndex - 1)) {
115 if (CLine* pLine = m_LineArray.GetAt(place.nLineIndex)) {
117 if (CLine* pNextLine = m_LineArray.GetAt(place.nLineIndex + 1)) {
132 if (CLine* pLine = m_LineArray.GetAt(nMid)) {
160 if (CLine* pLine = m_LineArray.GetAt(nMid))
    [all...]
cpdf_variabletext.cpp 115 if (CSection* pSection = m_pVT->m_SectionArray.GetAt(m_CurPos.nSecIndex)) {
130 if (m_pVT->m_SectionArray.GetAt(m_CurPos.nSecIndex)) {
138 m_pVT->m_SectionArray.GetAt(m_CurPos.nSecIndex - 1)) {
167 if (CSection* pSection = m_pVT->m_SectionArray.GetAt(m_CurPos.nSecIndex)) {
168 if (pSection->m_LineArray.GetAt(m_CurPos.nLineIndex)) {
170 pSection->m_WordArray.GetAt(m_CurPos.nWordIndex)) {
192 if (CSection* pSection = m_pVT->m_SectionArray.GetAt(m_CurPos.nSecIndex)) {
194 pSection->m_WordArray.GetAt(m_CurPos.nWordIndex)) {
206 if (CSection* pSection = m_pVT->m_SectionArray.GetAt(m_CurPos.nSecIndex)) {
207 if (CLine* pLine = pSection->m_LineArray.GetAt(m_CurPos.nLineIndex))
    [all...]
  /external/pdfium/xfa/fde/
ifx_chariter.h 19 virtual int32_t GetAt() const = 0;
cfx_chariter.cpp 30 return m_wsText.GetAt(m_nIndex);
39 int32_t CFX_CharIter::GetAt() const {
cfx_chariter.h 22 int32_t GetAt() const override;
cfde_txtedtparag.cpp 57 if (pIter->GetAt() + 1 == nEndIndex &&
71 if ((pIter->GetAt() + 1 == nEndIndex) &&
76 } while (pIter->Next(false) && (pIter->GetAt() < nEndIndex));
122 if (pIter->GetAt() + 1 == nEndIndex &&
130 if ((pIter->GetAt() + 1 == nEndIndex) &&
135 } while (pIter->Next(false) && (pIter->GetAt() < nEndIndex));
  /external/pdfium/xfa/fgas/crt/
fgas_utils.h 22 uint8_t* GetAt(int32_t index) const;
51 baseType& GetAt(int32_t index) const {
52 return *(baseType*)CFX_BaseArray::GetAt(index);
55 return (baseType*)CFX_BaseArray::GetAt(index);
58 *(baseType*)CFX_BaseArray::GetAt(index) = element;
86 uint8_t* GetAt(int32_t index) const;
113 uint8_t* GetAt(int32_t index) const;
124 baseType& GetAt(int32_t index, const baseType& defValue) const {
125 baseType* p = (baseType*)CFX_BaseDiscreteArray::GetAt(index);
129 return (baseType*)CFX_BaseDiscreteArray::GetAt(index)
    [all...]
fgas_utils.cpp 71 uint8_t* CFX_BaseArray::GetAt(int32_t index) const {
163 pChunk = (uint8_t*)m_pData->GetAt(index / m_iChunkSize);
168 pChunk = (uint8_t*)m_pData->GetAt(index / m_iChunkSize);
185 uint8_t* CFX_BaseMassArrayImp::GetAt(int32_t index) const {
187 uint8_t* pChunk = (uint8_t*)m_pData->GetAt(index / m_iChunkSize);
253 uint8_t* pDstChunk = (uint8_t*)GetAt(iDstStart);
254 uint8_t* pSrcChunk = (uint8_t*)src.GetAt(iSrcStart);
268 pSrcChunk = (uint8_t*)src.m_pData->GetAt(iSrcChunkIndex);
276 pDstChunk = (uint8_t*)m_pData->GetAt(iDstChunkIndex);
298 FX_Free(m_pData->GetAt(i))
    [all...]
  /external/libmojo/mojo/public/cpp/bindings/
array_traits_standard.h 26 static typename Array<T>::RefType GetAt(Array<T>& input, size_t index) {
30 static typename Array<T>::ConstRefType GetAt(const Array<T>& input,
array_traits_wtf.h 26 static U& GetAt(WTFArray<U>& input, size_t index) { return input[index]; }
28 static const U& GetAt(const WTFArray<U>& input, size_t index) {
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 36 static T& GetAt(CArray<T>& input, size_t index) { return input.data[index]; }
38 static const T& GetAt(const CArray<T>& input, size_t index) {
array_traits_stl.h 34 static typename std::vector<T>::reference GetAt(std::vector<T>& input,
39 static typename std::vector<T>::const_reference GetAt(
  /external/pdfium/xfa/fxbarcode/datamatrix/
BC_EncoderContext.cpp 39 FX_WCHAR ch = (FX_WCHAR)(dststr.GetAt(i) & 0xff);
40 if (ch == '?' && dststr.GetAt(i) != '?') {
70 return m_msg.GetAt(m_pos);
73 return m_msg.GetAt(m_pos);
BC_EdifactEncoder.cpp 137 FX_WCHAR c1 = sb.GetAt(startPos);
138 FX_WCHAR c2 = len >= 2 ? sb.GetAt(startPos + 1) : 0;
139 FX_WCHAR c3 = len >= 3 ? sb.GetAt(startPos + 2) : 0;
140 FX_WCHAR c4 = len >= 4 ? sb.GetAt(startPos + 3) : 0;
  /external/pdfium/xfa/fxbarcode/pdf417/
BC_PDF417HighLevelEncoder.cpp 67 FX_WCHAR ch = (FX_WCHAR)(bytes.GetAt(i) & 0xff);
68 if (ch == '?' && bytes.GetAt(i) != '?') {
76 byteArr.Add(bytes.GetAt(k));
160 FX_WCHAR ch = msg.GetAt(startpos + idx);
222 FX_WCHAR next = msg.GetAt(startpos + idx + 1);
253 h = (FX_WCHAR)((h * 30) + tmp.GetAt(i));
256 h = tmp.GetAt(i);
281 t += bytes->GetAt(idx + i) & 0xff;
297 int32_t ch = bytes->GetAt(i) & 0xff;
319 sb += tmp.GetAt(i)
    [all...]
  /external/pdfium/fpdfsdk/javascript/
JS_KeyValue.h 26 CJS_KeyValue* GetAt(int index) const;
  /external/pdfium/core/fpdftext/
cpdf_textpagefind.cpp 113 if (findwhatStr.GetAt(i) != ' ')
153 FX_WCHAR strInsert = m_strText.GetAt(nStartPos);
177 int curChar = csWord.GetAt(0);
179 int lastChar = lastWord.GetAt(lastWord.GetLength() - 1);
186 FX_WCHAR strInsert = m_strText.GetAt(d);
195 FX_WCHAR strInsert = m_strText.GetAt(nResultPos - 1);
296 FX_WCHAR curChar = csWord.GetAt(pos);
329 if (char_count == 1 && csPageText.GetAt(startPos) > 255)
332 char_left = csPageText.GetAt(startPos - 1);
334 char_right = csPageText.GetAt(startPos + char_count)
    [all...]
  /external/pdfium/xfa/fxbarcode/oned/
BC_OnedCode128Writer.cpp 90 patternIndex = (int32_t)contents.GetAt(position);
107 ch = contents.GetAt(i);
117 ch = filterChineseChar.GetAt(i);
126 ch = filterChineseChar.GetAt(i);
256 FX_CHAR ch = contents.GetAt(position);
262 if (contents.GetAt(position + 1) < '0' ||
263 contents.GetAt(position + 1) > '9') {
  /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...]

Completed in 724 milliseconds

1 2 3 4 5