Searched refs:meth (Results 1 - 25 of 163) sorted by path

1234567

/prebuilts/devtools/tools/lib/
H A Decj-4.4.jarorg/ org/eclipse/ org/eclipse/jdt/ org/eclipse/jdt/internal/ org/eclipse/jdt/internal/compiler/ org/eclipse/jdt/internal/ ...
H A Decj-4.6.1.jarorg/ org/eclipse/ org/eclipse/jdt/ org/eclipse/jdt/internal/ org/eclipse/jdt/internal/compiler/ org/eclipse/jdt/internal/ ...
H A Djython-standalone-2.5.3.jarMETA-INF/MANIFEST.MF META-INF/LICENSE META-INF/NOTICE META-INF/maven/jline/ ...
/prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/org.eclipse.jdt.core/3.9.1.v20130905-0837/
H A Dorg.eclipse.jdt.core-3.9.1.v20130905-0837.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSE_.SF META-INF/ECLIPSE_.RSA META ...
/prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/org.eclipse.osgi/3.9.1.v20130814-1242/
H A Dorg.eclipse.osgi-3.9.1.v20130814-1242.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSE_.SF META-INF/ECLIPSE_.RSA META ...
/prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
H A Dorg.eclipse.osgi_3.9.1.v20140110-1610.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSE_.SF META-INF/ECLIPSE_.RSA META ...
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/mingw/include/
H A D_dbdao.h333 #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(bst
[all...]
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
H A D_dbdao.h333 #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(bst
[all...]
/prebuilts/gdb/darwin-x86/include/python2.7/
H A Dclassobject.h69 #define PyMethod_GET_FUNCTION(meth) \
70 (((PyMethodObject *)meth) -> im_func)
71 #define PyMethod_GET_SELF(meth) \
72 (((PyMethodObject *)meth) -> im_self)
73 #define PyMethod_GET_CLASS(meth) \
74 (((PyMethodObject *)meth) -> im_class)
/prebuilts/gdb/darwin-x86/lib/python2.7/compiler/
H A Dpyassem.py676 meth = getattr(self, opname, None)
677 if meth is not None:
678 depth = depth + meth(i[1])
H A Dvisitor.py45 meth = self._cache.get(klass, None)
46 if meth is None:
48 meth = getattr(self.visitor, 'visit' + className, self.default)
49 self._cache[klass] = meth
53 ## if meth == 0:
56 ## print "dispatch", className, (meth and meth.__name__ or '')
57 return meth(node, *args)
76 meth = self._cache.get(node.__class__, None)
78 if meth i
[all...]
/prebuilts/gdb/darwin-x86/lib/python2.7/email/
H A Dgenerator.py114 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/
H A Dmarkupbase.py216 meth = getattr(self, "_parse_doctype_" + name)
217 j = meth(j, declstartpos)
H A Drunpy.py94 meth = getattr(loader, attr, None)
95 if meth is not None:
96 return meth(mod_name)
H A Dsocket.py223 def meth(name,self,*args): function
227 p = partial(meth,_m)
/prebuilts/gdb/darwin-x86/lib/python2.7/multiprocessing/
H A Dmanagers.py896 for meth in exposed:
898 return self._callmethod(%r, args, kwds)''' % (meth, meth) in dic
/prebuilts/gdb/darwin-x86/lib/python2.7/pydoc_data/
H A Dtopics.py70 'typesmethods': '\nMethods\n*******\n\nMethods are functions that are called using the attribute notation.\nThere are two flavors: built-in methods (such as ``append()`` on\nlists) and class instance methods. Built-in methods are described\nwith the types that support them.\n\nThe implementation adds two special read-only attributes to class\ninstance methods: ``m.im_self`` is the object on which the method\noperates, and ``m.im_func`` is the function implementing the method.\nCalling ``m(arg-1, arg-2, ..., arg-n)`` is completely equivalent to\ncalling ``m.im_func(m.im_self, arg-1, arg-2, ..., arg-n)``.\n\nClass instance methods are either *bound* or *unbound*, referring to\nwhether the method was accessed through an instance or a class,\nrespectively. When a method is unbound, its ``im_self`` attribute\nwill be ``None`` and if called, an explicit ``self`` object must be\npassed as the first argument. In this case, ``self`` must be an\ninstance of the unbound method\'s class (or a subclass of that class),\notherwise a ``TypeError`` is raised.\n\nLike function objects, methods objects support getting arbitrary\nattributes. However, since method attributes are actually stored on\nthe underlying function object (``meth.im_func``), setting method\nattributes on either bound or unbound methods is disallowed.\nAttempting to set an attribute on a method results in an\n``AttributeError`` being raised. In order to set a method attribute,\nyou need to explicitly set it on the underlying function object:\n\n >>> class C:\n ... def method(self):\n ... pass\n ...\n >>> c = C()\n >>> c.method.whoami = \'my name is method\' # can\'t set on the method\n Traceback (most recent call last):\n File "<stdin>", line 1, in <module>\n AttributeError: \'instancemethod\' object has no attribute \'whoami\'\n >>> c.method.im_func.whoami = \'my name is method\'\n >>> c.method.whoami\n \'my name is method\'\n\nSee *The standard type hierarchy* for more information.\n',
/prebuilts/gdb/darwin-x86/lib/python2.7/test/
H A Dtest_builtin.py175 def meth(self): pass member in class:BuiltinTest.test_callable.Classic
178 self.assertTrue(callable(c.meth))
182 def meth(self): pass member in class:BuiltinTest.test_callable.NewStyle
185 self.assertTrue(callable(n.meth))
H A Dtest_curses.py39 for meth in [stdscr.addch, stdscr.addstr]:
42 meth(*args)
44 for meth in [stdscr.box, stdscr.clear, stdscr.clrtobot,
53 meth()
H A Dtest_datetime.py2626 meth = self.theclass.now
2628 base = meth()
2631 another = meth(off42)
2632 again = meth(tz=off42)
2636 self.assertRaises(TypeError, meth, 16)
2637 self.assertRaises(TypeError, meth, tzinfo=16)
2639 self.assertRaises(TypeError, meth, tinfo=off42)
2641 self.assertRaises(TypeError, meth, off42, off42)
2663 meth = self.theclass.fromtimestamp
2666 base = meth(t
[all...]
H A Dtest_descr.py63 def unop_test(self, a, res, expr="len(a)", meth="__len__"):
67 m = getattr(t, meth)
70 while meth not in t.__dict__:
74 self.assertEqual(getattr(m, 'im_func', m), t.__dict__[meth])
76 bm = getattr(a, meth)
79 def binop_test(self, a, b, res, expr="a+b", meth="__add__"):
83 if meth == "__div__" and 1/2 == 0.5:
84 meth = "__truediv__"
86 if meth == '__divmod__': pass
90 m = getattr(t, meth)
544 def meth(self): member in class:ClassPropertiesAndMethods.test_metaclass.A
547 def meth(self): member in class:ClassPropertiesAndMethods.test_metaclass.B
550 def meth(self): member in class:ClassPropertiesAndMethods.test_metaclass.C
553 def meth(self): member in class:ClassPropertiesAndMethods.test_metaclass.D
557 def meth(self): member in class:ClassPropertiesAndMethods.test_metaclass.E
2376 def meth(self, a): member in class:.test_supers.A
2384 def meth(self, a): member in class:.test_supers.B
2390 def meth(self, a): member in class:.test_supers.C
2397 def meth(self, a): member in class:.test_supers.D
2409 def meth(self, a): member in class:.test_supers.E
2415 def meth(self, a): member in class:.test_supers.F
3930 def meth(self): member in class:.test_mutable_bases.C2
4652 def meth(self): member in class:DictProxyTests.setUp.C
[all...]
H A Dtest_file.py260 meth = getattr(f, methodname)
261 meth(*args) # This simply shouldn't fail
H A Dtest_file2k.py343 meth = getattr(f, methodname)
345 meth(*args)
H A Dtest_py3kwarn.py146 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)
H A Dtest_set.py1615 for meth in (s.union, s.intersection, s.difference, s.symmetric_difference, s.isdisjoint):
1617 expected = meth(data)
1618 actual = meth(G(data))
1623 self.assertRaises(TypeError, meth, X(s))
1624 self.assertRaises(TypeError, meth, N(s))
1625 self.assertRaises(ZeroDivisionError, meth, E(s))

Completed in 1015 milliseconds

1234567