Searched defs:getParams (Results 1 - 25 of 44) sorted by relevance

12

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/spec/
H A DECKeySpec.java22 public ECParameterSpec getParams() method in class:ECKeySpec
/external/apache-http/src/org/apache/http/client/
H A DHttpClient.java71 HttpParams getParams() method in interface:HttpClient
/external/javassist/src/main/javassist/compiler/ast/
H A DMethodDecl.java36 public ASTList getParams() { return (ASTList)sublist(2).head(); } method in class:MethodDecl
/external/javassist/src/main/javassist/runtime/
H A DDesc.java66 public static Class[] getParams(String desc) { method in class:Desc
/external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/interfaces/
H A DDHPrivateKeyTest.java73 public DHParameterSpec getParams() { method in class:DHPrivateKeyTest.checkDHPrivateKey
H A DDHPublicKeyTest.java75 public DHParameterSpec getParams() { method in class:DHPublicKeyTest.checkDHPublicKey
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/interfaces/
H A DDSAPrivateKeyTest.java72 public DSAParams getParams() { method in class:DSAPrivateKeyTest.checkDSAPrivateKey
H A DDSAPublicKeyTest.java71 public DSAParams getParams() { method in class:DSAPublicKeyTest.checkDSAPublicKey
H A DECPrivateKeyTest.java69 public ECParameterSpec getParams() { method in class:ECPrivateKeyTest.checkECPrivateKey
H A DECPublicKeyTest.java68 public ECParameterSpec getParams() { method in class:ECPublicKeyTest.checkECPublicKey
/external/chromium_org/tools/json_schema_compiler/
H A Didl_schema_test.py15 def getParams(schema, name): function
34 self.assertEquals(expected, getParams(schema, 'function4'))
38 self.assertEquals(expected, getParams(schema, 'function5'))
42 self.assertEquals(expected, getParams(schema, 'function6'))
49 self.assertEquals(expected, getParams(schema, 'function12'))
57 self.assertEquals(expected, getParams(schema, 'whatever'))
84 self.assertEquals(expected, getParams(schema, 'function13'))
88 self.assertEquals(expected, getParams(schema, 'function14'))
111 getParams(schema, 'function16')[0]['description'])
114 getParams(schem
[all...]
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowAndroidHttpClient.java41 public HttpParams getParams() { method in class:ShadowAndroidHttpClient
42 return httpClient.getParams();
/external/apache-http/src/org/apache/http/
H A DHttpMessage.java183 HttpParams getParams(); method in interface:HttpMessage
/external/apache-http/src/org/apache/http/message/
H A DAbstractHttpMessage.java152 public HttpParams getParams() { method in class:AbstractHttpMessage
/external/apache-http/src/org/apache/http/protocol/
H A DHttpService.java117 public HttpParams getParams() { method in class:HttpService
137 new DefaultedHttpParams(request.getParams(), this.params));
152 new DefaultedHttpParams(response.getParams(), this.params));
161 new DefaultedHttpParams(response.getParams(), this.params));
181 new DefaultedHttpParams(response.getParams(), this.params));
203 new DefaultedHttpParams(response.getParams(), this.params));
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/dh/
H A DBCDHPublicKey.java45 this.dhSpec = key.getParams();
129 public DHParameterSpec getParams() method in class:BCDHPublicKey
164 return this.getY().hashCode() ^ this.getParams().getG().hashCode()
165 ^ this.getParams().getP().hashCode() ^ this.getParams().getL();
179 && this.getParams().getG().equals(other.getParams().getG())
180 && this.getParams().getP().equals(other.getParams().getP())
181 && this.getParams()
[all...]
H A DBCDHPrivateKey.java49 this.dhSpec = key.getParams();
142 public DHParameterSpec getParams() method in class:BCDHPrivateKey
163 && this.getParams().getG().equals(other.getParams().getG())
164 && this.getParams().getP().equals(other.getParams().getP())
165 && this.getParams().getL() == other.getParams().getL();
170 return this.getX().hashCode() ^ this.getParams().getG().hashCode()
171 ^ this.getParams()
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
H A DJCEDHPrivateKey.java49 this.dhSpec = key.getParams();
142 public DHParameterSpec getParams() method in class:JCEDHPrivateKey
H A DJCEDHPublicKey.java44 this.dhSpec = key.getParams();
128 public DHParameterSpec getParams() method in class:JCEDHPublicKey
H A DJDKDSAPublicKey.java42 this.dsaSpec = key.getParams();
117 public DSAParams getParams() method in class:JDKDSAPublicKey
140 return this.getY().hashCode() ^ this.getParams().getG().hashCode()
141 ^ this.getParams().getP().hashCode() ^ this.getParams().getQ().hashCode();
155 && this.getParams().getG().equals(other.getParams().getG())
156 && this.getParams().getP().equals(other.getParams().getP())
157 && this.getParams()
[all...]
H A DJCEECPublicKey.java77 this.ecSpec = spec.getParams();
88 if (spec.getParams() != null) // can be null if implictlyCa
90 ECCurve curve = spec.getParams().getCurve();
91 EllipticCurve ellipticCurve = EC5Util.convertCurve(curve, spec.getParams().getSeed());
93 this.ecSpec = EC5Util.convertSpec(ellipticCurve, spec.getParams());
180 this.ecSpec = key.getParams();
432 public ECParameterSpec getParams() method in class:JCEECPublicKey
H A DJDKDSAPrivateKey.java45 this.dsaSpec = key.getParams();
108 public DSAParams getParams() method in class:JDKDSAPrivateKey
129 && this.getParams().getG().equals(other.getParams().getG())
130 && this.getParams().getP().equals(other.getParams().getP())
131 && this.getParams().getQ().equals(other.getParams().getQ());
136 return this.getX().hashCode() ^ this.getParams().getG().hashCode()
137 ^ this.getParams()
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/dsa/
H A DBCDSAPrivateKey.java43 this.dsaSpec = key.getParams();
97 public DSAParams getParams() method in class:BCDSAPrivateKey
118 && this.getParams().getG().equals(other.getParams().getG())
119 && this.getParams().getP().equals(other.getParams().getP())
120 && this.getParams().getQ().equals(other.getParams().getQ());
125 return this.getX().hashCode() ^ this.getParams().getG().hashCode()
126 ^ this.getParams()
[all...]
H A DBCDSAPublicKey.java41 this.dsaSpec = key.getParams();
109 public DSAParams getParams() method in class:BCDSAPublicKey
132 return this.getY().hashCode() ^ this.getParams().getG().hashCode()
133 ^ this.getParams().getP().hashCode() ^ this.getParams().getQ().hashCode();
147 && this.getParams().getG().equals(other.getParams().getG())
148 && this.getParams().getP().equals(other.getParams().getP())
149 && this.getParams()
[all...]
/external/chromium_org/third_party/skia/include/gpu/
H A DGrTextureAccess.h175 const GrTextureParams& getParams() const { return fParams; } function in class:GrTextureAccess

Completed in 518 milliseconds

12