Home
last modified time | relevance | path

Searched refs:CurrentResult (Results 1 – 8 of 8) sorted by relevance

/external/google-fruit/include/fruit/impl/meta/
Dmap.h42 template <typename CurrentResult, typename T>
44 using type = CurrentResult;
46 template <typename CurrentResult, typename Value>
47 struct apply<CurrentResult, Pair<TToFind, Value>> {
63 template <typename CurrentResult, typename T>
65 using type = CurrentResult;
67 template <typename CurrentResult, typename Value>
68 struct apply<CurrentResult, Pair<TToFind, Value>> {
84 template <typename CurrentResult, typename T>
86 using type = CurrentResult;
[all …]
Dgraph.h55 template <typename CurrentResult, typename Neighbor>
57 using type = If(IsNone(typename CurrentResult::Second),
59 DfsVisit(typename CurrentResult::First, NewVisitingSet, Neighbor),
62 CurrentResult);
91 template <typename CurrentResult, typename Node>
93 using DfsResult = DfsVisit(GetFirst(CurrentResult), EmptySet, Node);
94 using type = If(IsNone(GetSecond(CurrentResult)),
98 CurrentResult);
Dset.h79 template <typename CurrentResult, typename T>
81 using type = And(CurrentResult, IsInSet(T, S2));
94 template <typename CurrentResult, typename T>
96 using type = Or(CurrentResult, IsInSet(T, S2));
125 template <typename CurrentResult, typename T>
127 using type = If(IsInSet(T, S2), CurrentResult, AddToSetUnchecked(CurrentResult, T));
139 template <typename CurrentResult, typename T>
141 using type = If(IsInSet(T, S2), AddToSetUnchecked(CurrentResult, T), CurrentResult);
Dproof_tree_comparison.h43 template <typename CurrentResult, typename EntailedProof>
46 template <typename CurrentResult, typename EntailedProofTh, typename EntailedProofHps>
47 struct apply<CurrentResult, Pair<EntailedProofTh, EntailedProofHps>> {
48 …using type = And(CurrentResult, IsProofEntailedByForest(EntailedProofTh, EntailedProofHps, Forest)…
96 template <typename CurrentResult, typename EntailedProof>
99 template <typename CurrentResult, typename EntailedProofTh, typename EntailedProofHps>
100 struct apply<CurrentResult, Pair<EntailedProofTh, EntailedProofHps>> {
101 using type = PropagateError(CurrentResult,
Dcomponent.h341 template <typename CurrentResult, typename T>
343 using type = CurrentResult;
346 template <typename CurrentResult, typename T>
347 struct apply<CurrentResult, Type<Assisted<T>>> {
348 using type = PushBack(CurrentResult, Type<T>);
361 template <typename CurrentResult, typename T>
363 using type = PushBack(CurrentResult, T);
367 template <typename CurrentResult, typename T>
368 struct apply<CurrentResult, Type<Assisted<T>>> {
369 using type = CurrentResult;
[all …]
/external/llvm/include/llvm/Analysis/
DAliasAnalysis.h732 DerivedT &CurrentResult; variable
735 AAResultsProxy(AAResults *AAR, DerivedT &CurrentResult) in AAResultsProxy() argument
736 : AAR(AAR), CurrentResult(CurrentResult) {} in AAResultsProxy()
739 return AAR ? AAR->alias(LocA, LocB) : CurrentResult.alias(LocA, LocB); in alias()
744 : CurrentResult.pointsToConstantMemory(Loc, OrLocal); in pointsToConstantMemory()
748 return AAR ? AAR->getArgModRefInfo(CS, ArgIdx) : CurrentResult.getArgModRefInfo(CS, ArgIdx); in getArgModRefInfo()
752 return AAR ? AAR->getModRefBehavior(CS) : CurrentResult.getModRefBehavior(CS); in getModRefBehavior()
756 return AAR ? AAR->getModRefBehavior(F) : CurrentResult.getModRefBehavior(F); in getModRefBehavior()
761 : CurrentResult.getModRefInfo(CS, Loc); in getModRefInfo()
765 return AAR ? AAR->getModRefInfo(CS1, CS2) : CurrentResult.getModRefInfo(CS1, CS2); in getModRefInfo()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Analysis/
DAliasAnalysis.h889 DerivedT &CurrentResult; variable
892 AAResultsProxy(AAResults *AAR, DerivedT &CurrentResult) in AAResultsProxy() argument
893 : AAR(AAR), CurrentResult(CurrentResult) {} in AAResultsProxy()
896 return AAR ? AAR->alias(LocA, LocB) : CurrentResult.alias(LocA, LocB); in alias()
901 : CurrentResult.pointsToConstantMemory(Loc, OrLocal); in pointsToConstantMemory()
905 return AAR ? AAR->getArgModRefInfo(CS, ArgIdx) : CurrentResult.getArgModRefInfo(CS, ArgIdx); in getArgModRefInfo()
909 return AAR ? AAR->getModRefBehavior(CS) : CurrentResult.getModRefBehavior(CS); in getModRefBehavior()
913 return AAR ? AAR->getModRefBehavior(F) : CurrentResult.getModRefBehavior(F); in getModRefBehavior()
918 : CurrentResult.getModRefInfo(CS, Loc); in getModRefInfo()
922 return AAR ? AAR->getModRefInfo(CS1, CS2) : CurrentResult.getModRefInfo(CS1, CS2); in getModRefInfo()
/external/google-fruit/include/fruit/impl/
Dcomponent_functors.defn.h1195 template <typename CurrentResult, typename T>
1200 CurrentResult);