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

12 3 4 5 6 7 8 91011>>

  /art/test/087-gc-after-link/src/
Main.java 85 Method meth = dexClass.getMethod("loadClass", String.class, ClassLoader.class); local
91 meth.invoke(dexFile, name, this);
96 Method meth = dexClass.getMethod("close"); local
97 meth.invoke(dexFile);
  /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/
ex_data.c 148 if (ex_data_class->meth == NULL) {
149 ex_data_class->meth = sk_CRYPTO_EX_DATA_FUNCS_new_null();
152 if (ex_data_class->meth == NULL ||
153 !sk_CRYPTO_EX_DATA_FUNCS_push(ex_data_class->meth, funcs)) {
159 *out_index = sk_CRYPTO_EX_DATA_FUNCS_num(ex_data_class->meth) - 1 +
214 n = sk_CRYPTO_EX_DATA_FUNCS_num(ex_data_class->meth);
216 *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/python/cpython3/Lib/idlelib/idle_test/
test_calltips.py 119 for meth in (TC.t1, TC.t2, TC.t3, TC.t4, TC.t5, TC.t6, TC.__call__):
120 self.assertEqual(signature(meth), meth.tip + doc)
127 for meth, mtip in ((tc.t1, "()"), (tc.t4, "(*args)"), (tc.t6, "(self)"),
129 self.assertEqual(signature(meth), mtip + doc)
137 for meth, mtip in ((C.m1, '(*args)'), (c.m1, "(*args)"),
139 self.assertEqual(signature(meth), mtip)
162 for meth, mtip in ((NoCall, default_tip), (Call, default_tip),
164 self.assertEqual(signature(meth), mtip)
  /external/python/cpython3/Lib/test/
ann_module2.py 30 def meth(self, param: complex) -> None: member in class:NTC
  /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 191 ConcreteMethod meth = local
195 ropDump(meth);
197 regularDump(meth);
204 * @param meth {@code non-null;} method data to dump
206 private void regularDump(ConcreteMethod meth) {
207 BytecodeArray code = meth.getCode();
209 ByteBlockList list = BasicBlocker.identifyBlocks(meth);
276 * @param meth {@code non-null;} method data to dump
278 private void ropDump(ConcreteMethod meth) {
280 BytecodeArray code = meth.getCode()
    [all...]
  /external/boringssl/src/crypto/fipsmodule/ec/
simple.c 143 if (group->meth->field_encode) {
144 if (!group->meth->field_encode(group, &group->a, tmp_a, ctx)) {
155 if (group->meth->field_encode &&
156 !group->meth->field_encode(group, &group->b, &group->b, ctx)) {
166 if (group->meth->field_encode != NULL) {
167 if (!group->meth->field_encode(group, &group->one, BN_value_one(), ctx)) {
192 if (group->meth->field_decode) {
199 if (a != NULL && !group->meth->field_decode(group, a, &group->a, ctx)) {
202 if (b != NULL && !group->meth->field_decode(group, b, &group->b, ctx)) {
266 if (group->meth->field_encode)
    [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);
  /external/python/cpython3/Objects/
methodobject.c 84 PyCFunction meth = PyCFunction_GET_FUNCTION(func); local
98 res = (*(PyCFunctionWithKeywords)meth)(self, args, kwds);
114 res = (*meth)(self, args);
126 res = (*meth)(self, NULL);
139 res = (*meth)(self, arg);
158 PyCFunction meth = PyCFunction_GET_FUNCTION(func); local
192 result = (*meth) (self, NULL);
209 result = (*meth) (self, args[0]);
231 result = (*(PyCFunctionWithKeywords)meth) (self, tuple, kwargs);
234 result = (*meth) (self, tuple)
    [all...]

Completed in 2070 milliseconds

12 3 4 5 6 7 8 91011>>