Searched defs:pArray (Results 1 - 25 of 50) sorted by relevance

12

/external/apache-http/src/org/apache/commons/codec/
H A DBinaryDecoder.java35 * @param pArray A byte array which has been encoded with the
44 byte[] decode(byte[] pArray) throws DecoderException; argument
H A DBinaryEncoder.java36 * @param pArray Data to be encoded
44 byte[] encode(byte[] pArray) throws EncoderException; argument
/external/pdfium/core/include/fxcrt/
H A Dfx_ext.h83 void ShellSort(baseType *pArray, FX_INT32 iCount) argument
85 FXSYS_assert(pArray != NULL && iCount > 0);
92 v1 = pArray[i];
93 while (j > -1 && (v2 = pArray[j]) > v1) {
94 pArray[j + gap] = v2;
97 pArray[j + gap] = v1;
H A Dfx_coordinates.h624 CFX_FloatRect(const FX_FLOAT* pArray) argument
626 left = pArray[0];
627 bottom = pArray[1];
628 right = pArray[2];
629 top = pArray[3];
/external/pdfium/fpdfsdk/src/formfiller/
H A DFFL_Utils.cpp72 CPDF_Array* pArray = (CPDF_Array*)pObj; local
73 for (FX_DWORD i = 0; i < pArray->GetCount(); i ++)
75 CPDF_Object* pElement = pArray->GetElementValue(i);
/external/apache-http/src/org/apache/commons/codec/binary/
H A DBase64.java221 * @param pArray A byte array containing Base64 character data
224 public byte[] decode(byte[] pArray) { argument
225 return decodeBase64(pArray);
522 * @param pArray a byte array containing binary data
525 public byte[] encode(byte[] pArray) { argument
526 return encodeBase64(pArray, false);
/external/pdfium/core/src/fpdfapi/fpdf_edit/
H A Dfpdf_edit_content.cpp129 CPDF_Array* pArray = (CPDF_Array*)pContent; local
130 int iCount = pArray->GetCount();
135 pContent = pArray->GetElement(i);
H A Dfpdf_edit_image.cpp128 CPDF_Array* pArray = FX_NEW CPDF_Array; local
129 pArray->AddInteger(1);
130 pArray->AddInteger(0);
131 pDict->SetAt(FX_BSTRC("Decode"), pArray);
H A Dfpdf_edit_doc.cpp313 CPDF_Array* pArray = FX_NEW CPDF_Array; local
314 pArray->AddInteger(128);
319 pArray->AddName(FX_BSTRC(".notdef"));
321 pArray->AddName(name);
324 pEncoding->SetAt(FX_BSTRC("Differences"), pArray);
403 CPDF_Array* pArray = FX_NEW CPDF_Array; local
404 pBaseDict->SetAt("DescendantFonts", pArray);
406 pArray->AddReference(this, pFontDict);
700 CPDF_Array* pArray = FX_NEW CPDF_Array; local
701 pArray
736 CPDF_Array* pArray = NULL; local
925 CPDF_Array* pArray = FX_NEW CPDF_Array; local
1012 CPDF_Array* pArray = FX_NEW CPDF_Array; local
[all...]
/external/chromium_org/third_party/sqlite/src/src/
H A Dtest_intarray.c297 sqlite3_intarray *pArray; local
308 rc = sqlite3_intarray_create(db, zName, &pArray);
311 assert( pArray==0 );
315 sqlite3TestMakePointerStr(interp, zPtr, pArray);
331 sqlite3_intarray *pArray; local
340 pArray = (sqlite3_intarray*)sqlite3TestTextToPtr(Tcl_GetString(objv[1]));
352 rc = sqlite3_intarray_bind(pArray, n, a, sqlite3_free);
/external/pdfium/core/src/fpdfapi/fpdf_parser/
H A Dfpdf_parser_document.cpp344 CPDF_Array* pArray = (CPDF_Array*)pContents->GetDirect(); local
345 for (FX_DWORD j = 0; j < pArray->GetCount(); j ++) {
346 CPDF_Reference* pRef = (CPDF_Reference*)pArray->GetElement(j);
H A Dfpdf_parser_objects.cpp773 CPDF_Array* pArray = GetArray(key); local
774 if (pArray) {
775 rect = pArray->GetRect();
782 CPDF_Array* pArray = GetArray(key); local
783 if (pArray) {
784 matrix = pArray->GetMatrix();
901 CPDF_Array* pArray = FX_NEW CPDF_Array; local
902 pArray->AddNumber(rect.left);
903 pArray->AddNumber(rect.bottom);
904 pArray
910 CPDF_Array* pArray = FX_NEW CPDF_Array; local
[all...]
/external/pdfium/core/src/fpdfdoc/
H A Ddoc_action.cpp145 CPDF_Array* pArray = (CPDF_Array*)pFields; local
146 FX_DWORD iCount = pArray->GetCount();
148 CPDF_Object* pObj = pArray->GetElementValue(i);
H A Ddoc_ocg.cpp112 CPDF_Array *pArray = pConfig->GetArray(FX_BSTRC("ON")); local
113 if (pArray) {
114 if (FPDFDOC_OCG_FindGroup(pArray, pOCGDict) >= 0) {
118 pArray = pConfig->GetArray(FX_BSTRC("OFF"));
119 if (pArray) {
120 if (FPDFDOC_OCG_FindGroup(pArray, pOCGDict) >= 0) {
124 pArray = pConfig->GetArray(FX_BSTRC("AS"));
125 if (pArray) {
127 FX_INT32 iCount = pArray->GetCount();
129 CPDF_Dictionary *pUsage = pArray
[all...]
H A Ddoc_tagged.cpp79 CPDF_Array* pArray = (CPDF_Array*)pKids; local
80 for (FX_DWORD i = 0; i < pArray->GetCount(); i ++) {
81 CPDF_Dictionary* pKid = pArray->GetDict(i);
255 CPDF_Array* pArray = (CPDF_Array*)pKids; local
256 m_Kids.SetSize(pArray->GetCount());
257 for (FX_DWORD i = 0; i < pArray->GetCount(); i ++) {
258 CPDF_Object* pKid = pArray->GetElementValue(i);
339 CPDF_Array* pArray = (CPDF_Array*)pAttrs; local
340 for (FX_DWORD i = 0; i < pArray->GetCount(); i ++) {
341 CPDF_Object* pElement = pArray
387 CPDF_Array* pArray = (CPDF_Array*)pC; local
410 CPDF_Array* pArray = (CPDF_Array*)pAttr; local
430 CPDF_Array* pArray = (CPDF_Array*)pAttr; local
[all...]
H A Ddoc_formfield.cpp575 CPDF_Array* pArray = (CPDF_Array*)pValue; local
583 for (FX_DWORD i = 0; i < pArray->GetCount(); i ++)
584 if (pArray->GetElementValue(i)->GetUnicodeText() == opt_value && (int)i == iPos) {
618 CPDF_Array* pArray = CPDF_Array::Create(); local
619 if (pArray == NULL) {
627 pArray->AddString(PDF_EncodeText(opt_value));
631 if (pArray->GetCount() < 1) {
632 pArray->Release();
634 m_pDict->SetAt("V", pArray);
648 CPDF_Array* pArray local
925 CPDF_Array* pArray = pObj->GetArray(); local
937 CPDF_Array* pArray = pObj->GetArray(); local
953 CPDF_Array* pArray = pObj->GetArray(); local
967 CPDF_Array* pArray = m_pDict->GetArray("I"); local
[all...]
/external/pdfium/fpdfsdk/src/
H A Dfpdf_ext.cpp183 CPDF_Array * pArray = pJSDict->GetArray("Names"); local
184 if (pArray) {
185 int nCount = pArray->GetCount();
188 CFX_ByteString cbStr = pArray->GetString(i);
H A Dfpdf_transformpage.cpp49 CPDF_Array* pArray = pPageDict->GetArray("MediaBox"); local
50 if(pArray)
52 *left = pArray->GetFloat(0);
53 *bottom = pArray->GetFloat(1);
54 *right = pArray->GetFloat(2);
55 *top = pArray->GetFloat(3);
67 CPDF_Array* pArray = pPageDict->GetArray("CropBox"); local
68 if(pArray)
70 *left = pArray->GetFloat(0);
71 *bottom = pArray
[all...]
H A Dfpdfdoc.cpp207 CPDF_Array* pArray = pAnnotDict->GetArray(FX_BSTRC("QuadPoints")); local
208 if (pArray == NULL)
211 return pArray->GetCount() / 8;
219 CPDF_Array* pArray = pAnnotDict->GetArray(FX_BSTRC("QuadPoints")); local
220 if (pArray) {
221 if (0 > quadIndex || quadIndex >= (int)pArray->GetCount()/8 ||
222 ((quadIndex*8+7) >= (int)pArray->GetCount())) return FALSE;
223 quadPoints->x1 = pArray->GetNumber(quadIndex*8);
224 quadPoints->y1 = pArray->GetNumber(quadIndex*8+1);
225 quadPoints->x2 = pArray
[all...]
H A Dfpdfppo.cpp144 CPDF_Array* pArray = new CPDF_Array; local
145 pArray->AddNumber(0);
146 pArray->AddNumber(0);
147 pArray->AddNumber(612);
148 pArray->AddNumber(792);
149 pCurPageDict->SetAt("MediaBox", pArray);
262 CPDF_Array* pArray = (CPDF_Array*)pObj; local
263 FX_DWORD count = pArray->GetCount();
266 CPDF_Object* pNextObj = pArray->GetElement(i);
/external/pdfium/core/src/fpdfapi/fpdf_page/
H A Dfpdf_page_parser_new.cpp359 CPDF_Array* pArray = FX_NEW CPDF_Array; local
360 AddContainer(pArray);
H A Dfpdf_page_doc.cpp401 CPDF_Array* pArray = (CPDF_Array*)pCSObj; local
402 if (pArray->GetCount() == 0) {
405 if (pArray->GetCount() == 1) {
406 return GetColorSpace(pArray->GetElementValue(0), pResources);
423 CPDF_ColorSpace* pCS = CPDF_ColorSpace::Load(m_pPDFDoc, pArray);
H A Dfpdf_page_parser_old.cpp628 CPDF_Array* pArray = CPDF_Array::Create(); local
633 return pArray;
639 pArray->Add(pObj);
958 CPDF_Array* pArray = (CPDF_Array*)pContent; local
959 m_nStreams = pArray->GetCount();
H A Dfpdf_page_graph_state.cpp469 void CPDF_AllStates::SetLineDash(CPDF_Array* pArray, FX_FLOAT phase, FX_FLOAT scale) argument
473 pData->SetDashCount(pArray->GetCount());
474 for (FX_DWORD i = 0; i < pArray->GetCount(); i ++) {
475 pData->m_DashArray[i] = FXSYS_Mul(pArray->GetNumber(i), scale);
507 CPDF_Array* pArray = pDash->GetArray(0); local
508 if (pArray == NULL) {
511 SetLineDash(pArray, pDash->GetNumber(1), 1.0f);
/external/pdfium/fpdfsdk/src/javascript/
H A DJS_Value.cpp459 void CJS_Array::Attach(v8::Handle<v8::Array> pArray) argument
461 m_pArray = pArray;

Completed in 1328 milliseconds

12