HomeSort by relevance Sort by last modified time
    Searched refs:_class (Results 1 - 25 of 87) sorted by null

1 2 3 4

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/X11/extensions/
XInput.h 77 #define FindTypeAndClass(d,type,_class,classid,offset) \
79 type = 0; _class = 0; \
85 _class = ((XDevice *) d)->device_id << 8 | type;}}
87 #define DeviceKeyPress(d,type,_class) \
88 FindTypeAndClass(d, type, _class, KeyClass, _deviceKeyPress)
90 #define DeviceKeyRelease(d,type,_class) \
91 FindTypeAndClass(d, type, _class, KeyClass, _deviceKeyRelease)
93 #define DeviceButtonPress(d,type,_class) \
94 FindTypeAndClass(d, type, _class, ButtonClass, _deviceButtonPress)
96 #define DeviceButtonRelease(d,type,_class) \
    [all...]
  /external/libnl/python/netlink/route/qdisc/
htb.py 51 self._class = cl
56 rate = capi.rtnl_htb_get_rate(self._class._rtnl_class)
61 capi.rtnl_htb_set_rate(self._class._rtnl_class, int(value))
66 ceil = capi.rtnl_htb_get_ceil(self._class._rtnl_class)
71 capi.rtnl_htb_set_ceil(self._class._rtnl_class, int(value))
76 burst = capi.rtnl_htb_get_rbuffer(self._class._rtnl_class)
81 capi.rtnl_htb_set_rbuffer(self._class._rtnl_class, int(value))
86 burst = capi.rtnl_htb_get_cbuffer(self._class._rtnl_class)
91 capi.rtnl_htb_set_cbuffer(self._class._rtnl_class, int(value))
96 return capi.rtnl_htb_get_prio(self._class._rtnl_class
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/email/
parser.py 31 _class is the class to instantiate for new message objects when they
36 if '_class' in kws:
37 raise TypeError("Multiple values for keyword arg '_class'")
38 kws['_class'] = args[0]
45 if '_class' in kws:
46 self._class = kws['_class']
47 del kws['_class']
49 self._class = Message
65 feedparser = FeedParser(self._class)
    [all...]
  /external/python/cpython2/Lib/email/
parser.py 31 _class is the class to instantiate for new message objects when they
36 if '_class' in kws:
37 raise TypeError("Multiple values for keyword arg '_class'")
38 kws['_class'] = args[0]
45 if '_class' in kws:
46 self._class = kws['_class']
47 del kws['_class']
49 self._class = Message
65 feedparser = FeedParser(self._class)
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/email/
parser.py 31 _class is the class to instantiate for new message objects when they
36 if '_class' in kws:
37 raise TypeError("Multiple values for keyword arg '_class'")
38 kws['_class'] = args[0]
45 if '_class' in kws:
46 self._class = kws['_class']
47 del kws['_class']
49 self._class = Message
65 feedparser = FeedParser(self._class)
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/email/
parser.py 31 _class is the class to instantiate for new message objects when they
36 if '_class' in kws:
37 raise TypeError("Multiple values for keyword arg '_class'")
38 kws['_class'] = args[0]
45 if '_class' in kws:
46 self._class = kws['_class']
47 del kws['_class']
49 self._class = Message
65 feedparser = FeedParser(self._class)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/
parser.py 31 _class is the class to instantiate for new message objects when they
36 if '_class' in kws:
37 raise TypeError("Multiple values for keyword arg '_class'")
38 kws['_class'] = args[0]
45 if '_class' in kws:
46 self._class = kws['_class']
47 del kws['_class']
49 self._class = Message
65 feedparser = FeedParser(self._class)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/
parser.py 31 _class is the class to instantiate for new message objects when they
36 if '_class' in kws:
37 raise TypeError("Multiple values for keyword arg '_class'")
38 kws['_class'] = args[0]
45 if '_class' in kws:
46 self._class = kws['_class']
47 del kws['_class']
49 self._class = Message
65 feedparser = FeedParser(self._class)
    [all...]
  /external/emma/core/java12/com/vladium/util/exception/
AbstractException.java 187 final Class _class = getClass (); local
191 msg = ExceptionCommon.getMessage (_class, supermsg);
195 msg = ExceptionCommon.getMessage (_class, supermsg, m_arguments);
201 final String className = _class.getName ();
AbstractRuntimeException.java 187 final Class _class = getClass (); local
191 msg = ExceptionCommon.getMessage (_class, supermsg);
195 msg = ExceptionCommon.getMessage (_class, supermsg, m_arguments);
201 final String className = _class.getName ();
  /external/python/cpython3/Lib/email/
parser.py 19 def __init__(self, _class=None, *, policy=compat32):
31 _class is the class to instantiate for new message objects when they
40 self._class = _class
51 feedparser = FeedParser(self._class, policy=self.policy)
97 _class is the class to instantiate for new message objects when they
  /external/python/cpython2/Lib/plat-mac/
MiniAEFrame.py 136 _class = _attributes['evcl'].type
139 if (_class, _type) in self.ae_handlers:
140 _function = self.ae_handlers[(_class, _type)]
141 elif (_class, '****') in self.ae_handlers:
142 _function = self.ae_handlers[(_class, '****')]
146 raise 'Cannot happen: AE callback without handler', (_class, _type)
151 _parameters['_class'] = _class
195 def other(self, _object=None, _class=None, _type=None, **args):
196 print 'AppleEvent', (_class, _type), 'for', _object, 'Other args:', arg
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/
MiniAEFrame.py 136 _class = _attributes['evcl'].type
139 if (_class, _type) in self.ae_handlers:
140 _function = self.ae_handlers[(_class, _type)]
141 elif (_class, '****') in self.ae_handlers:
142 _function = self.ae_handlers[(_class, '****')]
146 raise 'Cannot happen: AE callback without handler', (_class, _type)
151 _parameters['_class'] = _class
195 def other(self, _object=None, _class=None, _type=None, **args):
196 print 'AppleEvent', (_class, _type), 'for', _object, 'Other args:', arg
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
MiniAEFrame.py 136 _class = _attributes['evcl'].type
139 if (_class, _type) in self.ae_handlers:
140 _function = self.ae_handlers[(_class, _type)]
141 elif (_class, '****') in self.ae_handlers:
142 _function = self.ae_handlers[(_class, '****')]
146 raise 'Cannot happen: AE callback without handler', (_class, _type)
151 _parameters['_class'] = _class
195 def other(self, _object=None, _class=None, _type=None, **args):
196 print 'AppleEvent', (_class, _type), 'for', _object, 'Other args:', arg
    [all...]
  /frameworks/support/samples/Support13Demos/src/main/java/com/example/android/supportv13/app/
FragmentNestingPagerSupport.java 93 TabInfo(Class<?> _class, Bundle _args) {
94 clss = _class;
FragmentNestingStatePagerSupport.java 93 TabInfo(Class<?> _class, Bundle _args) {
94 clss = _class;
  /frameworks/support/samples/Support4Demos/src/main/java/com/example/android/supportv4/app/
FragmentTabsPager.java 99 TabInfo(String _tag, Class<?> _class, Bundle _args) {
101 clss = _class;
  /packages/apps/Gallery2/src/com/android/photos/
GalleryActivity.java 106 TabInfo(Class<?> _class, Bundle _args) {
107 clss = _class;
  /external/tensorflow/tensorflow/python/framework/testdata/
metrics_export_meta_graph.pb 763 key: "_class"
802 key: "_class"
857 key: "_class"
898 key: "_class"
919 key: "_class"
958 key: "_class"
1013 key: "_class"
1054 key: "_class"
1213 key: "_class"
1250 key: "_class"
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/app/
FragmentTabsFragment.java 104 TabInfo(String _tag, Class<?> _class, Bundle _args) {
106 clss = _class;
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/service/
EmailServiceProxy.java 77 public EmailServiceProxy(Context _context, Class<?> _class) {
78 super(_context, new Intent(_context, _class));
  /prebuilts/tools/common/m2/repository/org/glassfish/jaxb/codemodel/2.2.11/
codemodel-2.2.11.jar 
  /external/antlr/antlr-3.4/runtime/Python/
xmlrunner.py 31 (self._class, self._method) = test.id().rsplit(".", 1)
62 "class": self._class,
  /frameworks/support/fragment/src/main/java/androidx/fragment/app/
FragmentTabHost.java 71 TabInfo(@NonNull String _tag, @NonNull Class<?> _class, @Nullable Bundle _args) {
73 clss = _class;
  /frameworks/support/legacy/v13/src/main/java/androidx/legacy/app/
FragmentTabHost.java 61 TabInfo(String _tag, Class<?> _class, Bundle _args) {
63 clss = _class;

Completed in 579 milliseconds

1 2 3 4