Searched refs:pArray (Results 1 - 25 of 53) sorted by relevance

123

/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;
/external/pdfium/fpdfsdk/src/
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 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 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);
H A Dfpdf_flatten.cpp140 FX_FLOAT* pArray = new FX_FLOAT[nRects];
146 pArray[i] = CPDF_Rect(array.GetAt(i)).left;
153 pArray[i] = CPDF_Rect(array.GetAt(i)).top;
160 pArray[i] = CPDF_Rect(array.GetAt(i)).right;
167 pArray[i] = CPDF_Rect(array.GetAt(i)).bottom;
174 fRet = pArray[0];
178 if (fRet <= pArray[i])
179 fRet = pArray[i];
184 if (fRet >= pArray[i])
185 fRet = pArray[
[all...]
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);
/external/pdfium/fpdfsdk/src/jsapi/
H A Dfxjs_v8.cpp79 CFX_PtrArray* pArray = (CFX_PtrArray*)isolate->GetData(0); local
80 if(!pArray)
82 pArray = FX_NEW CFX_PtrArray();
83 isolate->SetData(0, pArray);
86 pArray->Add(pObjDef);
87 return pArray->GetSize()-1;
99 CFX_PtrArray* pArray = (CFX_PtrArray*)isolate->GetData(0); local
100 if(!pArray) return 0;
102 if(nObjDefnID<0 || nObjDefnID>= pArray->GetSize()) return 0;
103 CJS_ObjDefintion* pObjDef = (CJS_ObjDefintion*)pArray
119 CFX_PtrArray* pArray = (CFX_PtrArray*)isolate->GetData(0); local
136 CFX_PtrArray* pArray = (CFX_PtrArray*)isolate->GetData(0); local
153 CFX_PtrArray* pArray = (CFX_PtrArray*)isolate->GetData(0); local
173 CFX_PtrArray* pArray = (CFX_PtrArray*)isolate->GetData(0); local
246 CFX_PtrArray* pArray = (CFX_PtrArray*)isolate->GetData(0); local
291 CFX_PtrArray* pArray = (CFX_PtrArray*)isolate->GetData(0); local
371 CFX_PtrArray* pArray = (CFX_PtrArray*)isolate->GetData(0); local
399 CFX_PtrArray* pArray = (CFX_PtrArray*)isolate->GetData(0); local
418 CFX_PtrArray* pArray = (CFX_PtrArray*)isolate->GetData(0); local
448 CFX_PtrArray* pArray = (CFX_PtrArray*)isolate->GetData(0); local
621 JS_PutArrayElement(v8::Handle<v8::Array> pArray,unsigned index,v8::Handle<v8::Value> pValue,FXJSVALUETYPE eType) argument
628 JS_GetArrayElemnet(v8::Handle<v8::Array> pArray,unsigned index) argument
634 JS_GetArrayLength(v8::Handle<v8::Array> pArray) argument
[all...]
/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/pdfium/core/src/fpdfdoc/
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...]
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_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.cpp926 CPDF_Array* pArray = m_pFormDict->GetArray("Fields"); local
927 if (pArray == NULL) {
931 return pArray->GetCount();
936 while (pArray != NULL) {
944 int iCount = pArray->GetCount();
947 pDict = pArray->GetDict(i);
963 pArray = pDict->GetArray("Kids");
968 pArray = pDict->GetArray("Kids");
969 if (pArray == NULL) {
972 return pArray
982 CPDF_Array* pArray = m_pFormDict->GetArray("Fields"); local
1053 CPDF_Array* pArray = m_pFormDict->GetArray("CO"); local
1064 CPDF_Array* pArray = m_pFormDict->GetArray("CO"); local
1079 CPDF_Array* pArray = m_pFormDict->GetArray("CO"); local
[all...]
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);
/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_page/
H A Dfpdf_page_colors.cpp265 virtual FX_BOOL v_Load(CPDF_Document* pDoc, CPDF_Array* pArray);
278 FX_BOOL CPDF_CalGray::v_Load(CPDF_Document* pDoc, CPDF_Array* pArray) argument
280 CPDF_Dictionary* pDict = pArray->GetDict(1);
322 virtual FX_BOOL v_Load(CPDF_Document* pDoc, CPDF_Array* pArray);
337 FX_BOOL CPDF_CalRGB::v_Load(CPDF_Document* pDoc, CPDF_Array* pArray) argument
339 CPDF_Dictionary* pDict = pArray->GetDict(1);
426 virtual FX_BOOL v_Load(CPDF_Document* pDoc, CPDF_Array* pArray);
435 FX_BOOL CPDF_LabCS::v_Load(CPDF_Document* pDoc, CPDF_Array* pArray) argument
437 CPDF_Dictionary* pDict = pArray->GetDict(1);
536 virtual FX_BOOL v_Load(CPDF_Document* pDoc, CPDF_Array* pArray);
577 v_Load(CPDF_Document* pDoc, CPDF_Array* pArray) argument
757 v_Load(CPDF_Document* pDoc, CPDF_Array* pArray) argument
843 v_Load(CPDF_Document* pDoc, CPDF_Array* pArray) argument
905 v_Load(CPDF_Document* pDoc, CPDF_Array* pArray) argument
998 v_Load(CPDF_Document* pDoc, CPDF_Array* pArray) argument
1093 CPDF_Array* pArray = (CPDF_Array*)pObj; local
1341 CPDF_Array* pArray = m_pCS->GetArray(); local
[all...]
H A Dfpdf_page_func.cpp715 CPDF_Array* pArray = pDict->GetArray(FX_BSTRC("Functions")); local
716 if (pArray == NULL) {
719 m_nSubs = pArray->GetCount();
728 CPDF_Object* pSub = pArray->GetElementValue(i);
742 pArray = pDict->GetArray(FX_BSTRC("Bounds"));
743 if (pArray == NULL) {
747 m_pBounds[i + 1] = pArray->GetFloat(i);
751 pArray = pDict->GetArray(FX_BSTRC("Encode"));
752 if (pArray == NULL) {
756 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.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/fpdfapi/fpdf_edit/
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...]
H A Dfpdf_edit_content.cpp129 CPDF_Array* pArray = (CPDF_Array*)pContent; local
130 int iCount = pArray->GetCount();
135 pContent = pArray->GetElement(i);
/external/chromium_org/third_party/mesa/src/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/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/core/src/fpdfapi/fpdf_render/
H A Dfpdf_render_loadimage.cpp484 CPDF_Array* pArray = (CPDF_Array*)pFilter; local
485 if (pArray->GetString(pArray->GetCount() - 1) == FX_BSTRC("JPXDecode")) {
560 CPDF_Array* pArray = (CPDF_Array*)pMask; local
561 if (pArray->GetCount() >= m_nComponents * 2)
564 m_pCompData[i / 2].m_ColorKeyMax = pArray->GetInteger(i);
566 m_pCompData[i / 2].m_ColorKeyMin = pArray->GetInteger(i);
931 CPDF_Array *pArray = (CPDF_Array *) pFilter; local
932 if( pArray->GetString(pArray
[all...]

Completed in 3256 milliseconds

123