Home
last modified time | relevance | path

Searched refs:triplet (Results 1 – 25 of 50) sorted by relevance

12

/external/python/cpython2/Lib/idlelib/
DMultiCall.py77 def bind(self, triplet, func): argument
93 def unbind(self, triplet, func): argument
203 def bind(self, triplet, func): argument
204 if triplet[2] not in self.bindedfuncs:
205 self.bindedfuncs[triplet[2]] = [[] for s in _states]
208 for detail in (triplet[2], None)
212 seq = "<%s%s-%s>"% (_state_names[s], self.typename, triplet[2])
215 doit = lambda: self.bindedfuncs[triplet[2]][triplet[0]].append(func)
221 def unbind(self, triplet, func): argument
222 doit = lambda: self.bindedfuncs[triplet[2]][triplet[0]].remove(func)
[all …]
/external/python/cpython3/Lib/idlelib/
Dmulticall.py82 def bind(self, triplet, func): argument
98 def unbind(self, triplet, func): argument
213 def bind(self, triplet, func): argument
214 if triplet[2] not in self.bindedfuncs:
215 self.bindedfuncs[triplet[2]] = [[] for s in _states]
218 for detail in (triplet[2], None)
222 seq = "<%s%s-%s>"% (_state_names[s], self.typename, triplet[2])
225 doit = lambda: self.bindedfuncs[triplet[2]][triplet[0]].append(func)
231 def unbind(self, triplet, func): argument
232 doit = lambda: self.bindedfuncs[triplet[2]][triplet[0]].remove(func)
[all …]
/external/Reactive-Extensions/RxCpp/Rx/v2/test/operators/
Dconcat_map.cpp38 [](int /*x*/, std::tuple<int,int,int> triplet){return triplet;}) in __anon7becb6260102() argument
41 [](int /*z*/, std::tuple<int,int,int> triplet){return triplet;}); in __anon7becb6260602() argument
85 [](int /*x*/, std::tuple<int,int,int> triplet){return triplet;}, in __anon7becb6260902() argument
89 [](int /*z*/, std::tuple<int,int,int> triplet){return triplet;}, in __anon7becb6260e02() argument
133 [](int /*x*/, std::tuple<int,int,int> triplet){return triplet;}, in __anon7becb6260f02() argument
137 [](int /*z*/, std::tuple<int,int,int> triplet){return triplet;}, in __anon7becb6261402() argument
182 [](int /*x*/, std::tuple<int,int,int> triplet){return triplet;}, in __anon7becb6261502() argument
186 [](int /*z*/, std::tuple<int,int,int> triplet){return triplet;}, in __anon7becb6261a02() argument
Dflat_map.cpp73 [](int /*x*/, std::tuple<int,int,int> triplet){return triplet;}) in __anon63d55a350102() argument
76 [](int /*z*/, std::tuple<int,int,int> triplet){return triplet;}); in __anon63d55a350602() argument
121 [](int /*x*/, std::tuple<int,int,int> triplet){return triplet;}, in __anon63d55a350802() argument
125 [](int /*z*/, std::tuple<int,int,int> triplet){return triplet;}, in __anon63d55a350d02() argument
169 [](int /*x*/, std::tuple<int,int,int> triplet){return triplet;}, in __anon63d55a350e02() argument
173 [](int /*z*/, std::tuple<int,int,int> triplet){return triplet;}, in __anon63d55a351302() argument
217 [](int /*x*/, std::tuple<int,int,int> triplet){return triplet;}, in __anon63d55a351402() argument
221 [](int /*z*/, std::tuple<int,int,int> triplet){return triplet;}, in __anon63d55a351902() argument
/external/llvm-project/flang/lib/Evaluate/
Dfold.cpp28 [&](Triplet &triplet) -> std::optional<Constant<SubscriptInteger>> { in GetConstantSubscript() argument
29 auto lower{triplet.lower()}, upper{triplet.upper()}; in GetConstantSubscript()
30 std::optional<ConstantSubscript> stride{ToInt64(triplet.stride())}; in GetConstantSubscript()
103 Triplet FoldOperation(FoldingContext &context, Triplet &&triplet) { in FoldOperation() argument
104 MaybeExtentExpr lower{triplet.lower()}; in FoldOperation()
105 MaybeExtentExpr upper{triplet.upper()}; in FoldOperation()
107 Fold(context, triplet.stride())}; in FoldOperation()
116 [&](Triplet &&triplet) { in FoldOperation() argument
118 FoldOperation(context, std::move(triplet))); in FoldOperation()
Dfold-designator.cpp106 [&](const Triplet &triplet) { in FoldDesignator() argument
108 triplet.lower().value_or(ExtentExpr{lower})))}; in FoldDesignator()
110 triplet.upper().value_or(ExtentExpr{upper})))}; in FoldDesignator()
111 auto step{ToInt64(Fold(context_, triplet.stride()))}; in FoldDesignator()
Dcheck-expression.cpp594 if (const auto *triplet{std::get_if<Triplet>(&subscript[j].u)}) { in CheckSubscripts() local
595 if (!triplet->IsStrideOne()) { in CheckSubscripts()
598 if (triplet->lower() || triplet->upper()) { in CheckSubscripts()
Dshape.cpp303 [&](const Triplet &triplet) -> MaybeExtentExpr { in GetExtent() argument
304 MaybeExtentExpr upper{triplet.upper()}; in GetExtent()
308 MaybeExtentExpr lower{triplet.lower()}; in GetExtent()
313 MaybeExtentExpr{triplet.stride()}); in GetExtent()
/external/Reactive-Extensions/RxCpp/Rx/v2/examples/pythagorian/
Dmain.cpp128 [](int /*x*/, std::tuple<int,int,int> triplet){return triplet;}) in wmain() argument
131 [](int /*z*/, std::tuple<int,int,int> triplet){return triplet;}); in wmain() argument
/external/llvm-project/flang/lib/Semantics/
Dcheck-data.cpp127 [&](const evaluate::Triplet &triplet) { in operator ()() argument
128 return CheckSubscriptExpr(triplet.lower()) && in operator ()()
129 CheckSubscriptExpr(triplet.upper()) && in operator ()()
130 CheckSubscriptExpr(triplet.stride()); in operator ()()
Dcheck-omp-structure.cpp674 if (const auto *triplet{ in CheckDependArraySection() local
676 if (std::get<2>(triplet->t)) { in CheckDependArraySection()
681 const auto &lower{std::get<0>(triplet->t)}; in CheckDependArraySection()
682 const auto &upper{std::get<1>(triplet->t)}; in CheckDependArraySection()
Dexpression.cpp304 if (auto *triplet{std::get_if<parser::SubscriptTriplet>(&iter->u)}) { in FixMisparsedSubstring() local
305 if (!std::get<2>(triplet->t) /* no stride */ && in FixMisparsedSubstring()
1303 [&](const parser::AcValue::Triplet &triplet) { Add(triplet); }, in Add() argument
1315 void ArrayConstructorContext::Add(const parser::AcValue::Triplet &triplet) { in Add() argument
1317 GetSpecificIntExpr<ImpliedDoIntType::kind>(std::get<0>(triplet.t))}; in Add()
1319 GetSpecificIntExpr<ImpliedDoIntType::kind>(std::get<1>(triplet.t))}; in Add()
1321 GetSpecificIntExpr<ImpliedDoIntType::kind>(std::get<2>(triplet.t))}; in Add()
/external/wpa_supplicant_8/hostapd/
Dhlr_auc_gw.txt11 text files: GSM triplet file (see hostapd.sim_db) and Milenage file (see
14 GSM triplet data is used for a more static configuration (e.g., triplets
26 hlr_auc_gw [-hu] [-s<socket path>] [-g<triplet file>] [-m<milenage file>] \
34 -g<triplet file> = path for GSM authentication triplets
Dhostapd.sim_db1 # Example GSM authentication triplet file for EAP-SIM authenticator
/external/iw/
Dscan.c553 union ieee80211_country_ie_triplet *triplet = (void *) data; in print_country() local
555 if (triplet->ext.reg_extension_id >= IEEE80211_COUNTRY_EXTENSION_ID) { in print_country()
557 triplet->ext.reg_extension_id, in print_country()
558 triplet->ext.reg_class, in print_country()
559 triplet->ext.coverage_class, in print_country()
560 triplet->ext.coverage_class * 450); in print_country()
568 if (triplet->chans.first_channel <= 14) in print_country()
569 end_channel = triplet->chans.first_channel + (triplet->chans.num_channels - 1); in print_country()
571 end_channel = triplet->chans.first_channel + (4 * (triplet->chans.num_channels - 1)); in print_country()
573 …printf("\t\tChannels [%d - %d] @ %d dBm\n", triplet->chans.first_channel, end_channel, triplet->ch… in print_country()
/external/llvm-project/flang/lib/Parser/
Dparse-tree.cpp197 auto &triplet{std::get<SubscriptTriplet>(iter->u)}; in ConvertToSubstring() local
198 CHECK(!std::get<2>(triplet.t)); in ConvertToSubstring()
201 SubstringRange{std::get<0>(std::move(triplet.t)), in ConvertToSubstring()
202 std::get<1>(std::move(triplet.t))}}; in ConvertToSubstring()
/external/arm-trusted-firmware/drivers/scmi-msg/
Dclock.c324 unsigned long triplet[3] = { 0U, 0U, 0U }; in scmi_clock_describe_rates() local
328 triplet); in scmi_clock_describe_rates()
331 triplet, 3U); in scmi_clock_describe_rates()
/external/curl/tests/
Dtestcurl.pl251 my $triplet;
257 $triplet = $1;
263 return $triplet;
/external/swiftshader/third_party/llvm-10.0/scripts/
Dupdate.py173 for arch_def, triplet in LLVM_TRIPLES[platform]:
/external/catch2/docs/
Down-main.md118 Catch provides a triplet of macros providing the header's version,
/external/eigen/doc/
DTutorialSparse.dox97 …le>, and a triplet list of the same scalar type \c Triplet<double>. A triplet is a simple object …
/external/perfetto/gn/standalone/toolchain/
DBUILD.gn127 …"Cannot guess the target triplet from the target_os and target_cpu combination. Please set the tar…
/external/iputils/ninfod/
Dconfigure2228 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet"…
2229 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
2428 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet"…
2429 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
/external/python/cpython3/Misc/NEWS.d/
D3.5.0a4.rst8 architecture triplet in the extension name, to make it easy to test builds
/external/python/cpython3/
Dconfigure.ac724 AC_MSG_CHECKING([for the platform triplet based on compiler characteristics])
786 # error unknown platform triplet
796 # error unknown platform triplet
806 # error unknown platform triplet
816 # error unknown platform triplet
846 # error unknown platform triplet
849 # error unknown platform triplet
857 # error unknown platform triplet
866 # error unknown platform triplet
881 AC_MSG_ERROR([internal configure error for the platform triplet, please file a bug report])

12