Searched refs:pArray (Results 1 - 25 of 48) 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.h73 void ShellSort(baseType *pArray, FX_INT32 iCount) argument
75 FXSYS_assert(pArray != NULL && iCount > 0);
82 v1 = pArray[i];
83 while (j > -1 && (v2 = pArray[j]) > v1) {
84 pArray[j + gap] = v2;
87 pArray[j + gap] = v1;
/external/pdfium/fpdfsdk/src/
H A Dfpdfdoc.cpp249 CPDF_Array* pArray = pAnnotDict->GetArray(FX_BSTRC("QuadPoints")); local
250 if (!pArray)
253 return pArray->GetCount() / 8;
261 CPDF_Array* pArray = pAnnotDict->GetArray(FX_BSTRC("QuadPoints")); local
262 if (pArray) {
263 if (quadIndex < 0 || quadIndex >= (int)pArray->GetCount()/8 || ((quadIndex*8+7) >= (int)pArray->GetCount()))
265 quadPoints->x1 = pArray->GetNumber(quadIndex*8);
266 quadPoints->y1 = pArray->GetNumber(quadIndex*8+1);
267 quadPoints->x2 = pArray
[all...]
H A Dfpdf_transformpage.cpp48 CPDF_Array* pArray = pPageDict->GetArray("MediaBox"); local
49 if(pArray)
51 *left = pArray->GetFloat(0);
52 *bottom = pArray->GetFloat(1);
53 *right = pArray->GetFloat(2);
54 *top = pArray->GetFloat(3);
66 CPDF_Array* pArray = pPageDict->GetArray("CropBox"); local
67 if(pArray)
69 *left = pArray->GetFloat(0);
70 *bottom = pArray
[all...]
H A Dfpdfppo.cpp139 CPDF_Array* pArray = new CPDF_Array; local
140 pArray->AddNumber(0);
141 pArray->AddNumber(0);
142 pArray->AddNumber(612);
143 pArray->AddNumber(792);
144 pCurPageDict->SetAt("MediaBox", pArray);
260 CPDF_Array* pArray = (CPDF_Array*)pObj; local
261 FX_DWORD count = pArray->GetCount();
264 CPDF_Object* pNextObj = pArray->GetElement(i);
H A Dfpdf_flatten.cpp137 FX_FLOAT* pArray = new FX_FLOAT[nRects];
143 pArray[i] = CPDF_Rect(array.GetAt(i)).left;
150 pArray[i] = CPDF_Rect(array.GetAt(i)).top;
157 pArray[i] = CPDF_Rect(array.GetAt(i)).right;
164 pArray[i] = CPDF_Rect(array.GetAt(i)).bottom;
171 fRet = pArray[0];
175 if (fRet <= pArray[i])
176 fRet = pArray[i];
181 if (fRet >= pArray[i])
182 fRet = pArray[
[all...]
H A Dfpdf_ext.cpp183 CPDF_Array * pArray = pJSDict ? pJSDict->GetArray("Names") : NULL; local
184 if (pArray) {
185 int nCount = pArray->GetCount();
188 CFX_ByteString cbStr = pArray->GetString(i);
/external/pdfium/core/src/fpdfdoc/
H A Ddoc_formfield.cpp578 CPDF_Array* pArray = (CPDF_Array*)pValue; local
586 for (FX_DWORD i = 0; i < pArray->GetCount(); i ++)
587 if (pArray->GetElementValue(i)->GetUnicodeText() == opt_value && (int)i == iPos) {
621 CPDF_Array* pArray = CPDF_Array::Create(); local
622 if (pArray == NULL) {
630 pArray->AddString(PDF_EncodeText(opt_value));
634 if (pArray->GetCount() < 1) {
635 pArray->Release();
637 m_pDict->SetAt("V", pArray);
651 CPDF_Array* pArray local
928 CPDF_Array* pArray = pObj->GetArray(); local
940 CPDF_Array* pArray = pObj->GetArray(); local
956 CPDF_Array* pArray = pObj->GetArray(); local
970 CPDF_Array* pArray = m_pDict->GetArray("I"); local
[all...]
H A Ddoc_tagged.cpp70 CPDF_Array* pArray = (CPDF_Array*)pKids; local
71 for (FX_DWORD i = 0; i < pArray->GetCount(); i ++) {
72 CPDF_Dictionary* pKid = pArray->GetDict(i);
245 CPDF_Array* pArray = (CPDF_Array*)pKids; local
246 m_Kids.SetSize(pArray->GetCount());
247 for (FX_DWORD i = 0; i < pArray->GetCount(); i ++) {
248 CPDF_Object* pKid = pArray->GetElementValue(i);
329 CPDF_Array* pArray = (CPDF_Array*)pAttrs; local
330 for (FX_DWORD i = 0; i < pArray->GetCount(); i ++) {
331 CPDF_Object* pElement = pArray
377 CPDF_Array* pArray = (CPDF_Array*)pC; local
400 CPDF_Array* pArray = (CPDF_Array*)pAttr; local
420 CPDF_Array* pArray = (CPDF_Array*)pAttr; local
[all...]
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_form.cpp905 CPDF_Array* pArray = m_pFormDict->GetArray("Fields"); local
906 if (pArray == NULL) {
910 return pArray->GetCount();
915 while (pArray != NULL) {
923 int iCount = pArray->GetCount();
926 pDict = pArray->GetDict(i);
942 pArray = pDict->GetArray("Kids");
947 pArray = pDict->GetArray("Kids");
948 if (pArray == NULL) {
951 return pArray
961 CPDF_Array* pArray = m_pFormDict->GetArray("Fields"); local
1032 CPDF_Array* pArray = m_pFormDict->GetArray("CO"); local
1043 CPDF_Array* pArray = m_pFormDict->GetArray("CO"); local
1058 CPDF_Array* pArray = m_pFormDict->GetArray("CO"); local
[all...]
H A Ddoc_action.cpp146 CPDF_Array* pArray = (CPDF_Array*)pFields; local
147 FX_DWORD iCount = pArray->GetCount();
149 CPDF_Object* pObj = pArray->GetElementValue(i);
274 CPDF_Array* pArray = static_cast<CPDF_Array*>(pNext); local
275 return CPDF_Action(pArray->GetDict(iIndex));
/external/pdfium/fpdfsdk/src/jsapi/
H A Dfxjs_v8.cpp82 CFX_PtrArray* pArray = (CFX_PtrArray*)isolate->GetData(0); local
83 if(!pArray)
85 pArray = new CFX_PtrArray();
86 isolate->SetData(0, pArray);
89 pArray->Add(pObjDef);
90 return pArray->GetSize()-1;
102 CFX_PtrArray* pArray = (CFX_PtrArray*)isolate->GetData(0); local
103 if(!pArray) return 0;
105 if(nObjDefnID<0 || nObjDefnID>= pArray->GetSize()) return 0;
106 CJS_ObjDefintion* pObjDef = (CJS_ObjDefintion*)pArray
122 CFX_PtrArray* pArray = (CFX_PtrArray*)isolate->GetData(0); local
139 CFX_PtrArray* pArray = (CFX_PtrArray*)isolate->GetData(0); local
156 CFX_PtrArray* pArray = (CFX_PtrArray*)isolate->GetData(0); local
176 CFX_PtrArray* pArray = (CFX_PtrArray*)isolate->GetData(0); local
249 CFX_PtrArray* pArray = (CFX_PtrArray*)isolate->GetData(0); local
293 CFX_PtrArray* pArray = (CFX_PtrArray*)isolate->GetData(0); local
375 CFX_PtrArray* pArray = (CFX_PtrArray*)isolate->GetData(0); local
401 CFX_PtrArray* pArray = (CFX_PtrArray*)isolate->GetData(0); local
420 CFX_PtrArray* pArray = (CFX_PtrArray*)isolate->GetData(0); local
449 CFX_PtrArray* pArray = (CFX_PtrArray*)isolate->GetData(0); local
627 JS_PutArrayElement(IJS_Runtime* pJSRuntime, v8::Local<v8::Array> pArray,unsigned index,v8::Local<v8::Value> pValue,FXJSVALUETYPE eType) argument
634 JS_GetArrayElement(IJS_Runtime* pJSRuntime, v8::Local<v8::Array> pArray,unsigned index) argument
642 JS_GetArrayLength(v8::Local<v8::Array> pArray) argument
[all...]
/external/pdfium/fpdfsdk/src/formfiller/
H A DFFL_Utils.cpp53 CPDF_Array* pArray = (CPDF_Array*)pObj; local
54 for (FX_DWORD i = 0; i < pArray->GetCount(); i ++)
56 CPDF_Object* pElement = pArray->GetElementValue(i);
/external/pdfium/core/src/fpdfapi/fpdf_page/
H A Dfpdf_page_colors.cpp268 virtual FX_BOOL v_Load(CPDF_Document* pDoc, CPDF_Array* pArray);
281 FX_BOOL CPDF_CalGray::v_Load(CPDF_Document* pDoc, CPDF_Array* pArray) argument
283 CPDF_Dictionary* pDict = pArray->GetDict(1);
325 virtual FX_BOOL v_Load(CPDF_Document* pDoc, CPDF_Array* pArray);
340 FX_BOOL CPDF_CalRGB::v_Load(CPDF_Document* pDoc, CPDF_Array* pArray) argument
342 CPDF_Dictionary* pDict = pArray->GetDict(1);
429 virtual FX_BOOL v_Load(CPDF_Document* pDoc, CPDF_Array* pArray);
438 FX_BOOL CPDF_LabCS::v_Load(CPDF_Document* pDoc, CPDF_Array* pArray) argument
440 CPDF_Dictionary* pDict = pArray->GetDict(1);
548 virtual FX_BOOL v_Load(CPDF_Document* pDoc, CPDF_Array* pArray);
[all...]
H A Dfpdf_page_func.cpp735 CPDF_Array* pArray = pDict->GetArray(FX_BSTRC("Functions")); local
736 if (pArray == NULL) {
739 m_nSubs = pArray->GetCount();
747 CPDF_Object* pSub = pArray->GetElementValue(i);
761 pArray = pDict->GetArray(FX_BSTRC("Bounds"));
762 if (pArray == NULL) {
766 m_pBounds[i + 1] = pArray->GetFloat(i);
770 pArray = pDict->GetArray(FX_BSTRC("Encode"));
771 if (pArray == NULL) {
775 m_pEncode[i] = pArray
[all...]
/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_parser/
H A Dfpdf_parser_objects.cpp722 CPDF_Array* pArray = GetArray(key); local
723 if (pArray) {
724 rect = pArray->GetRect();
731 CPDF_Array* pArray = GetArray(key); local
732 if (pArray) {
733 matrix = pArray->GetMatrix();
842 CPDF_Array* pArray = new CPDF_Array; local
843 pArray->AddNumber(rect.left);
844 pArray->AddNumber(rect.bottom);
845 pArray
851 CPDF_Array* pArray = new CPDF_Array; local
[all...]
/external/pdfium/core/src/fpdfapi/fpdf_edit/
H A Dfpdf_edit_doc.cpp313 CPDF_Array* pArray = 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 = new CPDF_Array; local
404 pBaseDict->SetAt("DescendantFonts", pArray);
406 pArray->AddReference(this, pFontDict);
698 CPDF_Array* pArray = new CPDF_Array; local
699 pArray
734 CPDF_Array* pArray = NULL; local
923 CPDF_Array* pArray = new CPDF_Array; local
1010 CPDF_Array* pArray = new CPDF_Array; local
[all...]
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.cpp122 CPDF_Array* pArray = new CPDF_Array; local
123 pArray->AddInteger(1);
124 pArray->AddInteger(0);
125 pDict->SetAt(FX_BSTRC("Decode"), pArray);
/external/mesa3d/src/gallium/state_trackers/d3d1x/dxgi/src/
H A Ddxgi_native.cpp552 const DXGI_GAMMA_CONTROL *pArray)
556 *gamma = *pArray;
561 DXGI_GAMMA_CONTROL *pArray)
564 *pArray = *gamma;
567 pArray->Scale.Red = 1;
568 pArray->Scale.Green = 1;
569 pArray->Scale.Blue = 1;
570 pArray->Offset.Red = 0;
571 pArray->Offset.Green = 0;
572 pArray
551 SetGammaControl( const DXGI_GAMMA_CONTROL *pArray) argument
560 GetGammaControl( DXGI_GAMMA_CONTROL *pArray) argument
[all...]
/external/pdfium/fpdfsdk/include/jsapi/
H A Dfxjs_v8.h97 unsigned JS_PutArrayElement(IJS_Runtime* pJSRuntime, v8::Local<v8::Array> pArray,unsigned index,v8::Local<v8::Value> pValue,FXJSVALUETYPE eType);
98 v8::Local<v8::Value> JS_GetArrayElement(IJS_Runtime* pJSRuntime, v8::Local<v8::Array> pArray,unsigned index);
99 unsigned JS_GetArrayLength(v8::Local<v8::Array> pArray);
/external/pdfium/core/src/fpdfapi/fpdf_render/
H A Dfpdf_render_pattern.cpp27 CPDF_Array* pArray = pDict->GetArray(FX_BSTRC("Domain")); local
28 if (pArray) {
29 t_min = pArray->GetNumber(0);
30 t_max = pArray->GetNumber(1);
33 pArray = pDict->GetArray(FX_BSTRC("Extend"));
34 if (pArray) {
35 bStartExtend = pArray->GetInteger(0);
36 bEndExtend = pArray->GetInteger(1);
114 CPDF_Array* pArray = pDict->GetArray(FX_BSTRC("Domain")); local
115 if (pArray) {
[all...]

Completed in 372 milliseconds

12