HomeSort by relevance Sort by last modified time
    Searched refs:meth (Results 101 - 125 of 246) sorted by null

1 2 3 45 6 7 8 910

  /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/chromium_org/third_party/cython/src/Cython/Utility/
Generator.c 314 PyObject *meth; local
316 meth = PyObject_GetAttr(yf, PYIDENT("close"));
317 if (unlikely(!meth)) {
323 retval = PyObject_CallFunction(meth, NULL);
324 Py_DECREF(meth);
408 PyObject *meth = PyObject_GetAttr(yf, PYIDENT("throw")); local
409 if (unlikely(!meth)) {
420 ret = PyObject_CallObject(meth, args);
421 Py_DECREF(meth);
  /dalvik/dx/src/com/android/dx/command/dump/
BaseDumper.java 105 * @param meth method to process
108 static int computeParamWidth(ConcreteMethod meth, boolean isStatic) {
109 return meth.getEffectiveDescriptor().getParameterTypes().
  /external/clang/test/Index/
complete-method-decls.m 79 -(Class<P1>)meth;
200 // CHECK-CLASSTY: ObjCInstanceMethodDecl:{LeftParen (}{Text Class<P1>}{RightParen )}{TypedText meth}
  /external/openssl/crypto/ec/
ec2_smpl.c 481 if (!group->meth->field_div(group, s, s, t, ctx)) goto err;
482 if (!group->meth->field_sqr(group, x2, s, ctx)) goto err;
495 if (!group->meth->field_div(group, s, y1, x1, ctx)) goto err;
498 if (!group->meth->field_sqr(group, x2, s, ctx)) goto err;
504 if (!group->meth->field_mul(group, y2, y2, s, ctx)) goto err;
562 field_mul = group->meth->field_mul;
563 field_sqr = group->meth->field_sqr;
693 if (!group->meth->make_affine(group, points[i], ctx)) return 0;
  /external/openssl/crypto/ui/
ui.h 236 void UI_set_default_method(const UI_METHOD *meth);
239 const UI_METHOD *UI_set_method(UI *ui, const UI_METHOD *meth);
  /external/openssl/include/openssl/
ui.h 236 void UI_set_default_method(const UI_METHOD *meth);
239 const UI_METHOD *UI_set_method(UI *ui, const UI_METHOD *meth);
  /art/test/044-proxy/src/
BasicTest.java 88 Method meth = methods[methods.length -1]; local
89 System.out.println("Decl annos: " + Arrays.deepToString(meth.getDeclaredAnnotations()));
90 Annotation[][] paramAnnos = meth.getParameterAnnotations();
93 System.out.println("Modifiers: " + meth.getModifiers());
  /external/chromium_org/third_party/markupsafe/
__init__.py 49 :meth:`escape` classmethod to create a :class:`Markup` object:
  /prebuilts/misc/common/swig/include/2.0.11/tcl/
tclrun.swg 305 swig_method *meth;
455 meth = cls->methods;
456 while (meth && meth->name) {
458 size_t meth_len = strlen(meth->name);
461 where = strstr(where, meth->name);
472 Tcl_AppendElement(interp, (char *) meth->name);
473 meth++;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_curses.py 39 for meth in [stdscr.addch, stdscr.addstr]:
42 meth(*args)
44 for meth in [stdscr.box, stdscr.clear, stdscr.clrtobot,
53 meth()
test_py3kwarn.py 146 meth = {}.get
148 self.assertWarning(func < meth, w, expected)
150 self.assertWarning(func > meth, w, expected)
152 self.assertWarning(meth <= func, w, expected)
154 self.assertWarning(meth >= func, w, expected)
156 self.assertNoWarning(meth == func, w)
157 self.assertNoWarning(meth != func, w)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_curses.py 39 for meth in [stdscr.addch, stdscr.addstr]:
42 meth(*args)
44 for meth in [stdscr.box, stdscr.clear, stdscr.clrtobot,
53 meth()
test_py3kwarn.py 146 meth = {}.get
148 self.assertWarning(func < meth, w, expected)
150 self.assertWarning(func > meth, w, expected)
152 self.assertWarning(meth <= func, w, expected)
154 self.assertWarning(meth >= func, w, expected)
156 self.assertNoWarning(meth == func, w)
157 self.assertNoWarning(meth != func, w)
  /art/test/074-gc-thrash/src/
Main.java 79 Method meth; local
81 meth = vmdClass.getMethod("dumpHprofData",
88 return meth;
  /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/dsa/
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,
  /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);
rsa_eay.c 230 if (!rsa->meth->bn_mod_exp(ret,f,rsa->e,rsa->n,ctx,
431 if (!rsa->meth->rsa_mod_exp(ret, f, rsa, ctx)) goto err;
451 if (!rsa->meth->bn_mod_exp(ret,f,d,rsa->n,ctx,
565 if (!rsa->meth->rsa_mod_exp(ret, f, rsa, ctx)) goto err;
583 if (!rsa->meth->bn_mod_exp(ret,f,d,rsa->n,ctx,
696 if (!rsa->meth->bn_mod_exp(ret,f,rsa->e,rsa->n,ctx,
805 if (!rsa->meth->bn_mod_exp(m1,r1,dmq1,rsa->q,ctx,
828 if (!rsa->meth->bn_mod_exp(r0,r1,dmp1,rsa->p,ctx,
863 if (!rsa->meth->bn_mod_exp(vrfy,r0,rsa->e,rsa->n,ctx,rsa->_method_mod_n)) goto err;
888 if (!rsa->meth->bn_mod_exp(r0,I,d,rsa->n,ctx
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
urllib2.py 329 for meth in dir(handler):
330 if meth in ["redirect_request", "do_open", "proxy_open"]:
334 i = meth.find("_")
335 protocol = meth[:i]
336 condition = meth[i+1:]
340 kind = meth[j+1:]
401 meth = getattr(processor, meth_name)
402 req = meth(req)
409 meth = getattr(processor, meth_name)
410 response = meth(req, response
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
urllib2.py 329 for meth in dir(handler):
330 if meth in ["redirect_request", "do_open", "proxy_open"]:
334 i = meth.find("_")
335 protocol = meth[:i]
336 condition = meth[i+1:]
340 kind = meth[j+1:]
401 meth = getattr(processor, meth_name)
402 req = meth(req)
409 meth = getattr(processor, meth_name)
410 response = meth(req, response
    [all...]
  /external/openssl/ssl/
ssltest.c 522 const SSL_METHOD *meth=NULL; local
879 meth=SSLv2_method();
882 meth=TLSv1_method();
885 meth=SSLv3_method();
887 meth=SSLv23_method();
891 meth=TLSv1_method();
894 meth=SSLv3_method();
896 meth=SSLv23_method();
898 meth=SSLv2_method();
902 c_ctx=SSL_CTX_new(meth);
2543 const SSL_METHOD *meth; local
    [all...]
ssl_sess.c 807 const SSL_METHOD *meth; local
811 meth=s->ctx->method->get_ssl_method(session->ssl_version);
812 if (meth == NULL)
813 meth=s->method->get_ssl_method(session->ssl_version);
814 if (meth == NULL)
820 if (meth != s->method)
822 if (!SSL_set_ssl_method(s,meth))
854 meth=s->ctx->method;
855 if (meth != s->method)
857 if (!SSL_set_ssl_method(s,meth))
    [all...]
  /external/chromium_org/third_party/boringssl/src/ssl/
ssl_sess.c 732 const SSL_METHOD *meth; local
736 meth=s->ctx->method->get_ssl_method(session->ssl_version);
737 if (meth == NULL)
738 meth=s->method->get_ssl_method(session->ssl_version);
739 if (meth == NULL)
745 if (meth != s->method)
747 if (!SSL_set_ssl_method(s,meth))
768 meth=s->ctx->method;
769 if (meth != s->method)
771 if (!SSL_set_ssl_method(s,meth))
    [all...]

Completed in 1875 milliseconds

1 2 3 45 6 7 8 910