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

/external/apache-http/src/org/apache/commons/codec/
H A DDecoder.java42 * @param pObject an object to "decode"
52 Object decode(Object pObject) throws DecoderException; argument
H A DEncoder.java35 * @param pObject An object ot encode
43 Object encode(Object pObject) throws EncoderException; argument
/external/apache-http/src/org/apache/commons/codec/language/
H A DRefinedSoundex.java108 * @param pObject
115 public Object encode(Object pObject) throws EncoderException { argument
116 if (!(pObject instanceof java.lang.String)) {
119 return soundex((String) pObject);
H A DSoundex.java125 * @param pObject
134 public Object encode(Object pObject) throws EncoderException { argument
135 if (!(pObject instanceof String)) {
138 return soundex((String) pObject);
H A DMetaphone.java352 * @param pObject Object to encode
358 public Object encode(Object pObject) throws EncoderException { argument
359 if (!(pObject instanceof java.lang.String)) {
362 return metaphone((String) pObject);
/external/apache-http/src/org/apache/commons/codec/net/
H A DURLCodec.java300 * @param pObject string to convert to a URL safe form
306 public Object encode(Object pObject) throws EncoderException { argument
307 if (pObject == null) {
309 } else if (pObject instanceof byte[]) {
310 return encode((byte[])pObject);
311 } else if (pObject instanceof String) {
312 return encode((String)pObject);
315 pObject.getClass().getName() + " cannot be URL encoded");
324 * @param pObject URL safe object to convert into its original form
330 public Object decode(Object pObject) throw argument
[all...]
H A DQCodec.java239 * @param pObject
246 public Object encode(Object pObject) throws EncoderException { argument
247 if (pObject == null) {
249 } else if (pObject instanceof String) {
250 return encode((String) pObject);
253 + pObject.getClass().getName()
262 * @param pObject
270 public Object decode(Object pObject) throws DecoderException { argument
271 if (pObject == null) {
273 } else if (pObject instanceo
[all...]
H A DQuotedPrintableCodec.java309 * @param pObject
316 public Object encode(Object pObject) throws EncoderException { argument
317 if (pObject == null) {
319 } else if (pObject instanceof byte[]) {
320 return encode((byte[]) pObject);
321 } else if (pObject instanceof String) {
322 return encode((String) pObject);
325 + pObject.getClass().getName()
334 * @param pObject
341 public Object decode(Object pObject) throw argument
[all...]
/external/apache-http/src/org/apache/commons/codec/binary/
H A DBase64.java199 * @param pObject Object to decode
205 public Object decode(Object pObject) throws DecoderException { argument
206 if (!(pObject instanceof byte[])) {
209 return decode((byte[]) pObject);
499 * @param pObject Object to encode
505 public Object encode(Object pObject) throws EncoderException { argument
506 if (!(pObject instanceof byte[])) {
510 return encode((byte[]) 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/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.apache.commons.codec_1.3.0.v20100518-1140.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.apache.commons.el_1.0.0.v201004212143.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/robolectric/lib/main/
H A Dcommons-codec-1.6.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/commons/ org/apache/commons/codec/ ...

Completed in 299 milliseconds