Searched refs:type_ (Results 1 - 25 of 46) sorted by relevance

12

/prebuilts/gcc/darwin-x86/aarch64/aarch64-linux-android-4.9/share/gdb/python/gdb/
H A Dtypes.py22 def get_basic_type(type_):
26 type_: The type to reduce to its basic type.
29 type_ with const/volatile is stripped away,
33 while (type_.code == gdb.TYPE_CODE_REF or
34 type_.code == gdb.TYPE_CODE_TYPEDEF):
35 if type_.code == gdb.TYPE_CODE_REF:
36 type_ = type_.target()
38 type_ = type_
[all...]
/prebuilts/gcc/darwin-x86/arm/arm-eabi-4.8/share/gdb/python/gdb/
H A Dtypes.py22 def get_basic_type(type_):
26 type_: The type to reduce to its basic type.
29 type_ with const/volatile is stripped away,
33 while (type_.code == gdb.TYPE_CODE_REF or
34 type_.code == gdb.TYPE_CODE_TYPEDEF):
35 if type_.code == gdb.TYPE_CODE_REF:
36 type_ = type_.target()
38 type_ = type_
[all...]
/prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.9/share/gdb/python/gdb/
H A Dtypes.py22 def get_basic_type(type_):
26 type_: The type to reduce to its basic type.
29 type_ with const/volatile is stripped away,
33 while (type_.code == gdb.TYPE_CODE_REF or
34 type_.code == gdb.TYPE_CODE_TYPEDEF):
35 if type_.code == gdb.TYPE_CODE_REF:
36 type_ = type_.target()
38 type_ = type_
[all...]
/prebuilts/gcc/darwin-x86/mips/mips64el-linux-android-4.9/share/gdb/python/gdb/
H A Dtypes.py22 def get_basic_type(type_):
26 type_: The type to reduce to its basic type.
29 type_ with const/volatile is stripped away,
33 while (type_.code == gdb.TYPE_CODE_REF or
34 type_.code == gdb.TYPE_CODE_TYPEDEF):
35 if type_.code == gdb.TYPE_CODE_REF:
36 type_ = type_.target()
38 type_ = type_
[all...]
/prebuilts/gcc/darwin-x86/x86/x86_64-linux-android-4.9/share/gdb/python/gdb/
H A Dtypes.py22 def get_basic_type(type_):
26 type_: The type to reduce to its basic type.
29 type_ with const/volatile is stripped away,
33 while (type_.code == gdb.TYPE_CODE_REF or
34 type_.code == gdb.TYPE_CODE_TYPEDEF):
35 if type_.code == gdb.TYPE_CODE_REF:
36 type_ = type_.target()
38 type_ = type_
[all...]
/prebuilts/gcc/linux-x86/aarch64/aarch64-linux-android-4.9/share/gdb/python/gdb/
H A Dtypes.py22 def get_basic_type(type_):
26 type_: The type to reduce to its basic type.
29 type_ with const/volatile is stripped away,
33 while (type_.code == gdb.TYPE_CODE_REF or
34 type_.code == gdb.TYPE_CODE_TYPEDEF):
35 if type_.code == gdb.TYPE_CODE_REF:
36 type_ = type_.target()
38 type_ = type_
[all...]
/prebuilts/gcc/linux-x86/arm/arm-eabi-4.8/share/gdb/python/gdb/
H A Dtypes.py22 def get_basic_type(type_):
26 type_: The type to reduce to its basic type.
29 type_ with const/volatile is stripped away,
33 while (type_.code == gdb.TYPE_CODE_REF or
34 type_.code == gdb.TYPE_CODE_TYPEDEF):
35 if type_.code == gdb.TYPE_CODE_REF:
36 type_ = type_.target()
38 type_ = type_
[all...]
/prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.9/share/gdb/python/gdb/
H A Dtypes.py22 def get_basic_type(type_):
26 type_: The type to reduce to its basic type.
29 type_ with const/volatile is stripped away,
33 while (type_.code == gdb.TYPE_CODE_REF or
34 type_.code == gdb.TYPE_CODE_TYPEDEF):
35 if type_.code == gdb.TYPE_CODE_REF:
36 type_ = type_.target()
38 type_ = type_
[all...]
/prebuilts/gcc/linux-x86/mips/mips64el-linux-android-4.9/share/gdb/python/gdb/
H A Dtypes.py22 def get_basic_type(type_):
26 type_: The type to reduce to its basic type.
29 type_ with const/volatile is stripped away,
33 while (type_.code == gdb.TYPE_CODE_REF or
34 type_.code == gdb.TYPE_CODE_TYPEDEF):
35 if type_.code == gdb.TYPE_CODE_REF:
36 type_ = type_.target()
38 type_ = type_
[all...]
/prebuilts/gcc/linux-x86/x86/x86_64-linux-android-4.9/share/gdb/python/gdb/
H A Dtypes.py22 def get_basic_type(type_):
26 type_: The type to reduce to its basic type.
29 type_ with const/volatile is stripped away,
33 while (type_.code == gdb.TYPE_CODE_REF or
34 type_.code == gdb.TYPE_CODE_TYPEDEF):
35 if type_.code == gdb.TYPE_CODE_REF:
36 type_ = type_.target()
38 type_ = type_
[all...]
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
H A Dsharedctypes.py61 def _new_value(type_):
62 size = ctypes.sizeof(type_)
64 return rebuild_ctype(type_, wrapper, None)
70 type_ = typecode_to_type.get(typecode_or_type, typecode_or_type)
71 obj = _new_value(type_)
80 type_ = typecode_to_type.get(typecode_or_type, typecode_or_type)
82 type_ = type_ * size_or_initializer
83 obj = _new_value(type_)
87 type_
[all...]
H A Dreduction.py181 def fromfd(fd, family, type_, proto=0):
182 s = socket.fromfd(fd, family, type_, proto)
191 def rebuild_socket(reduced_handle, family, type_, proto):
193 _sock = fromfd(fd, family, type_, proto)
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
H A Dsharedctypes.py61 def _new_value(type_):
62 size = ctypes.sizeof(type_)
64 return rebuild_ctype(type_, wrapper, None)
70 type_ = typecode_to_type.get(typecode_or_type, typecode_or_type)
71 obj = _new_value(type_)
80 type_ = typecode_to_type.get(typecode_or_type, typecode_or_type)
82 type_ = type_ * size_or_initializer
83 obj = _new_value(type_)
87 type_
[all...]
H A Dreduction.py181 def fromfd(fd, family, type_, proto=0):
182 s = socket.fromfd(fd, family, type_, proto)
191 def rebuild_socket(reduced_handle, family, type_, proto):
193 _sock = fromfd(fd, family, type_, proto)
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/
H A Dcontextquery.py42 type_ The type to match in the context.
61 type_ = CriteriaDescriptor("type_regex", "lookup_type") variable in class:ContextQuery
83 if self.type_ and not query.PolicyQuery._match_regex(
84 context.type_,
85 self.type_,
H A Dconstraintquery.py53 type_ The name of the type/attribute to match in the
71 type_ = CriteriaDescriptor("type_regex", "lookup_type_or_attr") variable in class:ConstraintQuery
105 self.log.debug("Type: {0.type_!r}, regex: {0.type_regex}".format(self))
128 if self.type_ and not self._match_expr(
130 self.type_,
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setoolsgui/setools/
H A Dcontextquery.py42 type_ The type to match in the context.
61 type_ = CriteriaDescriptor("type_regex", "lookup_type") variable in class:ContextQuery
83 if self.type_ and not query.PolicyQuery._match_regex(
84 context.type_,
85 self.type_,
H A Dconstraintquery.py53 type_ The name of the type/attribute to match in the
71 type_ = CriteriaDescriptor("type_regex", "lookup_type_or_attr") variable in class:ConstraintQuery
105 self.log.debug("Type: {0.type_!r}, regex: {0.type_regex}".format(self))
128 if self.type_ and not self._match_expr(
130 self.type_,
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/policyrep/
H A Dcontext.py43 return "{0.user}:{0.role}:{0.type_}:{0.range_}".format(self)
45 return "{0.user}:{0.role}:{0.type_}".format(self)
58 def type_(self): member in class:Context
60 return typeattr.type_factory(self.policy, self.qpol_symbol.type_(self.policy))
H A Drole.py62 for type_ in self.qpol_symbol.type_iter(self.policy):
63 yield typeattr.type_or_attr_factory(self.policy, type_)
H A Dtypeattr.py149 for type_ in self.expand():
150 if other == type_:
157 for type_ in self.qpol_symbol.type_iter(self.policy):
158 yield type_factory(self.policy, type_)
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setoolsgui/setools/policyrep/
H A Dcontext.py43 return "{0.user}:{0.role}:{0.type_}:{0.range_}".format(self)
45 return "{0.user}:{0.role}:{0.type_}".format(self)
58 def type_(self): member in class:Context
60 return typeattr.type_factory(self.policy, self.qpol_symbol.type_(self.policy))
H A Drole.py62 for type_ in self.qpol_symbol.type_iter(self.policy):
63 yield typeattr.type_or_attr_factory(self.policy, type_)
H A Dtypeattr.py149 for type_ in self.expand():
150 if other == type_:
157 for type_ in self.qpol_symbol.type_iter(self.policy):
158 yield type_factory(self.policy, type_)
/prebuilts/misc/common/swig/include/2.0.11/chicken/
H A Dtypemaps.i105 %define INOUT_TYPEMAP(type_, from_scheme, to_scheme, checker, convtype, storage_)
107 %typemap(in) type_ *INPUT($*1_ltype temp), type_ &INPUT($*1_ltype temp)
109 swig_barf (SWIG_BARF1_BAD_ARGUMENT_TYPE, "Argument #$argnum is not of type 'type_'");
114 %typemap(typecheck) type_ *INPUT = type_;
115 %typemap(typecheck) type_ &INPUT = type_;
117 %typemap(in, numinputs=0) type_ *OUTPUT($*1_ltype temp), type_
[all...]

Completed in 3471 milliseconds

12