Home
last modified time | relevance | path

Searched refs:_tuple (Results 1 – 25 of 203) sorted by relevance

123456789

/dports/devel/py-purl/purl-1.6/purl/
H A Durl.py187 return self._tuple == other._tuple
190 return self._tuple != other._tuple
199 return hash(self._tuple)
202 return str(self._tuple)
205 url = self._tuple
225 url = self._tuple
244 return self._tuple.host
318 return self._tuple.path
329 return self._tuple.query
340 return self._tuple.port
[all …]
/dports/devel/py-jedi/jedi-0.18.0/jedi/inference/gradual/
H A Dgenerics.py45 return self._tuple()[index]()
48 return len(self._tuple())
52 def _tuple(self): member in LazyGenericManager
70 for callable_ in self._tuple():
86 self._tuple = tup
89 return self._tuple[index]
92 return len(self._tuple)
95 return self._tuple
/dports/games/libretro-scummvm/scummvm-7b1e929/engines/sci/
H A Dresource.h158 uint32 _tuple; // Only used for audio36 and sync36 variable
176 ResourceId() : _type(kResourceTypeInvalid), _number(0), _tuple(0) { } in ResourceId()
179 : _type(fixupType(type_)), _number(number_), _tuple(tuple_) { in _type()
184 _tuple = (noun << 24) | (verb << 16) | (cond << 8) | seq; in ResourceId()
190 if (_tuple != 0) { in toString()
191 … Common::String::format("(%d, %d, %d, %d)", _tuple >> 24, (_tuple >> 16) & 0xff, (_tuple >> 8) & 0… in toString()
219 inline uint32 getTuple() const { return _tuple; } in getTuple()
222 return ((uint)((_type << 16) | _number)) ^ _tuple; in hash()
226 return (_type == other._type) && (_number == other._number) && (_tuple == other._tuple);
235 || ((_type == other._type) && (_number == other._number) && (_tuple < other._tuple));
/dports/math/py-Diofant/Diofant-0.13.0/diofant/ntheory/
H A Dmultinomial.py119 def multinomial_coefficients_iterator(m, n, _tuple=tuple): argument
149 mc1[_tuple(filter(None, k))] = v
153 t1 = _tuple(t)
154 b = _tuple(filter(None, t1))
175 t1 = _tuple(t)
176 b = _tuple(filter(None, t1))
/dports/games/scummvm/scummvm-2.5.1/engines/sci/resource/
H A Dresource.h159 uint32 _tuple; // Only used for audio36 and sync36 variable
177 ResourceId() : _type(kResourceTypeInvalid), _number(0), _tuple(0) { } in ResourceId()
180 : _type(fixupType(type_)), _number(number_), _tuple(tuple_) { in _type()
185 _tuple = (noun << 24) | (verb << 16) | (cond << 8) | seq; in ResourceId()
191 if (_tuple != 0) { in toString()
192 … Common::String::format("(%d, %d, %d, %d)", _tuple >> 24, (_tuple >> 16) & 0xff, (_tuple >> 8) & 0… in toString()
220 inline uint32 getTuple() const { return _tuple; } in getTuple()
223 return ((uint)((_type << 16) | _number)) ^ _tuple; in hash()
227 return (_type == other._type) && (_number == other._number) && (_tuple == other._tuple);
236 || ((_type == other._type) && (_number == other._number) && (_tuple < other._tuple));
/dports/math/py-sympy/sympy-1.9/sympy/ntheory/
H A Dmultinomial.py129 def multinomial_coefficients_iterator(m, n, _tuple=tuple): argument
160 mc1[_tuple(filter(None, k))] = v
164 t1 = _tuple(t)
165 b = _tuple(filter(None, t1))
186 t1 = _tuple(t)
187 b = _tuple(filter(None, t1))
/dports/net/py-geopy/geopy-2.2.0/geopy/
H A Dlocation.py36 self._tuple = _location_tuple(self)
108 return self._tuple[index]
119 return iter(self._tuple)
126 self._tuple = _location_tuple(self)
140 return len(self._tuple)
/dports/lang/solidity/solidity_0.8.11/test/yulPhaser/
H A DTestHelpers.h51 std::ostream& operator<<(std::ostream& _output, std::tuple<T1, T2> const& _tuple)
53 _output << "(" << std::get<0>(_tuple) << ", " << std::get<1>(_tuple) << ")";
65 …rator()(std::ostream& _output, std::tuple<T1, T2> const& _tuple) { ::operator<<(_output, _tuple); }
/dports/databases/xtrabackup8/percona-xtrabackup-8.0.14/mysql-test/suite/group_replication/include/
H A Dassert_notifications.inc49 --let $_tuple= `SELECT SUBSTRING_INDEX('$_expected_notifications', '|', 1)`
50 --let $_notification_count= `SELECT SUBSTRING_INDEX('$_tuple', ',', 1)`
56 …pected_notifications= `SELECT LTRIM(SUBSTRING('$_expected_notifications', LENGTH('$_tuple') + 2 ))`
80 --let $_tuple= `SELECT SUBSTRING_INDEX('$_expected_notifications', '|', 1)`
81 --let $_notification_count= `SELECT SUBSTRING_INDEX('$_tuple', ',', 1)`
82 …--let $_notification= `SELECT SUBSTRING_INDEX(LTRIM(SUBSTRING('$_tuple', LENGTH('$_notification_co…
90 …pected_notifications= `SELECT LTRIM(SUBSTRING('$_expected_notifications', LENGTH('$_tuple') + 2 ))`
/dports/databases/cego/cego-2.47.11/src/
H A DCegoOrderNode.cc36 _tuple = tuple; in CegoOrderNode()
51 return _tuple; in getTuple()
57 _tuple = n._tuple; in operator =()
/dports/devel/sope2/SOPE/sope-gdl1/PostgreSQL/
H A DPGResultSet.m125 - (BOOL)isNullTuple:(int)_tuple atIndex:(unsigned int)_idx {
127 return PQgetisnull(self->results, _tuple, _idx) ? YES : NO;
130 - (void *)rawValueOfTuple:(int)_tuple atIndex:(unsigned int)_idx {
132 return PQgetvalue(self->results, _tuple, _idx);
135 - (int)lengthOfTuple:(int)_tuple atIndex:(unsigned int)_idx {
137 return PQgetlength(self->results, _tuple, _idx);
H A DPGConnection.h119 - (BOOL)isNullTuple:(int)_tuple atIndex:(unsigned int)_idx;
120 - (void *)rawValueOfTuple:(int)_tuple atIndex:(unsigned int)_idx;
121 - (int)lengthOfTuple:(int)_tuple atIndex:(unsigned int)_idx;
/dports/devel/sope/SOPE/sope-gdl1/PostgreSQL/
H A DPGResultSet.m125 - (BOOL)isNullTuple:(int)_tuple atIndex:(unsigned int)_idx {
127 return PQgetisnull(self->results, _tuple, _idx) ? YES : NO;
130 - (void *)rawValueOfTuple:(int)_tuple atIndex:(unsigned int)_idx {
132 return PQgetvalue(self->results, _tuple, _idx);
135 - (int)lengthOfTuple:(int)_tuple atIndex:(unsigned int)_idx {
137 return PQgetlength(self->results, _tuple, _idx);
H A DPGConnection.h119 - (BOOL)isNullTuple:(int)_tuple atIndex:(unsigned int)_idx;
120 - (void *)rawValueOfTuple:(int)_tuple atIndex:(unsigned int)_idx;
121 - (int)lengthOfTuple:(int)_tuple atIndex:(unsigned int)_idx;
/dports/devel/efl/efl-1.25.1/src/bindings/cxx/eo_cxx/
H A Deo_private.hh53 args_class(Tuple tuple) : _tuple(tuple) {} in args_class()
67 return std::get<N>(_tuple); in get()
78 Tuple _tuple; ///< The sequence of arguments. member
/dports/devel/sope/SOPE/sope-appserver/NGObjWeb/SoObjects/
H A DSoDefaultRenderer.m163 - (NSException *)renderTuple:(NSArray *)_tuple inContext:(WOContext *)_ctx {
172 switch ([_tuple count]) {
175 body = [_tuple objectAtIndex:0];
178 title = [_tuple objectAtIndex:0];
179 body = [_tuple objectAtIndex:1];
182 title = [_tuple objectAtIndex:0];
183 body = [[_tuple subarrayWithRange:NSMakeRange(1, [_tuple count] - 1)]
/dports/devel/sope2/SOPE/sope-appserver/NGObjWeb/SoObjects/
H A DSoDefaultRenderer.m163 - (NSException *)renderTuple:(NSArray *)_tuple inContext:(WOContext *)_ctx {
172 switch ([_tuple count]) {
175 body = [_tuple objectAtIndex:0];
178 title = [_tuple objectAtIndex:0];
179 body = [_tuple objectAtIndex:1];
182 title = [_tuple objectAtIndex:0];
183 body = [[_tuple subarrayWithRange:NSMakeRange(1, [_tuple count] - 1)]
/dports/lang/solidity/solidity_0.8.11/libsolidity/analysis/
H A DConstantEvaluator.cpp392 void ConstantEvaluator::endVisit(TupleExpression const& _tuple) in endVisit() argument
394 if (!_tuple.isInlineArray() && _tuple.components().size() == 1) in endVisit()
395 m_values[&_tuple] = evaluate(*_tuple.components().front()); in endVisit()
/dports/science/py-cirq-pasqal/Cirq-0.13.1/cirq-core/cirq/study/
H A Dsweeps.py326 return self._tuple() == other._tuple()
329 return hash((self.__class__, self._tuple()))
332 def _tuple(self) -> Tuple[Any, ...]: member in SingleSweep
355 def _tuple(self) -> Tuple[Union[str, sympy.Symbol], Sequence[float]]: member in Points
382 def _tuple(self) -> Tuple[Union[str, sympy.Symbol], float, float, int]: member in Linspace
/dports/science/py-cirq-core/Cirq-0.13.1/cirq-core/cirq/study/
H A Dsweeps.py326 return self._tuple() == other._tuple()
329 return hash((self.__class__, self._tuple()))
332 def _tuple(self) -> Tuple[Any, ...]: member in SingleSweep
355 def _tuple(self) -> Tuple[Union[str, sympy.Symbol], Sequence[float]]: member in Points
382 def _tuple(self) -> Tuple[Union[str, sympy.Symbol], float, float, int]: member in Linspace
/dports/science/py-cirq-google/Cirq-0.13.0/cirq-core/cirq/study/
H A Dsweeps.py326 return self._tuple() == other._tuple()
329 return hash((self.__class__, self._tuple()))
332 def _tuple(self) -> Tuple[Any, ...]: member in SingleSweep
355 def _tuple(self) -> Tuple[Union[str, sympy.Symbol], Sequence[float]]: member in Points
382 def _tuple(self) -> Tuple[Union[str, sympy.Symbol], float, float, int]: member in Linspace
/dports/science/py-cirq-ionq/Cirq-0.13.1/cirq-core/cirq/study/
H A Dsweeps.py326 return self._tuple() == other._tuple()
329 return hash((self.__class__, self._tuple()))
332 def _tuple(self) -> Tuple[Any, ...]: member in SingleSweep
355 def _tuple(self) -> Tuple[Union[str, sympy.Symbol], Sequence[float]]: member in Points
382 def _tuple(self) -> Tuple[Union[str, sympy.Symbol], float, float, int]: member in Linspace
/dports/science/py-cirq-aqt/Cirq-0.12.0/cirq-core/cirq/study/
H A Dsweeps.py326 return self._tuple() == other._tuple()
329 return hash((self.__class__, self._tuple()))
332 def _tuple(self) -> Tuple[Any, ...]: member in SingleSweep
355 def _tuple(self) -> Tuple[Union[str, sympy.Symbol], Sequence[float]]: member in Points
382 def _tuple(self) -> Tuple[Union[str, sympy.Symbol], float, float, int]: member in Linspace
/dports/x11-wm/windowmaker/WindowMaker-0.95.9/src/
H A Dmain.c274 } _tuple; typedef
278 _tuple *data = (_tuple *) client_data; in shellCommandHandler()
332 _tuple *data = wmalloc(sizeof(_tuple)); in ExecuteShellCommand()
390 _tuple *data = wmalloc(sizeof(_tuple)); in RelaunchWindow()
/dports/x11-wm/libwraster/WindowMaker-0.95.9/src/
H A Dmain.c274 } _tuple; typedef
278 _tuple *data = (_tuple *) client_data; in shellCommandHandler()
332 _tuple *data = wmalloc(sizeof(_tuple)); in ExecuteShellCommand()
390 _tuple *data = wmalloc(sizeof(_tuple)); in RelaunchWindow()

123456789