Home
last modified time | relevance | path

Searched refs:_states (Results 1 – 5 of 5) sorted by relevance

/third_party/libunwind/doc/
Dunw_reg_states_iterate.tex8 \begin{Name}{3}{unw\_reg\_states\_iterate}{David Mosberger-Tang}{Programming Library}{unw\_reg\_sta…
15 \Type{int} \Func{unw\_reg\_states\_iterate}(\Type{unw\_cursor\_t~*}\Var{cp}, \Type{unw\_reg\_states
19 The \Func{unw\_reg\_states\_iterate}() routine provides
22 to a function of type \Type{unw\_reg\_states\_callback} which is used to
23 return the information. The function \Type{unw\_reg\_states\_callback} has the
26 \Type{int} (~*\Var{unw\_reg\_states\_callback})(\Type{void~*}\Var{token},
27 \Type{void~*}\Var{reg\_states\_data},
28 \Type{size\_t} \Var{reg\_states\_data\_size},
31 The callback function may be invoked several times for each call of \Func{unw\_reg\_states\_iterate…
33 \item[\Type{void~*} \Var{token}] The token value passed to \Var{unw\_reg\_states\_callback}. \\
[all …]
Dunw_apply_reg_state.tex17 \Type{void~*}\Var{reg\_states\_data});\\
22 of a cursor according to the instructions in \Var{reg\_states\_data},
23 which have been obtained by calling \Var{unw\_reg\_states\_iterate}.
53 \SeeAlso{unw\_reg\_states\_iterate(3)}
/third_party/python/Lib/idlelib/
Dmulticall.py118 _states = range(1 << len(_modifiers)) variable
122 for s in _states]
142 _state_subsets = expand_substates(_states)
146 for s in _states:
195 self.bindedfuncs = {None: [[] for s in _states]}
206 for s in _states:
215 self.bindedfuncs[triplet[2]] = [[] for s in _states]
216 for s in _states:
/third_party/flutter/flutter/packages/flutter/lib/src/material/
Dbutton.dart251 final Set<MaterialState> _states = <MaterialState>{};
253 bool get _hovered => _states.contains(MaterialState.hovered);
254 bool get _focused => _states.contains(MaterialState.focused);
255 bool get _pressed => _states.contains(MaterialState.pressed);
256 bool get _disabled => _states.contains(MaterialState.disabled);
259 value ? _states.add(state) : _states.remove(state);
328 …olor effectiveTextColor = MaterialStateProperty.resolveAs<Color>(widget.textStyle?.color, _states);
329 … ShapeBorder effectiveShape = MaterialStateProperty.resolveAs<ShapeBorder>(widget.shape, _states);
Dchip.dart1475 final Set<MaterialState> _states = <MaterialState>{};
1566 value ? _states.add(state) : _states.remove(state);
1721 … resolvedLabelColor = MaterialStateProperty.resolveAs<Color>(effectiveLabelStyle?.color, _states);