Home
last modified time | relevance | path

Searched refs:ArgN (Results 1 – 11 of 11) sorted by relevance

/external/Reactive-Extensions/RxCpp/Rx/v2/src/rxcpp/
Drx-scheduler.hpp293 template<class Arg0, class... ArgN>
294 auto schedule(Arg0&& a0, ArgN&&... an) const
299 template<class... ArgN>
301 void schedule_rebind(const schedulable& scbl, ArgN&&... an) const;
304 template<class Arg0, class... ArgN>
305 auto schedule(clock_type::time_point when, Arg0&& a0, ArgN&&... an) const
311 template<class... ArgN>
312 void schedule_rebind(clock_type::time_point when, const schedulable& scbl, ArgN&&... an) const;
315 template<class Arg0, class... ArgN>
316 …dically(clock_type::time_point initial, clock_type::duration period, Arg0&& a0, ArgN&&... an) const
[all …]
Drx-observable.hpp171 template<class Obsvbl, class... ArgN>
172 static auto blocking_subscribe(const Obsvbl& source, bool do_rethrow, ArgN&&... an) in blocking_subscribe()
179 auto dest = make_subscriber<T>(std::forward<ArgN>(an)...); in blocking_subscribe()
237 template<class... ArgN>
238 auto subscribe(ArgN&&... an) const in subscribe()
240 return blocking_subscribe(source, false, std::forward<ArgN>(an)...); in subscribe()
262 template<class... ArgN>
263 auto subscribe_with_rethrow(ArgN&&... an) const in subscribe_with_rethrow()
265 return blocking_subscribe(source, true, std::forward<ArgN>(an)...); in subscribe_with_rethrow()
647 template<class... ArgN>
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/test/DebugInfo/AMDGPU/
Dvariable-locations.ll10 ; kernel void kernel1(unsigned int ArgN, global int addrspace(5)*ArgA, global int addrspace(5)*Ar…
11 ; ArgA[ArgN] += ArgB[ArgN];
40 ; CHECK-NEXT: DW_AT_name {{.*}}"ArgN"
41 i32 %ArgN,
51 %ArgN.addr = alloca i32, align 4, addrspace(5)
54 store i32 %ArgN, i32 addrspace(5)* %ArgN.addr, align 4
55 …call void @llvm.dbg.declare(metadata i32 addrspace(5)* %ArgN.addr, metadata !22, metadata !23), !d…
61 %1 = load i32, i32 addrspace(5)* %ArgN.addr, align 4, !dbg !30
66 %4 = load i32, i32 addrspace(5)* %ArgN.addr, align 4, !dbg !32
102 !22 = !DILocalVariable(name: "ArgN", arg: 1, scope: !13, file: !3, line: 4, type: !16)
/external/Reactive-Extensions/RxCpp/Rx/v2/src/rxcpp/operators/
Drx-subscribe.hpp86 template<class T, class... ArgN>
87 auto subscribe(ArgN&&... an) in subscribe()
88 -> detail::subscribe_factory<decltype (make_subscriber<T>(std::forward<ArgN>(an)...))> { in subscribe()
89 return detail::subscribe_factory<decltype (make_subscriber<T>(std::forward<ArgN>(an)...))> in subscribe()
90 (make_subscriber<T>(std::forward<ArgN>(an)...)); in subscribe()
Drx-tap.hpp50 template<class T, class... ArgN>
51 struct tap_observer_factory<T, std::tuple<ArgN...>>
54 …e = decltype(make_observer<source_value_type, rxcpp::detail::OnErrorIgnore>(*((ArgN*)nullptr)...));
55 auto operator()(ArgN&&... an) -> out_type const { in operator ()()
56 … return make_observer<source_value_type, rxcpp::detail::OnErrorIgnore>(std::forward<ArgN>(an)...); in operator ()()
/external/Reactive-Extensions/RxCpp/Rx/v2/src/rxcpp/schedulers/
Drx-test.hpp432 template<class Arg0, class... ArgN>
433 auto schedule_absolute(long when, Arg0&& a0, ArgN&&... an) const in schedule_absolute()
438 …chedule_absolute(when, make_schedulable(*this, std::forward<Arg0>(a0), std::forward<ArgN>(an)...)); in schedule_absolute()
441 template<class Arg0, class... ArgN>
442 auto schedule_relative(long when, Arg0&& a0, ArgN&&... an) const in schedule_relative()
447 …chedule_relative(when, make_schedulable(*this, std::forward<Arg0>(a0), std::forward<ArgN>(an)...)); in schedule_relative()
/external/swiftshader/third_party/LLVM/lib/TableGen/
DTGParser.cpp1418 unsigned int ArgN = 0; in ParseValueList() local
1421 const RecordVal *RV = ArgsRec->getValue(TArgs[ArgN]); in ParseValueList()
1423 errs() << "Cannot find template arg " << ArgN << " (" << TArgs[ArgN] in ParseValueList()
1428 ++ArgN; in ParseValueList()
1438 if (ArgN >= TArgs.size()) { in ParseValueList()
1442 const RecordVal *RV = ArgsRec->getValue(TArgs[ArgN]); in ParseValueList()
1445 ++ArgN; in ParseValueList()
/external/llvm/lib/TableGen/
DTGParser.cpp1637 unsigned int ArgN = 0; in ParseValueList() local
1644 const RecordVal *RV = ArgsRec->getValue(TArgs[ArgN]); in ParseValueList()
1646 errs() << "Cannot find template arg " << ArgN << " (" << TArgs[ArgN] in ParseValueList()
1651 ++ArgN; in ParseValueList()
1661 if (ArgN >= TArgs.size()) { in ParseValueList()
1665 const RecordVal *RV = ArgsRec->getValue(TArgs[ArgN]); in ParseValueList()
1668 ++ArgN; in ParseValueList()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/TableGen/
DTGParser.cpp2144 unsigned int ArgN = 0; in ParseValueList() local
2152 const RecordVal *RV = ArgsRec->getValue(TArgs[ArgN]); in ParseValueList()
2154 errs() << "Cannot find template arg " << ArgN << " (" << TArgs[ArgN] in ParseValueList()
2159 ++ArgN; in ParseValueList()
2172 if (ArgN >= TArgs.size()) { in ParseValueList()
2177 const RecordVal *RV = ArgsRec->getValue(TArgs[ArgN]); in ParseValueList()
2180 ++ArgN; in ParseValueList()
/external/llvm/lib/Target/WebAssembly/
DWebAssemblyISelLowering.cpp682 SDValue ArgN = DAG.getCopyFromReg(DAG.getEntryNode(), DL, in LowerVASTART() local
684 return DAG.getStore(Op.getOperand(0), DL, ArgN, Op.getOperand(1), in LowerVASTART()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/WebAssembly/
DWebAssemblyISelLowering.cpp881 SDValue ArgN = DAG.getCopyFromReg(DAG.getEntryNode(), DL, in LowerVASTART() local
883 return DAG.getStore(Op.getOperand(0), DL, ArgN, Op.getOperand(1), in LowerVASTART()