HomeSort by relevance Sort by last modified time
    Searched refs:ca (Results 1 - 25 of 177) sorted by null

1 2 3 4 5 6 7 8

  /external/clang/test/CXX/over/over.built/
p25.cpp 13 Color foo(bool cond, ConvertsToColorA ca, ConvertsToColorB cb) {
14 return cond? ca : cb;
  /frameworks/base/core/tests/coretests/src/android/widget/
SimpleCursorAdapterTest.java 90 SimpleCursorAdapter ca = new SimpleCursorAdapter(mContext, mLayout, mCursor2x2, mFrom, mTo); local
93 assertEquals(2, ca.getCount());
101 SimpleCursorAdapter ca = new SimpleCursorAdapter(mContext, mLayout, null, mFrom, mTo); local
104 assertEquals(0, ca.getCount());
112 SimpleCursorAdapter ca = new SimpleCursorAdapter(mContext, mLayout, mCursor2x2, mFrom, mTo); local
115 assertEquals(2, ca.getCount());
120 ca.changeCursor(c2);
123 assertEquals(5, ca.getCount());
131 SimpleCursorAdapter ca = new SimpleCursorAdapter(mContext, mLayout, mCursor2x2, mFrom, mTo); local
134 assertEquals(2, ca.getCount())
150 TestSimpleCursorAdapter ca = new TestSimpleCursorAdapter(mContext, mLayout, mCursor2x2, local
176 SimpleCursorAdapter ca = new SimpleCursorAdapter(mContext, mLayout, null, null, null); local
186 TestSimpleCursorAdapter ca = new TestSimpleCursorAdapter(mContext, mLayout, null, null, null); local
209 TestSimpleCursorAdapter ca = new TestSimpleCursorAdapter(mContext, mLayout, mCursor2x2, local
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/functions/html/
BaseUrlValidateFunction.java 86 char[] ca = string.toCharArray(); local
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/
CtConstructor.java 151 CodeAttribute ca = getMethodInfo2().getCodeAttribute(); local
152 if (ca == null)
156 ConstPool cp = ca.getConstPool();
157 CodeIterator it = ca.iterator();
252 CodeAttribute ca = methodInfo.getCodeAttribute(); local
253 CodeIterator iterator = ca.iterator();
255 ca.getMaxStack(), ca.getMaxLocals());
256 b.setStackDepth(ca.getMaxStack());
261 ca.setMaxStack(b.getMaxStack())
354 CodeAttribute ca = minfo.getCodeAttribute(); local
    [all...]
CtBehavior.java 428 CodeAttribute ca = (CodeAttribute)cattr.copy(cp, map); local
429 destInfo.setCodeAttribute(ca);
547 CodeAttribute ca = methodInfo.getCodeAttribute(); local
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 = methodInfo.getCodeAttribute() local
693 CodeAttribute ca = methodInfo.getCodeAttribute(); local
764 CodeAttribute ca = methodInfo.getCodeAttribute(); local
1009 CodeAttribute ca = methodInfo.getCodeAttribute(); local
1101 CodeAttribute ca = methodInfo.getCodeAttribute(); local
    [all...]
  /external/javassist/src/main/javassist/convert/
TransformWriteField.java 39 CodeAttribute ca = iterator.get(); local
48 ca.setMaxStack(ca.getMaxStack() + 2);
55 ca.setMaxStack(ca.getMaxStack() + 1);
  /external/openssl/crypto/x509v3/
v3_purp.c 67 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);
    [all...]
v3_bcons.c 82 ASN1_OPT(BASIC_CONSTRAINTS, ca, ASN1_FBOOLEAN),
92 X509V3_add_value_bool("CA", bcons->ca, &extlist);
109 if(!strcmp(val->name, "CA")) {
110 if(!X509V3_get_value_bool(val, &bcons->ca)) goto err;
  /external/jpeg/
cdjpeg.c 124 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/
HelperMacro.h 38 #define EMB_UNIT_TESTCASE(ca,name,sup,tdw,run) \
39 static const TestCase ca = new_TestCase(name,sup,tdw,run)
  /external/javassist/sample/rmi/
CountApplet.java 76 CountApplet ca = new CountApplet(); local
77 f.add(ca);
79 ca.applicationInit();
80 ca.start();
  /libcore/luni/src/main/java/org/apache/harmony/security/x509/
BasicConstraints.java 37 * ca BOOLEAN DEFAULT FALSE,
44 /** is CA */
45 private boolean ca = false; field in class:BasicConstraints
55 ca = (Boolean) values[0];
70 encoding = ASN1.encode(new Object[]{ca, BigInteger.valueOf(pathLenConstraint) });
77 .append(" CA: ").append(ca)
  /external/javassist/src/main/javassist/bytecode/
MethodInfo.java 414 CodeAttribute ca = getCodeAttribute(); local
415 if (ca != null) {
417 ca.setAttribute(smt);
431 CodeAttribute ca = getCodeAttribute(); local
432 if (ca != null) {
434 ca.setAttribute(sm);
448 CodeAttribute ca = getCodeAttribute(); local
449 if (ca == null)
452 LineNumberAttribute ainfo = (LineNumberAttribute)ca
485 CodeAttribute ca = getCodeAttribute()
    [all...]
ClassFilePrinter.java 100 CodeAttribute ca = (CodeAttribute)ai; local
103 out.println("max stack " + ca.getMaxStack()
104 + ", max locals " + ca.getMaxLocals()
105 + ", " + ca.getExceptionTable().size()
108 printAttributes(ca.getAttributes(), out, kind);
  /libcore/luni/src/test/java/libcore/java/io/
OldAndroidInputStreamReaderTest.java 99 char[] ca = new char[600]; local
100 int n = r.read(ca, 0, 600);
102 String s2 = new String(ca, 0, n);
  /external/clang/test/CXX/class.access/
p4.cpp 75 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/
timer.asm 3 ; Tom St Denis, tomstdenis@iahu.ca
  /external/openssl/crypto/rc2/
rc2speed.c 185 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/
rc4speed.c 185 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/
cipher_driver.c 81 cipher_array_test_throughput(cipher_t *ca[], int num_cipher);
345 cipher_array_alloc_init(cipher_t ***ca, int num_ciphers,
357 /* set ca to location of cipher_array */
358 *ca = cipher_array;
458 cipher_array_test_throughput(cipher_t *ca[], int num_cipher) {
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_cipher)
    [all...]
  /external/javassist/src/main/javassist/bytecode/stackmap/
MapMaker.java 46 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(); local
88 if (ca == null
108 CodeAttribute ca = minfo.getCodeAttribute(); local
    [all...]
  /external/javassist/src/main/javassist/expr/
Cast.java 97 CodeAttribute ca = iterator.get(); local
104 int paramVar = ca.getMaxLocals();
116 jc.recordLocalVariables(ca, pos);
Instanceof.java 100 CodeAttribute ca = iterator.get(); local
107 int paramVar = ca.getMaxLocals();
122 jc.recordLocalVariables(ca, pos);
  /external/openssl/crypto/bn/
bn_recp.c 108 const BIGNUM *ca; local
118 ca = a;
121 ca=x; /* Just do the mod */
123 ret = BN_div_recp(NULL,r,ca,recp,ctx);
  /external/sqlite/android/
OldPhoneNumberUtils.cpp 219 char ca, cb; local
222 ca = a[ia];
224 if (!isNonSeparator(ca)) {
239 if (cb != ca) {

Completed in 498 milliseconds

1 2 3 4 5 6 7 8