Searched refs:ca (Results 1 - 25 of 159) sorted by relevance

1234567

/external/clang/test/CXX/over/over.built/
H A Dp25.cpp13 Color foo(bool cond, ConvertsToColorA ca, ConvertsToColorB cb) { argument
14 return cond? ca : cb;
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/
H A DCFlatButton.java70 Rectangle ca = getClientArea();
74 gc.drawRectangle(ca.x, ca.y, ca.width - 1, ca.height - 1);
75 cropClientArea(ca);
79 gc.fillGradientRectangle(ca.x, ca.y, ca.width, ca
137 cropClientArea(Rectangle ca) argument
[all...]
/external/jsilver/src/com/google/clearsilver/jsilver/functions/html/
H A DBaseUrlValidateFunction.java86 char[] ca = string.toCharArray();
87 for (int i = 0; i < ca.length; i++) {
88 char ch = ca[i];
89 ca[i] =
94 return new String(ca);
/external/javassist/src/main/javassist/
H A DCtConstructor.java151 CodeAttribute ca = getMethodInfo2().getCodeAttribute();
152 if (ca == null)
156 ConstPool cp = ca.getConstPool();
157 CodeIterator it = ca.iterator();
252 CodeAttribute ca = methodInfo.getCodeAttribute();
253 CodeIterator iterator = ca.iterator();
255 ca.getMaxStack(), ca.getMaxLocals());
256 b.setStackDepth(ca.getMaxStack());
261 ca
282 getStartPosOfBody(CodeAttribute ca) argument
371 removeConsCall(CodeAttribute ca) argument
[all...]
H A DCtBehavior.java428 CodeAttribute ca = (CodeAttribute)cattr.copy(cp, map);
429 destInfo.setCodeAttribute(ca);
547 CodeAttribute ca = methodInfo.getCodeAttribute();
548 if (ca == null)
551 LocalVariableAttribute va = (LocalVariableAttribute)ca.getAttribute(
555 ca.getAttributes().add(va);
558 int maxLocals = ca.getMaxLocals();
560 va.addEntry(0, ca.getCodeLength(),
562 ca.setMaxLocals(maxLocals + Descriptor.dataSize(desc));
607 CodeAttribute ca
1049 getStartPosOfBody(CodeAttribute ca) argument
[all...]
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/
H A DX509CRLEntryHolder.java20 private GeneralNames ca; field in class:X509CRLEntryHolder
25 this.ca = previousCA;
33 ca = GeneralNames.getInstance(currentCaName.getParsedValue());
80 return this.ca;
/external/javassist/src/main/javassist/convert/
H A DTransformWriteField.java39 CodeAttribute ca = iterator.get();
48 ca.setMaxStack(ca.getMaxStack() + 2);
55 ca.setMaxStack(ca.getMaxStack() + 1);
/external/openssl/crypto/x509v3/
H A Dv3_purp.c67 static int check_purpose_ssl_client(const X509_PURPOSE *xp, const X509 *x, int ca);
68 static int check_purpose_ssl_server(const X509_PURPOSE *xp, const X509 *x, int ca);
69 static int check_purpose_ns_ssl_server(const X509_PURPOSE *xp, const X509 *x, int ca);
70 static int purpose_smime(const X509 *x, int ca);
71 static int check_purpose_smime_sign(const X509_PURPOSE *xp, const X509 *x, int ca);
72 static int check_purpose_smime_encrypt(const X509_PURPOSE *xp, const X509 *x, int ca);
73 static int check_purpose_crl_sign(const X509_PURPOSE *xp, const X509 *x, int ca);
74 static int check_purpose_timestamp_sign(const X509_PURPOSE *xp, const X509 *x, int ca);
75 static int no_check(const X509_PURPOSE *xp, const X509 *x, int ca);
76 static int ocsp_helper(const X509_PURPOSE *xp, const X509 *x, int ca);
109 X509_check_purpose(X509 *x, int id, int ca) argument
552 check_purpose_ssl_client(const X509_PURPOSE *xp, const X509 *x, int ca) argument
563 check_purpose_ssl_server(const X509_PURPOSE *xp, const X509 *x, int ca) argument
576 check_purpose_ns_ssl_server(const X509_PURPOSE *xp, const X509 *x, int ca) argument
587 purpose_smime(const X509 *x, int ca) argument
607 check_purpose_smime_sign(const X509_PURPOSE *xp, const X509 *x, int ca) argument
616 check_purpose_smime_encrypt(const X509_PURPOSE *xp, const X509 *x, int ca) argument
625 check_purpose_crl_sign(const X509_PURPOSE *xp, const X509 *x, int ca) argument
640 ocsp_helper(const X509_PURPOSE *xp, const X509 *x, int ca) argument
649 check_purpose_timestamp_sign(const X509_PURPOSE *xp, const X509 *x, int ca) argument
684 no_check(const X509_PURPOSE *xp, const X509 *x, int ca) argument
[all...]
H A Dv3_bcons.c82 ASN1_OPT(BASIC_CONSTRAINTS, ca, ASN1_FBOOLEAN),
92 X509V3_add_value_bool("CA", bcons->ca, &extlist);
110 if(!X509V3_get_value_bool(val, &bcons->ca)) goto err;
/external/ant-glob/src/org/apache/tools/ant/util/
H A DFileUtils.java163 char[] ca = path.toCharArray();
166 next = (ca[next] == sep) ? next + 1 : next;
170 for (int i = next; i < ca.length; i++) {
171 if (ca[i] != sep || ca[i - 1] != sep) {
172 sbPath.append(ca[i]);
/external/jpeg/
H A Dcdjpeg.c124 register int ca, ck; local
127 while ((ca = *arg++) != '\0') {
130 if (isupper(ca)) /* force arg to lcase (assume ck is already) */
131 ca = tolower(ca);
132 if (ca != ck)
/external/qemu/distrib/jpeg-6b/
H A Dcdjpeg.c124 register int ca, ck; local
127 while ((ca = *arg++) != '\0') {
130 if (isupper(ca)) /* force arg to lcase (assume ck is already) */
131 ca = tolower(ca);
132 if (ca != ck)
/external/embunit/inc/
H A DHelperMacro.h38 #define EMB_UNIT_TESTCASE(ca,name,sup,tdw,run) \
39 static const TestCase ca = new_TestCase(name,sup,tdw,run)
/external/javassist/sample/rmi/
H A DCountApplet.java76 CountApplet ca = new CountApplet();
77 f.add(ca);
79 ca.applicationInit();
80 ca.start();
/external/javassist/src/main/javassist/bytecode/
H A DMethodInfo.java414 CodeAttribute ca = getCodeAttribute();
415 if (ca != null) {
417 ca.setAttribute(smt);
431 CodeAttribute ca = getCodeAttribute();
432 if (ca != null) {
434 ca.setAttribute(sm);
448 CodeAttribute ca = getCodeAttribute();
449 if (ca == null)
452 LineNumberAttribute ainfo = (LineNumberAttribute)ca
485 CodeAttribute ca
[all...]
H A DClassFilePrinter.java100 CodeAttribute ca = (CodeAttribute)ai;
103 out.println("max stack " + ca.getMaxStack()
104 + ", max locals " + ca.getMaxLocals()
105 + ", " + ca.getExceptionTable().size()
108 printAttributes(ca.getAttributes(), out, kind);
/external/clang/test/CXX/class.access/
H A Dp4.cpp75 const A &ca = a; local
76 ca + pub;
77 ca + prot;
78 ca + priv;
79 -ca;
81 ca(pub);
82 ca(prot); // expected-error {{'operator void (*)(class Protected &)' is a protected member}}
83 ca(priv); // expected-error {{'operator void (*)(class Private &)' is a private member}}
/external/dropbear/libtommath/etc/
H A Dtimer.asm3 ; Tom St Denis, tomstdenis@iahu.ca
/external/openssl/crypto/rc2/
H A Drc2speed.c185 long ca,cb,cc; local
207 ca=count/512;
210 printf("Doing RC2_set_key %ld times\n",ca);
222 for (count=0,run=1; COND(ca); count+=4)
231 a=((double)COUNT(ca))/d;
/external/openssl/crypto/rc4/
H A Drc4speed.c185 long ca,cb,cc; local
207 ca=count/512;
209 printf("Doing RC4_set_key %ld times\n",ca);
221 for (count=0,run=1; COND(ca); count+=4)
230 a=((double)COUNT(ca))/d;
/external/srtp/crypto/test/
H A Dcipher_driver.c81 cipher_array_test_throughput(cipher_t *ca[], int num_cipher);
345 cipher_array_alloc_init(cipher_t ***ca, int num_ciphers, argument
357 /* set ca to location of cipher_array */
358 *ca = cipher_array;
458 cipher_array_test_throughput(cipher_t *ca[], int num_cipher) { argument
465 (ca[0])->type->description, num_cipher);
469 cipher_array_bits_per_second(ca, num_cipher, i, num_trials) / 1e9);
476 cipher_t **ca = NULL; local
479 status = cipher_array_alloc_init(&ca, num_cipher, ct, klen);
486 cipher_array_test_throughput(ca, num_ciphe
[all...]
/external/javassist/src/main/javassist/bytecode/stackmap/
H A DMapMaker.java46 CodeAttribute ca = minfo.getCodeAttribute();
47 if (ca != null)
48 ca.setAttribute(make(cp, minfo));
65 CodeAttribute ca = minfo.getCodeAttribute();
66 if (ca == null) {
71 TypedBlock[] blocks = TypedBlock.makeBlocks(minfo, ca, false);
72 MapMaker mm = new MapMaker(cp, minfo, ca);
73 mm.make(blocks, ca.getCode());
87 CodeAttribute ca = minfo.getCodeAttribute();
88 if (ca
121 MapMaker(ClassPool classes, MethodInfo minfo, CodeAttribute ca) argument
[all...]
/external/jmonkeyengine/engine/src/networking/com/jme3/network/base/
H A DDefaultClient.java129 for( ConnectorAdapter ca : channels ) {
130 if( ca == null )
132 ca.start();
265 for( ConnectorAdapter ca : channels ) {
266 if( ca == null )
268 ca.close();
362 ConnectorAdapter ca = new ConnectorAdapter(c, dispatcher, dispatcher, true);
364 channels.add( ca );
368 ca.start();
/external/javassist/src/main/javassist/expr/
H A DCast.java97 CodeAttribute ca = iterator.get();
104 int paramVar = ca.getMaxLocals();
116 jc.recordLocalVariables(ca, pos);
H A DInstanceof.java100 CodeAttribute ca = iterator.get();
107 int paramVar = ca.getMaxLocals();
122 jc.recordLocalVariables(ca, pos);

Completed in 442 milliseconds

1234567