HomeSort by relevance Sort by last modified time
    Searched refs:meth (Results 26 - 50 of 387) sorted by null

12 3 4 5 6 7 8 91011>>

  /dalvik/dx/src/com/android/dx/cf/direct/
MethodListParser.java 80 StdMethod meth = local
83 methods.set(n, meth);
84 return meth;
  /external/nist-sip/java/gov/nist/javax/sip/header/
CSeq.java 156 public void setMethod(String meth) throws ParseException {
157 if (meth == null)
160 + ", setMethod(), the meth parameter is null");
161 this.method = SIPRequest.getCannonicalName(meth);
  /external/boringssl/src/crypto/fipsmodule/ec/
ec.c 337 EC_GROUP *ec_group_new(const EC_METHOD *meth) {
340 if (meth == NULL) {
345 if (meth->group_init == 0) {
357 ret->meth = meth;
360 if (!meth->group_init(ret)) {
375 if (ret->meth->group_set_curve == 0) {
379 if (!ret->meth->group_set_curve(ret, p, a, b, ctx)) {
432 !group->meth->group_set_curve(group, p, a, b, ctx)) {
507 if (group->meth->group_finish != 0)
    [all...]
oct.c 254 if (group->meth != point->meth) {
264 if (group->meth != point->meth) {
307 if (group->meth->field_decode == 0) {
309 if (!group->meth->field_sqr(group, tmp2, x, ctx) ||
310 !group->meth->field_mul(group, tmp1, tmp2, x, ctx)) {
328 if (group->meth->field_decode) {
329 if (!group->meth->field_decode(group, tmp2, &group->a, ctx) ||
335 if (!group->meth->field_mul(group, tmp2, &group->a, x, ctx))
    [all...]
simple.c 155 if (group->meth->field_encode) {
156 if (!group->meth->field_encode(group, &group->a, tmp_a, ctx)) {
167 if (group->meth->field_encode &&
168 !group->meth->field_encode(group, &group->b, &group->b, ctx)) {
178 if (group->meth->field_encode != NULL) {
179 if (!group->meth->field_encode(group, &group->one, BN_value_one(), ctx)) {
204 if (group->meth->field_decode) {
211 if (a != NULL && !group->meth->field_decode(group, a, &group->a, ctx)) {
214 if (b != NULL && !group->meth->field_decode(group, b, &group->b, ctx)) {
284 if (group->meth->field_encode)
    [all...]
  /external/boringssl/src/crypto/
ex_data.c 149 if (ex_data_class->meth == NULL) {
150 ex_data_class->meth = sk_CRYPTO_EX_DATA_FUNCS_new_null();
153 if (ex_data_class->meth == NULL ||
154 !sk_CRYPTO_EX_DATA_FUNCS_push(ex_data_class->meth, funcs)) {
160 *out_index = sk_CRYPTO_EX_DATA_FUNCS_num(ex_data_class->meth) - 1 +
215 n = sk_CRYPTO_EX_DATA_FUNCS_num(ex_data_class->meth);
217 *out = sk_CRYPTO_EX_DATA_FUNCS_dup(ex_data_class->meth);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
_dbdao.h 333 #define LPROPGET(intDAO,meth) do { intDAO *p = (intDAO *)GetInterface(); LONG l = 0; DAOMFC_CALL(p->meth(&l)); return l; } while (0)
334 #define LPROPSET(intDAO,meth,l) do { intDAO *p = (intDAO *)GetInterface(); DAOMFC_CALL(p->meth(l)); } while(0)
335 #define WPROPGET(intDAO,meth) do { intDAO *p = (intDAO *)GetInterface(); SHORT s = 0; DAOMFC_CALL(p->meth(&s)); return s; } while (0)
336 #define WPROPSET(intDAO,meth,s) do { intDAO *p = (intDAO *)GetInterface(); DAOMFC_CALL(p->meth(s)); } while(0)
337 #define SPROPGET(intDAO,meth) do { intDAO *p = (intDAO *)GetInterface(); CdbBSTR bstr; DAOMFC_CALL(p->meth(bstr)); return bstr; } while (0
    [all...]
  /dalvik/dx/src/com/android/dx/ssa/
Dominators.java 48 private final SsaMethod meth; field in class:Dominators
64 * @param meth {@code non-null;} method to process
68 private Dominators(SsaMethod meth, DomFront.DomInfo[] domInfos,
70 this.meth = meth;
73 this.blocks = meth.getBlocks();
82 * @param meth {@code non-null;} method to process
86 public static Dominators make(SsaMethod meth, DomFront.DomInfo[] domInfos,
88 Dominators result = new Dominators(meth, domInfos, postdom);
168 * @param meth {@code non-null;} method to analyz
    [all...]
DomFront.java 33 private final SsaMethod meth; field in class:DomFront
56 * @param meth {@code non-null;} method to process
58 public DomFront(SsaMethod meth) {
59 this.meth = meth;
60 nodes = meth.getBlocks();
86 Dominators methDom = Dominators.make(meth, domInfos, false);
  /external/autotest/frontend/afe/json_rpc/
serviceHandler.py 108 meth = self.findServiceEndpoint(methName)
109 results['result'] = self.invokeServiceEndpoint(meth, args)
141 meth = getattr(self.service, name)
142 return meth
146 def invokeServiceEndpoint(self, meth, args):
147 return meth(*args)
  /external/boringssl/src/crypto/x509/
x_crl.c 237 crl->meth = default_crl_method;
295 if (crl->meth->crl_init) {
296 if (crl->meth->crl_init(crl) == 0)
302 /* |crl->meth| may be NULL if constructing the object failed before
304 if (crl->meth && crl->meth->crl_free) {
305 if (!crl->meth->crl_free(crl))
394 if (crl->meth->crl_verify)
395 return crl->meth->crl_verify(crl, r);
402 if (crl->meth->crl_lookup
    [all...]
  /dalvik/dx/src/com/android/dx/command/dump/
BlockDumper.java 195 ConcreteMethod meth = local
199 ropDump(meth);
201 regularDump(meth);
208 * @param meth {@code non-null;} method data to dump
210 private void regularDump(ConcreteMethod meth) {
211 BytecodeArray code = meth.getCode();
213 ByteBlockList list = BasicBlocker.identifyBlocks(meth);
283 * @param meth {@code non-null;} method data to dump
285 private void ropDump(ConcreteMethod meth) {
287 BytecodeArray code = meth.getCode()
    [all...]
  /art/test/046-reflect/src/
Main.java 34 void printMethodInfo(Method meth) {
38 System.out.println("Method name is " + meth.getName());
40 + meth.getDeclaringClass().getName());
41 params = meth.getParameterTypes();
44 exceptions = meth.getExceptionTypes();
47 System.out.println(" Return type is " + meth.getReturnType().getName());
49 + Integer.toHexString(meth.getModifiers()));
50 //System.out.println(" GenericStr is " + meth.toGenericString());
85 Method meth; local
87 meth = target.getMethod("publicMethod")
125 Method meth = null; local
    [all...]
  /external/python/cpython2/Lib/idlelib/idle_test/
test_calltips.py 117 for meth in (TC.t1, TC.t2, TC.t3, TC.t4, TC.t5, TC.t6, TC.__call__):
118 self.assertEqual(signature(meth), meth.tip + doc)
125 for meth, mtip in ((tc.t1, "()"), (tc.t4, "(*args)"), (tc.t6, "(self)"),
127 self.assertEqual(signature(meth), mtip + doc)
159 for meth, mtip in ((NoCall, '()'), (Call, '()'),
161 self.assertEqual(signature(meth), mtip)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/email/
generator.py 114 meth = getattr(msg, '_write_headers', None)
115 if meth is None:
118 meth(self)
129 meth = getattr(self, '_handle_' + specific, None)
130 if meth is None:
132 meth = getattr(self, '_handle_' + generic, None)
133 if meth is None:
134 meth = self._writeBody
135 meth(msg)
  /external/python/cpython2/Lib/email/
generator.py 114 meth = getattr(msg, '_write_headers', None)
115 if meth is None:
118 meth(self)
129 meth = getattr(self, '_handle_' + specific, None)
130 if meth is None:
132 meth = getattr(self, '_handle_' + generic, None)
133 if meth is None:
134 meth = self._writeBody
135 meth(msg)
  /prebuilts/gdb/darwin-x86/lib/python2.7/email/
generator.py 114 meth = getattr(msg, '_write_headers', None)
115 if meth is None:
118 meth(self)
129 meth = getattr(self, '_handle_' + specific, None)
130 if meth is None:
132 meth = getattr(self, '_handle_' + generic, None)
133 if meth is None:
134 meth = self._writeBody
135 meth(msg)
  /prebuilts/gdb/linux-x86/lib/python2.7/email/
generator.py 114 meth = getattr(msg, '_write_headers', None)
115 if meth is None:
118 meth(self)
129 meth = getattr(self, '_handle_' + specific, None)
130 if meth is None:
132 meth = getattr(self, '_handle_' + generic, None)
133 if meth is None:
134 meth = self._writeBody
135 meth(msg)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/
generator.py 114 meth = getattr(msg, '_write_headers', None)
115 if meth is None:
118 meth(self)
129 meth = getattr(self, '_handle_' + specific, None)
130 if meth is None:
132 meth = getattr(self, '_handle_' + generic, None)
133 if meth is None:
134 meth = self._writeBody
135 meth(msg)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/
generator.py 114 meth = getattr(msg, '_write_headers', None)
115 if meth is None:
118 meth(self)
129 meth = getattr(self, '_handle_' + specific, None)
130 if meth is None:
132 meth = getattr(self, '_handle_' + generic, None)
133 if meth is None:
134 meth = self._writeBody
135 meth(msg)
  /art/test/068-classloader/src/
FancyLoader.java 111 Method meth; local
114 meth = mDexClass.getMethod("loadClass", String.class, ClassLoader.class);
120 meth.invoke(mDexFile, name, this);
  /art/test/626-const-class-linking/src/
DefiningLoader.java 118 Method meth; local
121 meth = mDexClass.getMethod("loadClass", String.class, ClassLoader.class);
127 meth.invoke(mDexFile, name, this);
  /art/test/647-jni-get-field-id/src/
DefiningLoader.java 118 Method meth; local
121 meth = mDexClass.getMethod("loadClass", String.class, ClassLoader.class);
127 meth.invoke(mDexFile, name, this);
  /art/test/086-null-super/src/
Main.java 82 Method meth = mDexClass. local
89 meth.invoke(mDexFile, name, this);
  /external/javassist/src/test/test/javassist/proxy/
ProxySimpleTest.java 52 Method meth = data2.getClass().getDeclaredMethod("writeReplace", new Class[0]); local
54 meth.invoke(data2, new Object[0]).getClass().getName());

Completed in 805 milliseconds

12 3 4 5 6 7 8 91011>>