HomeSort by relevance Sort by last modified time
    Searched full:meth (Results 226 - 250 of 365) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Index/
index-decls.m 24 -(void)meth {
  /external/clang/test/PCH/
pending-ids.m 20 + (BOOL)meth;
chain-categories2.m 49 [i meth]; // expected-warning {{not found}}
  /external/clang/test/SemaObjC/
property-deprecated-warning.m 33 - (void) Meth {
  /external/openssl/crypto/ecdsa/
ecdsa.h 148 * \param meth new default ECDSA_METHOD
150 void ECDSA_set_default_method(const ECDSA_METHOD *meth);
159 * \param meth new method
162 int ECDSA_set_method(EC_KEY *eckey, const ECDSA_METHOD *meth);
ecs_sign.c 73 return ecdsa->meth->ecdsa_do_sign(dgst, dlen, kinv, rp, eckey);
105 return ecdsa->meth->ecdsa_sign_setup(eckey, ctx_in, kinvp, rp);
  /external/openssl/include/openssl/
ecdsa.h 148 * \param meth new default ECDSA_METHOD
150 void ECDSA_set_default_method(const ECDSA_METHOD *meth);
159 * \param meth new method
162 int ECDSA_set_method(EC_KEY *eckey, const ECDSA_METHOD *meth);
  /dalvik/vm/reflect/
Proxy.cpp 39 static void createConstructor(ClassObject* clazz, Method* meth);
734 static void createConstructor(ClassObject* clazz, Method* meth)
743 meth->clazz = clazz;
744 meth->accessFlags = ACC_PUBLIC | ACC_NATIVE;
745 meth->name = "<init>";
746 meth->prototype =
748 meth->shorty =
752 int argsSize = dvmComputeMethodArgsSize(meth) + 1;
753 meth->registersSize = meth->insSize = argsSize
    [all...]
  /dalvik/vm/native/
dalvik_system_VMStack.cpp 85 const Method* meth = methods[i]; local
87 if (dvmIsReflectionMethod(meth))
  /external/chromium/net/http/
disk_cache_based_ssl_host_info.cc 18 void (DiskCacheBasedSSLHostInfo::*meth)(int))
20 meth_(meth),
  /external/clang/test/CodeGenObjC/
encode-test.m 69 - (SEL**) meth : (SEL) arg : (SEL*****) arg1 : (SEL*)arg2 : (SEL**) arg3;
74 - (SEL**) meth : (SEL) arg : (SEL*****) arg1 : (SEL*)arg2 : (SEL**) arg3 {}
  /external/hyphenation/
hyphen.h 5 * (C) 2006, 2007, 2008 László Németh
12 * Non-standard and compound word hyphenation support by László Németh.
  /external/openssl/crypto/ec/
ec2_smpl.c 480 if (!group->meth->field_div(group, s, s, t, ctx)) goto err;
481 if (!group->meth->field_sqr(group, x2, s, ctx)) goto err;
494 if (!group->meth->field_div(group, s, y1, x1, ctx)) goto err;
497 if (!group->meth->field_sqr(group, x2, s, ctx)) goto err;
503 if (!group->meth->field_mul(group, y2, y2, s, ctx)) goto err;
561 field_mul = group->meth->field_mul;
562 field_sqr = group->meth->field_sqr;
692 if (!group->meth->make_affine(group, points[i], ctx)) return 0;
  /external/openssl/crypto/store/
str_locl.h 113 const STORE_METHOD *meth; member in struct:store_st
114 /* functional reference if 'meth' is ENGINE-provided */
  /external/openssl/crypto/conf/
conf_def.c 80 static CONF *def_create(CONF_METHOD *meth);
128 static CONF *def_create(CONF_METHOD *meth)
134 if (meth->init(ret) == 0)
147 conf->meth = &default_method;
159 conf->meth = &WIN32_method;
  /external/openssl/crypto/dsa/
dsa_ossl.c 95 * if (!dsa->meth->bn_mod_exp(dsa, r,dsa->g,&k,dsa->p,ctx,
107 if((dsa)->meth->dsa_mod_exp) \
108 _tmp_res53 = (dsa)->meth->dsa_mod_exp((dsa), (rr), (a1), (p1), \
118 if((dsa)->meth->bn_mod_exp) \
119 _tmp_res53 = (dsa)->meth->bn_mod_exp((dsa), (r), (a), (p), \
dsa_gen.c 93 if (FIPS_mode() && !(ret->meth->flags & DSA_FLAG_FIPS_METHOD)
100 if(ret->meth->dsa_paramgen)
101 return ret->meth->dsa_paramgen(ret, bits, seed_in, seed_len,
  /dalvik/dexgen/src/com/android/dexgen/rop/code/
Rops.java 1208 Prototype meth = cstMeth.getPrototype(); local
1215 Prototype meth = cstMeth.getPrototype(); local
1222 Prototype meth = cstMeth.getPrototype(); local
1229 Prototype meth = cstMeth.getPrototype(); local
    [all...]
  /dalvik/dx/src/com/android/dx/rop/code/
Rops.java 1208 Prototype meth = cstMeth.getPrototype(); local
1215 Prototype meth = cstMeth.getPrototype(); local
1222 Prototype meth = cstMeth.getPrototype(); local
1229 Prototype meth = cstMeth.getPrototype(); local
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/rop/code/
Rops.java 1208 Prototype meth = cstMeth.getPrototype(); local
1215 Prototype meth = cstMeth.getPrototype(); local
1222 Prototype meth = cstMeth.getPrototype(); local
1229 Prototype meth = cstMeth.getPrototype(); local
    [all...]
  /external/openssl/ssl/
ssl_sess.c 795 const SSL_METHOD *meth; local
799 meth=s->ctx->method->get_ssl_method(session->ssl_version);
800 if (meth == NULL)
801 meth=s->method->get_ssl_method(session->ssl_version);
802 if (meth == NULL)
808 if (meth != s->method)
810 if (!SSL_set_ssl_method(s,meth))
842 meth=s->ctx->method;
843 if (meth != s->method)
845 if (!SSL_set_ssl_method(s,meth))
    [all...]
  /dalvik/vm/
Exception.cpp 1001 Method* meth = (Method*) *intVals++; local
1049 Method* meth = (Method*) *intVals++; local
    [all...]
Debugger.cpp 323 static MethodId methodToMethodId(const Method* meth)
325 return (MethodId)(u4) meth;
1146 Method* meth; local
1148 meth = methodIdToMethod(refTypeId, id);
1149 return meth->name;
1217 Method* meth; local
1230 meth = &clazz->directMethods[i];
1232 expandBufAddMethodId(pReply, methodToMethodId(meth))
2762 const Method* meth; local
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/dtm/
DTMException.java 358 Method meth = local
362 if (null != meth) {
365 exception = (Throwable) meth.invoke(exception, (Class<?>) null);
  /external/openssl/crypto/rsa/
rsa_gen.c 84 if (FIPS_mode() && !(rsa->meth->flags & RSA_FLAG_FIPS_METHOD)
91 if(rsa->meth->rsa_keygen)
92 return rsa->meth->rsa_keygen(rsa, bits, e_value, cb);

Completed in 963 milliseconds

1 2 3 4 5 6 7 8 91011>>