Searched defs:pObject (Results 1 - 25 of 35) sorted by relevance

12

/external/pdfium/fpdfsdk/include/javascript/
H A DPublicMethods.h13 CJS_PublicMethods(JSFXObject pObject) : CJS_Object(pObject) {}; argument
H A Dconsole.h26 CJS_Console(JSFXObject pObject) : CJS_Object(pObject) {}; argument
H A Devent.h43 CJS_Event(JSFXObject pObject) : CJS_Object(pObject) {}; argument
H A Dreport.h24 CJS_Report(JSFXObject pObject) : CJS_Object(pObject){}; argument
H A Dutil.h32 CJS_Util(JSFXObject pObject) : CJS_Object(pObject) {}; argument
H A DIcon.h32 CJS_Icon(JSFXObject pObject) : CJS_Object(pObject){}; argument
H A Dapp.h33 CJS_TimerObj(JSFXObject pObject) : CJS_Object(pObject) {} argument
183 CJS_App(JSFXObject pObject) : CJS_Object(pObject) {}; argument
H A Dcolor.h54 CJS_Color(JSFXObject pObject) : CJS_Object(pObject) {}; argument
H A Dglobal.h74 CJS_Global(JSFXObject pObject) : CJS_Object(pObject) {}; argument
H A DConsts.h15 CJS_Border(JSFXObject pObject) : CJS_Object(pObject) {}; argument
26 CJS_Display(JSFXObject pObject) : CJS_Object(pObject) {}; argument
37 CJS_Font(JSFXObject pObject) : CJS_Object(pObject) {}; argument
48 CJS_Highlight(JSFXObject pObject) : CJS_Object(pObject) {}; argument
59 CJS_Position(JSFXObject pObject) : CJS_Object(pObject) {}; argument
70 CJS_ScaleHow(JSFXObject pObject) argument
81 CJS_ScaleWhen(JSFXObject pObject) argument
92 CJS_Style(JSFXObject pObject) argument
103 CJS_Zoomtype(JSFXObject pObject) argument
[all...]
H A DDocument.h32 CJS_PrintParamsObj(JSFXObject pObject) : CJS_Object(pObject) {} argument
200 CJS_Document(JSFXObject pObject) : CJS_Object(pObject) {}; argument
/external/apache-http/src/org/apache/commons/codec/
H A DDecoder.java47 * @param pObject an object to "decode"
57 Object decode(Object pObject) throws DecoderException; argument
H A DEncoder.java40 * @param pObject An object ot encode
48 Object encode(Object pObject) throws EncoderException; argument
/external/apache-http/src/org/apache/commons/codec/language/
H A DRefinedSoundex.java113 * @param pObject
120 public Object encode(Object pObject) throws EncoderException { argument
121 if (!(pObject instanceof java.lang.String)) {
124 return soundex((String) pObject);
H A DSoundex.java130 * @param pObject
139 public Object encode(Object pObject) throws EncoderException { argument
140 if (!(pObject instanceof String)) {
143 return soundex((String) pObject);
H A DMetaphone.java357 * @param pObject Object to encode
363 public Object encode(Object pObject) throws EncoderException { argument
364 if (!(pObject instanceof java.lang.String)) {
367 return metaphone((String) pObject);
/external/apache-http/src/org/apache/commons/codec/net/
H A DURLCodec.java305 * @param pObject string to convert to a URL safe form
311 public Object encode(Object pObject) throws EncoderException { argument
312 if (pObject == null) {
314 } else if (pObject instanceof byte[]) {
315 return encode((byte[])pObject);
316 } else if (pObject instanceof String) {
317 return encode((String)pObject);
320 pObject.getClass().getName() + " cannot be URL encoded");
329 * @param pObject URL safe object to convert into its original form
335 public Object decode(Object pObject) throw argument
[all...]
H A DQCodec.java244 * @param pObject
251 public Object encode(Object pObject) throws EncoderException { argument
252 if (pObject == null) {
254 } else if (pObject instanceof String) {
255 return encode((String) pObject);
258 + pObject.getClass().getName()
267 * @param pObject
275 public Object decode(Object pObject) throws DecoderException { argument
276 if (pObject == null) {
278 } else if (pObject instanceo
[all...]
H A DQuotedPrintableCodec.java314 * @param pObject
321 public Object encode(Object pObject) throws EncoderException { argument
322 if (pObject == null) {
324 } else if (pObject instanceof byte[]) {
325 return encode((byte[]) pObject);
326 } else if (pObject instanceof String) {
327 return encode((String) pObject);
330 + pObject.getClass().getName()
339 * @param pObject
346 public Object decode(Object pObject) throw argument
[all...]
/external/apache-http/src/org/apache/commons/codec/binary/
H A DBase64.java204 * @param pObject Object to decode
210 public Object decode(Object pObject) throws DecoderException { argument
211 if (!(pObject instanceof byte[])) {
214 return decode((byte[]) pObject);
504 * @param pObject Object to encode
510 public Object encode(Object pObject) throws EncoderException { argument
511 if (!(pObject instanceof byte[])) {
515 return encode((byte[]) pObject);
/external/pdfium/fpdfsdk/src/javascript/
H A DJS_Object.cpp103 CJS_Object::CJS_Object(JSFXObject pObject) :m_pEmbedObj(NULL) argument
105 v8::Local<v8::Context> context = pObject->CreationContext();
107 m_pObject.Reset(m_pIsolate, pObject);
/external/opencv/cv/src/
H A Dcvposit.cpp70 CvPOSITObject *pObject; local
81 pObject = (CvPOSITObject *) cvAlloc( sizeof( CvPOSITObject ) +
84 if( !pObject )
88 pObject->N = N;
89 pObject->inv_matr = (float *) ((char *) pObject + sizeof( CvPOSITObject ));
90 pObject->obj_vecs = (float *) ((char *) (pObject->inv_matr) + inv_matr_size);
91 pObject->img_vecs = (float *) ((char *) (pObject
112 icvPOSIT( CvPOSITObject *pObject, CvPoint2D32f *imagePoints, float focalLength, CvTermCriteria criteria, CvMatr32f rotation, CvVect32f translation ) argument
337 CvPOSITObject *pObject = 0; local
352 cvPOSIT( CvPOSITObject * pObject, CvPoint2D32f * imagePoints, double focalLength, CvTermCriteria criteria, CvMatr32f rotation, CvVect32f translation ) argument
[all...]
/external/pdfium/core/src/fpdfdoc/
H A Ddoc_ocg.cpp8 static FX_INT32 FPDFDOC_OCG_FindGroup(const CPDF_Object *pObject, const CPDF_Dictionary *pGroupDict) argument
10 if (pObject == NULL || pGroupDict == NULL) {
13 FX_INT32 iType = pObject->GetType();
15 FX_DWORD dwCount = ((CPDF_Array*)pObject)->GetCount();
17 if (((CPDF_Array*)pObject)->GetDict(i) == pGroupDict) {
23 if (pObject->GetDict() == pGroupDict) {
/external/pdfium/fpdfsdk/src/formfiller/
H A DFFL_CBA_Fontmap.cpp182 CPDF_Object* pObject = pAPDict->GetElement(m_sAPType); local
183 if (pObject && pObject->GetType() == PDFOBJ_DICTIONARY)
/external/pdfium/core/src/fpdfapi/fpdf_page/
H A Dfpdf_page_parser_new.cpp325 void CPDF_StreamContentParser::AddContainer(CPDF_Object* pObject) argument
328 m_pObjectState[m_ObjectSize] = SetToCurObj(pObject);
331 m_pObjectStack[m_ObjectSize++] = pObject;
333 FX_BOOL CPDF_StreamContentParser::SetToCurObj(CPDF_Object* pObject)
336 AddObjectParam(pObject);
342 ((CPDF_Array*)pCurObj)->Add(pObject, m_pDocument);
345 ((CPDF_Dictionary*)pCurObj)->SetAt((FX_LPCSTR)m_pDictName, pObject, m_pDocument);

Completed in 597 milliseconds

12