HomeSort by relevance Sort by last modified time
    Searched refs:pArray (Results 26 - 50 of 107) sorted by null

12 3 4 5

  /external/pdfium/fpdfsdk/
fpdf_ext.cpp 142 CPDF_Array* pArray = pJSDict ? pJSDict->GetArrayFor("Names") : nullptr;
143 if (pArray) {
144 for (size_t i = 0; i < pArray->GetCount(); i++) {
145 ByteString cbStr = pArray->GetStringAt(i);
fpdf_transformpage.cpp 46 CPDF_Array* pArray = page->m_pFormDict->GetArrayFor(key);
47 if (!pArray)
50 *left = pArray->GetFloatAt(0);
51 *bottom = pArray->GetFloatAt(1);
52 *right = pArray->GetFloatAt(2);
53 *top = pArray->GetFloatAt(3);
300 if (CPDF_Array* pArray = ToArray(pContentObj)) {
301 pArray->InsertNewAt<CPDF_Reference>(0, pDoc, pStream->GetObjNum());
fpdf_flatten.cpp 126 std::vector<float> pArray(nRects);
130 pArray[i] = array[i].left;
134 pArray[i] = array[i].top;
138 pArray[i] = array[i].right;
142 pArray[i] = array[i].bottom;
149 float fRet = pArray[0];
152 fRet = std::max(fRet, pArray[i]);
155 fRet = std::min(fRet, pArray[i]);
fpdfppo.cpp 227 CPDF_Array* pArray = pCurPageDict->SetNewFor<CPDF_Array>("MediaBox");
228 pArray->AddNew<CPDF_Number>(0);
229 pArray->AddNew<CPDF_Number>(0);
230 pArray->AddNew<CPDF_Number>(612);
231 pArray->AddNew<CPDF_Number>(792);
285 CPDF_Array* pArray = pObj->AsArray();
286 for (size_t i = 0; i < pArray->GetCount(); ++i) {
287 CPDF_Object* pNextObj = pArray->GetObjectAt(i);
cpdfsdk_baannot.cpp 254 CPDF_Array* pArray = m_pAnnot->GetAnnotDict()->SetNewFor<CPDF_Array>("C");
255 pArray->AddNew<CPDF_Number>(static_cast<float>(FXSYS_GetRValue(color)) /
257 pArray->AddNew<CPDF_Number>(static_cast<float>(FXSYS_GetGValue(color)) /
259 pArray->AddNew<CPDF_Number>(static_cast<float>(FXSYS_GetBValue(color)) /
fpdfannot.cpp 634 CPDF_Array* pArray = pAnnotDict->GetArrayFor("QuadPoints");
635 if (!pArray)
638 quadPoints->x1 = pArray->GetNumberAt(0);
639 quadPoints->y1 = pArray->GetNumberAt(1);
640 quadPoints->x2 = pArray->GetNumberAt(2);
641 quadPoints->y2 = pArray->GetNumberAt(3);
642 quadPoints->x3 = pArray->GetNumberAt(4);
643 quadPoints->y3 = pArray->GetNumberAt(5);
644 quadPoints->x4 = pArray->GetNumberAt(6);
645 quadPoints->y4 = pArray->GetNumberAt(7)
    [all...]
cba_annotiterator.cpp 75 void CBA_AnnotIterator::CollectAnnots(std::vector<CPDFSDK_Annot*>* pArray) {
79 pArray->push_back(pAnnot);
  /external/pdfium/core/fpdfdoc/
cpdf_bookmark.cpp 76 if (CPDF_Array* pArray = pDest->AsArray())
77 return CPDF_Dest(pArray);
cpdf_annot.cpp 209 CPDF_Array* pArray = pAnnotDict->GetArrayFor("QuadPoints");
210 if (!pArray)
223 return CFX_FloatRect(pArray->GetNumberAt(4), pArray->GetNumberAt(5),
224 pArray->GetNumberAt(2), pArray->GetNumberAt(3));
cpdf_structtree.cpp 57 else if (CPDF_Array* pArray = pKids->AsArray())
58 dwKids = pArray->GetCount();
  /external/pdfium/fxjs/
cjs_v8.cpp 65 unsigned CJS_V8::PutArrayElement(v8::Local<v8::Array> pArray,
68 if (pArray.IsEmpty())
70 if (pArray->Set(m_isolate->GetCurrentContext(), index, pValue).IsNothing())
75 v8::Local<v8::Value> CJS_V8::GetArrayElement(v8::Local<v8::Array> pArray,
77 if (pArray.IsEmpty())
80 if (!pArray->Get(m_isolate->GetCurrentContext(), index).ToLocal(&val))
85 unsigned CJS_V8::GetArrayLength(v8::Local<v8::Array> pArray) {
86 if (pArray.IsEmpty())
88 return pArray->Length();
cjs_v8.h 60 unsigned GetArrayLength(v8::Local<v8::Array> pArray);
61 v8::Local<v8::Value> GetArrayElement(v8::Local<v8::Array> pArray,
63 unsigned PutArrayElement(v8::Local<v8::Array> pArray,
  /external/pdfium/core/fpdfapi/page/
cpdf_color.cpp 129 CPDF_Array* pArray = m_pCS->GetArray();
130 if (pDoc && pArray) {
131 m_pCS = pDoc->GetPageData()->GetCopiedColorSpace(pArray);
cpdf_shadingpattern.cpp 78 if (CPDF_Array* pArray = pFunc->AsArray()) {
79 m_pFunctions.resize(std::min<size_t>(pArray->GetCount(), 4));
81 m_pFunctions[i] = CPDF_Function::Load(pArray->GetDirectObjectAt(i));
cpdf_docpagedata.cpp 265 CPDF_Array* pArray = pCSObj->AsArray();
266 if (!pArray || pArray->IsEmpty())
269 if (pArray->GetCount() == 1) {
270 return GetColorSpaceGuarded(pArray->GetDirectObjectAt(0), pResources,
284 CPDF_ColorSpace::Load(m_pPDFDoc.Get(), pArray, pVisited);
cpdf_colorspace.h 90 CPDF_Array* pArray,
cpdf_contentparser.cpp 43 CPDF_Array* pArray = pContent->AsArray();
44 if (!pArray) {
48 m_nStreams = pArray->GetCount();
cpdf_streamparser.cpp 129 if (CPDF_Array* pArray = pFilter->AsArray()) {
130 Decoder = pArray->GetStringAt(0);
360 auto pArray = pdfium::MakeUnique<CPDF_Array>();
365 pArray->Add(std::move(pObj));
371 return std::move(pArray);
cpdf_streamcontentparser.cpp 216 CPDF_Array* pArray = pObj->AsArray();
217 for (size_t i = 0; i < pArray->GetCount(); i++) {
218 CPDF_Object* pElement = pArray->GetObjectAt(i);
225 pArray->SetNewAt<CPDF_Name>(i, ByteString(fullname));
708 CPDF_Array* pArray = ToArray(GetObject(1));
709 if (!pArray)
712 m_pCurStates->SetLineDash(pArray, GetNumber(0), 1.0f);
    [all...]
  /external/pdfium/core/fpdfapi/render/
cpdf_docrenderdata.cpp 76 if (CPDF_Array* pArray = pObj->AsArray()) {
78 if (pArray->GetCount() < 3)
82 pFuncs[2 - i] = CPDF_Function::Load(pArray->GetDirectObjectAt(i));
  /external/apache-http/src/org/apache/commons/codec/binary/
Base64.java 221 * @param pArray A byte array containing Base64 character data
224 public byte[] decode(byte[] pArray) {
225 return decodeBase64(pArray);
522 * @param pArray a byte array containing binary data
525 public byte[] encode(byte[] pArray) {
526 return encodeBase64(pArray, false);
  /external/pdfium/core/fpdfapi/font/
cpdf_cidfont.h 70 void LoadMetricsArray(CPDF_Array* pArray,
  /external/pdfium/core/fpdfapi/parser/
cpdf_array.h 127 CPDF_Array* pArray = ToArray(obj.get());
128 if (!pArray)
131 return std::unique_ptr<CPDF_Array>(pArray);
  /external/pdfium/fpdfsdk/fpdfxfa/
cpdfxfa_docenvironment.cpp 458 CPDF_Array* pArray = ToArray(pAcroForm->GetObjectFor("XFA"));
459 if (!pArray)
462 int size = pArray->GetCount();
464 CPDF_Object* pPDFObj = pArray->GetObjectAt(i);
465 CPDF_Object* pPrePDFObj = pArray->GetObjectAt(i - 1);
764 CPDF_Array* pArray = ToArray(pAcroForm->GetObjectFor("XFA"));
765 if (!pArray) {
770 int size = pArray->GetCount();
772 CPDF_Object* pPDFObj = pArray->GetObjectAt(i);
773 CPDF_Object* pPrePDFObj = pArray->GetObjectAt(i - 1)
    [all...]
  /prebuilts/tools/common/m2/repository/org/sonatype/plexus/plexus-cipher/1.4/
plexus-cipher-1.4.jar 

Completed in 1253 milliseconds

12 3 4 5