HomeSort by relevance Sort by last modified time
    Searched refs:cf (Results 76 - 100 of 494) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/javax/security/auth/login/
ConfigurationTest.java 238 Configuration cf = Configuration.getInstance("MockType", mcp, mp); local
239 assertEquals("Configuration parameters got should be equals to parameters provided",cf.getParameters(),mcp);
240 assertEquals("Configuration provider got should be equals to provider provided",cf.getProvider(),mp);
241 assertEquals("Configuration type got should be equals to type provided",cf.getType(),"MockType");
266 cf = Configuration.getInstance("MockType", null, mp);
267 assertEquals("MockType", cf.getType());
268 assertNull(cf.getParameters());
278 Configuration cf = Configuration.getInstance("MockType", mcp, "MockProvider"); local
280 assertEquals("Configuration parameters got should be equals to parameters provided",cf.getParameters(),mcp);
281 assertEquals("Configuration provider got should be equals to provider provided",cf.getProvider(),mp)
333 Configuration cf = Configuration.getInstance("MockType", mcp); local
365 Configuration cf = Configuration.getInstance("MockType", mcp, mp); local
376 Configuration cf = Configuration.getInstance("MockType", mcp, mp); local
387 Configuration cf = Configuration.getInstance("MockType", mcp, mp); local
    [all...]
  /dalvik/dx/src/com/android/dx/cf/attrib/
AttCode.java 17 package com.android.dx.cf.attrib;
19 import com.android.dx.cf.code.ByteCatchList;
20 import com.android.dx.cf.code.BytecodeArray;
21 import com.android.dx.cf.iface.AttributeList;
AttRuntimeInvisibleAnnotations.java 17 package com.android.dx.cf.attrib;
AttRuntimeInvisibleParameterAnnotations.java 17 package com.android.dx.cf.attrib;
AttRuntimeVisibleAnnotations.java 17 package com.android.dx.cf.attrib;
AttRuntimeVisibleParameterAnnotations.java 17 package com.android.dx.cf.attrib;
AttSignature.java 17 package com.android.dx.cf.attrib;
AttSourceFile.java 17 package com.android.dx.cf.attrib;
  /dalvik/dx/src/com/android/dx/cf/code/
SimException.java 17 package com.android.dx.cf.code;
  /dalvik/dx/src/com/android/dx/cf/iface/
ParseException.java 17 package com.android.dx.cf.iface;
StdFieldList.java 17 package com.android.dx.cf.iface;
StdMethodList.java 17 package com.android.dx.cf.iface;
StdField.java 17 package com.android.dx.cf.iface;
19 import com.android.dx.cf.attrib.AttConstantValue;
  /dalvik/dx/src/com/android/dx/dex/cf/
CfOptions.java 17 package com.android.dx.dex.cf;
23 * A class to contain options passed into dex.cf
CfTranslator.java 17 package com.android.dx.dex.cf;
20 import com.android.dx.cf.code.ConcreteMethod;
21 import com.android.dx.cf.code.Ropper;
22 import com.android.dx.cf.direct.DirectClassFile;
23 import com.android.dx.cf.iface.Field;
24 import com.android.dx.cf.iface.FieldList;
25 import com.android.dx.cf.iface.Method;
26 import com.android.dx.cf.iface.MethodList;
91 public static ClassDefItem translate(DirectClassFile cf, byte[] bytes,
94 return translate0(cf, bytes, cfOptions, dexOptions, dexFile)
    [all...]
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/serialization/
CertPathTest.java 55 CertificateFactory cf = CertificateFactory.getInstance(certType); local
57 CertPath certPath = cf.generateCertPath(Support_Resources
68 CertificateFactory cf = CertificateFactory.getInstance(certType); local
70 CertPath certPath = cf.generateCertPath(Support_Resources
CertificateTest.java 48 CertificateFactory cf = CertificateFactory.getInstance(certType); local
50 Certificate cert = cf.generateCertificate(new ByteArrayInputStream(
61 CertificateFactory cf = CertificateFactory.getInstance(certType); local
63 Certificate cert = cf.generateCertificate(new ByteArrayInputStream(
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
KeyStore2Test.java 136 CertificateFactory cf = CertificateFactory.getInstance("X.509"); local
138 cert[0] = (X509Certificate) cf.generateCertificate(certArray);
139 cert[1] = (X509Certificate) cf.generateCertificate(certArray2);
165 CertificateFactory cf = CertificateFactory.getInstance("X.509"); local
167 cert[0] = (X509Certificate) cf.generateCertificate(certArray);
168 cert[1] = (X509Certificate) cf.generateCertificate(certArray2);
202 CertificateFactory cf = CertificateFactory.getInstance("X.509"); local
204 cert[0] = (X509Certificate) cf.generateCertificate(certArray);
205 cert[1] = (X509Certificate) cf.generateCertificate(certArray2);
226 CertificateFactory cf = CertificateFactory.getInstance("X.509") local
260 CertificateFactory cf = CertificateFactory.getInstance("X.509"); local
295 CertificateFactory cf = CertificateFactory.getInstance("X.509"); local
359 CertificateFactory cf = CertificateFactory.getInstance("X.509"); local
421 CertificateFactory cf = CertificateFactory.getInstance("X.509"); local
445 CertificateFactory cf = CertificateFactory.getInstance("X.509"); local
510 CertificateFactory cf = CertificateFactory.getInstance("X.509"); local
541 CertificateFactory cf = CertificateFactory.getInstance("X.509"); local
565 CertificateFactory cf = CertificateFactory.getInstance("X.509"); local
583 CertificateFactory cf = CertificateFactory.getInstance("X.509"); local
    [all...]
  /libcore/luni/src/test/java/libcore/java/security/cert/
CertificateFactoryTest.java 168 CertificateFactory cf = CertificateFactory.getInstance("X509", p); local
170 test_generateCertificate(cf);
171 test_generateCertificate_InputStream_Offset_Correct(cf);
172 test_generateCertificate_InputStream_Empty(cf);
173 test_generateCertificate_InputStream_InvalidStart_Failure(cf);
174 test_generateCertificate_AnyLineLength_Success(cf);
181 private void test_generateCertificate(CertificateFactory cf) throws Exception {
184 Certificate c = cf.generateCertificate(new ByteArrayInputStream(valid));
190 Certificate c = cf.generateCertificate(new ByteArrayInputStream(valid));
196 cf.generateCertificate(new ByteArrayInputStream(invalid))
380 final CertificateFactory cf = CertificateFactory.getInstance("X.509", p); local
    [all...]
  /external/skia/gm/
testimagefilters.cpp 27 SkColorFilter* cf = SkColorFilter::CreateModeFilter(SK_ColorBLUE, local
29 SkAutoUnref aur(cf);
30 return SkColorFilterImageFilter::Create(cf);
59 SkColorFilter* cf = SkColorFilter::CreateModeFilter(0x880000FF, local
61 SkAutoUnref aur3(cf);
62 SkImageFilter* blue = SkColorFilterImageFilter::Create(cf);
76 SkColorFilter* cf = SkColorFilter::CreateModeFilter(0x880000FF, local
78 SkAutoUnref aur3(cf);
79 SkImageFilter* blue = SkColorFilterImageFilter::Create(cf);
  /external/chromium_org/chrome_frame/cfinstall/src/stub/
cfinstall.js 12 goog.provide('google.cf.installer.CFInstall');
14 goog.require('google.cf.ChromeFrame');
15 goog.require('google.cf.installer.InlineDelegate');
16 goog.require('google.cf.installer.Installer');
17 goog.require('google.cf.installer.OverlayDelegate');
18 goog.require('google.cf.installer.Prompt');
25 google.cf.installer.CFInstall = function() {
26 this.prompt_ = new google.cf.installer.Prompt();
27 this.chromeFrame_ = new google.cf.ChromeFrame();
28 this.installer_ = new google.cf.installer.Installer
    [all...]
  /dalvik/dx/src/com/android/dx/cf/cst/
ConstantPoolParser.java 17 package com.android.dx.cf.cst;
19 import static com.android.dx.cf.cst.ConstantTags.CONSTANT_Class;
20 import static com.android.dx.cf.cst.ConstantTags.CONSTANT_Double;
21 import static com.android.dx.cf.cst.ConstantTags.CONSTANT_Fieldref;
22 import static com.android.dx.cf.cst.ConstantTags.CONSTANT_Float;
23 import static com.android.dx.cf.cst.ConstantTags.CONSTANT_Integer;
24 import static com.android.dx.cf.cst.ConstantTags.CONSTANT_InterfaceMethodref;
25 import static com.android.dx.cf.cst.ConstantTags.CONSTANT_Long;
26 import static com.android.dx.cf.cst.ConstantTags.CONSTANT_Methodref;
27 import static com.android.dx.cf.cst.ConstantTags.CONSTANT_NameAndType
    [all...]
  /external/javassist/src/main/javassist/compiler/
AccessorMaker.java 48 ClassFile cf = clazz.getClassFile(); // turn on the modified flag. local
50 ConstPool cp = cf.getConstPool();
71 cf.addMethod(minfo);
106 ClassFile cf = clazz.getClassFile(); // turn on the modified flag.
107 accName = findAccessorName(cf);
109 ConstPool cp = cf.getConstPool();
133 cf.addMethod(minfo);
158 ClassFile cf = clazz.getClassFile(); // turn on the modified flag.
159 String accName = findAccessorName(cf);
161 ConstPool cp = cf.getConstPool()
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/
r600_asm.c 216 struct r600_bytecode_cf *cf = CALLOC_STRUCT(r600_bytecode_cf); local
218 if (cf == NULL)
220 LIST_INITHEAD(&cf->list);
221 LIST_INITHEAD(&cf->alu);
222 LIST_INITHEAD(&cf->vtx);
223 LIST_INITHEAD(&cf->tex);
224 return cf;
268 LIST_INITHEAD(&bc->cf);
274 struct r600_bytecode_cf *cf = r600_bytecode_cf(); local
276 if (cf == NULL
1903 struct r600_bytecode_cf *cf; local
2199 struct r600_bytecode_cf *cf = NULL, *next_cf; local
2235 struct r600_bytecode_cf *cf = NULL; local
    [all...]
  /external/mesa3d/src/gallium/drivers/r600/
r600_asm.c 216 struct r600_bytecode_cf *cf = CALLOC_STRUCT(r600_bytecode_cf); local
218 if (cf == NULL)
220 LIST_INITHEAD(&cf->list);
221 LIST_INITHEAD(&cf->alu);
222 LIST_INITHEAD(&cf->vtx);
223 LIST_INITHEAD(&cf->tex);
224 return cf;
268 LIST_INITHEAD(&bc->cf);
274 struct r600_bytecode_cf *cf = r600_bytecode_cf(); local
276 if (cf == NULL
1903 struct r600_bytecode_cf *cf; local
2199 struct r600_bytecode_cf *cf = NULL, *next_cf; local
2235 struct r600_bytecode_cf *cf = NULL; local
    [all...]

Completed in 410 milliseconds

1 2 34 5 6 7 8 91011>>