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

1 23 4 5 6 7 8 91011>>

  /external/boringssl/src/crypto/fipsmodule/rsa/
rsa.c 93 rsa->meth = ENGINE_get_RSA_method(engine);
96 if (rsa->meth == NULL) {
97 rsa->meth = (RSA_METHOD *) RSA_default_method();
99 METHOD_ref(rsa->meth);
102 rsa->flags = rsa->meth->flags;
106 if (rsa->meth->init && !rsa->meth->init(rsa)) {
109 METHOD_unref(rsa->meth);
128 if (rsa->meth->finish) {
129 rsa->meth->finish(rsa)
    [all...]
  /external/jdiff/src/jdiff/
HTMLIndexes.java 658 MethodAPI meth = (MethodAPI)(iterMeth.next()); local
659 methNames.add(new Index(meth.name_, 0, pkgName, className, meth.getSignature()));
663 MethodAPI meth = (MethodAPI)(iterMeth.next()); local
664 Index idx = new Index(meth.name_, 1, pkgName, className, meth.getSignature());
665 idx.doc_ = meth.doc_; // Used for checking @since
670 MemberDiff meth = (MemberDiff)(iterMeth.next()); local
671 methNames.add(new Index(meth.name_, 2, pkgName, className, meth.newSignature_))
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Parser/
asdl.py 302 meth = self._dispatch(object)
303 if meth is None:
306 meth(object, *args)
319 meth = self.cache.get(klass)
320 if meth is None:
323 meth = getattr(self, methname, None)
325 meth = getattr(self, methname)
326 self.cache[klass] = meth
327 return meth
  /external/python/cpython2/Parser/
asdl.py 302 meth = self._dispatch(object)
303 if meth is None:
306 meth(object, *args)
319 meth = self.cache.get(klass)
320 if meth is None:
323 meth = getattr(self, methname, None)
325 meth = getattr(self, methname)
326 self.cache[klass] = meth
327 return meth
  /art/test/005-annotations/src/android/test/anno/
TestAnnotations.java 68 System.out.println(" annotations on METH " + m + ":");
137 Method meth; local
142 meth = TestAnnotations.class.getMethod("getFocusType");
146 property = meth.getAnnotation(ExportedProperty.class);
154 meth.isAnnotationPresent(ExportedProperty.class));
156 meth.isAnnotationPresent(AnnoSimpleType.class));
242 System.out.println(" annotations on METH " + m + ":");
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
methodobject.c 74 PyCFunction meth = PyCFunction_GET_FUNCTION(func); local
81 return (*meth)(self, arg);
85 return (*(PyCFunctionWithKeywords)meth)(self, arg, kw);
90 return (*meth)(self, NULL);
101 return (*meth)(self, PyTuple_GET_ITEM(arg, 0));
116 return (*meth)(self, arg);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
methodobject.c 74 PyCFunction meth = PyCFunction_GET_FUNCTION(func); local
81 return (*meth)(self, arg);
85 return (*(PyCFunctionWithKeywords)meth)(self, arg, kw);
90 return (*meth)(self, NULL);
101 return (*meth)(self, PyTuple_GET_ITEM(arg, 0));
116 return (*meth)(self, arg);
  /external/javassist/src/main/javassist/util/proxy/
ProxyFactory.java 910 Method meth = (Method)e.getValue(); local
    [all...]
  /external/python/cpython2/Objects/
methodobject.c 74 PyCFunction meth = PyCFunction_GET_FUNCTION(func); local
81 return (*meth)(self, arg);
85 return (*(PyCFunctionWithKeywords)meth)(self, arg, kw);
90 return (*meth)(self, NULL);
101 return (*meth)(self, PyTuple_GET_ITEM(arg, 0));
116 return (*meth)(self, arg);
  /dalvik/dx/src/com/android/dx/rop/code/
Rops.java 1209 Prototype meth = cstMeth.getPrototype(); local
1216 Prototype meth = cstMeth.getPrototype(); local
1223 Prototype meth = cstMeth.getPrototype(); local
1230 Prototype meth = cstMeth.getPrototype(); local
1239 Prototype meth = proto.withFirstParameter(definer.getClassType()); local
    [all...]
  /art/dexlist/
dexlist.cc 237 char* meth = strrchr(gOptions.argCopy, '.'); local
238 if (meth == nullptr) {
242 *meth = '\0';
244 gOptions.methodToFind = meth + 1;
  /dalvik/dx/src/com/android/dx/command/dump/
DotDumper.java 116 ConcreteMethod meth = new ConcreteMethod((Method) member, classFile, local
121 Ropper.convert(meth, advice, classFile.getMethods(), dexOptions);
124 boolean isStatic = AccessFlags.isStatic(meth.getAccessFlags());
126 BaseDumper.computeParamWidth(meth, isStatic), isStatic,
SsaDumper.java 90 ConcreteMethod meth = local
93 RopMethod rmeth = Ropper.convert(meth, advice, classFile.getMethods(), dexOptions);
95 boolean isStatic = AccessFlags.isStatic(meth.getAccessFlags());
96 int paramWidth = computeParamWidth(meth, isStatic);
BaseDumper.java 111 * @param meth method to process
114 static int computeParamWidth(ConcreteMethod meth, boolean isStatic) {
115 return meth.getEffectiveDescriptor().getParameterTypes().
  /external/clang/test/Index/
usrs.cpp 95 void meth(TC1);
174 // CHECK: usrs.cpp c:@ST>1#T@TC1@F@meth#>@ST>1#T@TC11t0.0# Extent=[95:3 - 95:17]
  /prebuilts/go/darwin-x86/test/
live1.go 39 func f1(pkg, typ, meth string) {
40 panic("value method " + pkg + "." + typ + "." + meth + " called using nil *" + typ + " pointer")
  /prebuilts/go/linux-x86/test/
live1.go 39 func f1(pkg, typ, meth string) {
40 panic("value method " + pkg + "." + typ + "." + meth + " called using nil *" + typ + " pointer")
  /dalvik/dx/src/com/android/dx/dex/cf/
CfTranslator.java 286 CstMethodRef meth = new CstMethodRef(thisClass, one.getNat()); local
292 boolean isConstructor = meth.isInstanceInit() ||
293 meth.isClassInit();
313 paramSize = meth.getParameterWordCount(isStatic);
374 new EncodedMethod(meth, accessFlags, code, exceptions);
376 if (meth.isInstanceInit() || meth.isClassInit() ||
386 out.addMethodAnnotations(meth, annotations, dexFile);
392 out.addParameterAnnotations(meth, list, dexFile);
394 dexFile.getMethodIds().intern(meth);
    [all...]
  /external/webrtc/webrtc/base/
openssladapter.cc 751 const X509V3_EXT_METHOD* meth = X509V3_EXT_get(extension); local
752 if (!meth)
765 if (meth->it) {
768 ASN1_ITEM_ptr(meth->it));
770 ext_str = meth->d2i(NULL, ext_value_data_ptr, extension->value->length);
773 STACK_OF(CONF_VALUE)* value = meth->i2v(meth, ext_str, NULL);
788 if (meth->it) {
790 ASN1_ITEM_ptr(meth->it));
792 meth->ext_free(ext_str)
    [all...]
  /art/test/utils/python/
generate_java_main.py 253 for meth in flatten_class_methods(dat.classes, clazz):
254 i.add_func(Func(meth, clazz.name, 'virtual'))
256 for meth in flatten_interface_methods(dat, iface):
257 i.add_func(Func(meth, clazz.name, 'virtual'))
258 i.add_func(Func(meth, iface.name, 'interface'))
  /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...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
modsupport.c 568 PyObject *meth; local
572 meth = PyObject_GetAttrString(obj, methodname);
573 if (meth == NULL)
582 Py_DECREF(meth);
586 res = PyEval_CallObject(meth, args);
587 Py_DECREF(meth);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
modsupport.c 568 PyObject *meth; local
572 meth = PyObject_GetAttrString(obj, methodname);
573 if (meth == NULL)
582 Py_DECREF(meth);
586 res = PyEval_CallObject(meth, args);
587 Py_DECREF(meth);
  /external/python/cpython2/Python/
modsupport.c 594 PyObject *meth; local
598 meth = PyObject_GetAttrString(obj, methodname);
599 if (meth == NULL)
608 Py_DECREF(meth);
612 res = PyEval_CallObject(meth, args);
613 Py_DECREF(meth);
  /external/icu/icu4j/perf-tests/perldriver/
PerfFramework4j.pm 275 # ->[1]: The params on the '= <meth> begin ...' line
276 # ->[2]: The params on the '= <meth> end ...' line

Completed in 1650 milliseconds

1 23 4 5 6 7 8 91011>>