reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
80 template <typename E> typename std::underlying_type<E>::type Mask() { 84 E::LLVM_BITMASK_LARGEST_ENUMERATOR)) - 90 template <typename E> typename std::underlying_type<E>::type Underlying(E Val) { 99 E operator~(E Val) { 99 E operator~(E Val) { 100 return static_cast<E>(~Underlying(Val) & Mask<E>()); 105 E operator|(E LHS, E RHS) { 105 E operator|(E LHS, E RHS) { 105 E operator|(E LHS, E RHS) { 111 E operator&(E LHS, E RHS) { 111 E operator&(E LHS, E RHS) { 111 E operator&(E LHS, E RHS) { 126 E &operator|=(E &LHS, E RHS) { 126 E &operator|=(E &LHS, E RHS) { 126 E &operator|=(E &LHS, E RHS) { 133 E &operator&=(E &LHS, E RHS) { 133 E &operator&=(E &LHS, E RHS) { 133 E &operator&=(E &LHS, E RHS) {include/llvm/ADT/DenseMap.h
41 using std::pair<KeyT, ValueT>::pair;
include/llvm/ExecutionEngine/JITSymbol.h76 JITSymbolFlags(FlagNames Flags) : Flags(Flags) {} 80 JITSymbolFlags(FlagNames Flags, TargetFlagsType TargetFlags) 92 JITSymbolFlags &operator&=(const FlagNames &RHS) { 98 JITSymbolFlags &operator|=(const FlagNames &RHS) { 153 FlagNames Flags = None; 157 const JITSymbolFlags::FlagNames &RHS) { 164 const JITSymbolFlags::FlagNames &RHS) {lib/ExecutionEngine/Orc/Core.cpp
381 auto WeakFlags = JITSymbolFlags::Weak | JITSymbolFlags::Common;
usr/include/c++/7.4.0/bits/move.h72 constexpr _Tp&& 73 forward(typename std::remove_reference<_Tp>::type& __t) noexcept 83 constexpr _Tp&& 84 forward(typename std::remove_reference<_Tp>::type&& __t) noexceptusr/include/c++/7.4.0/bits/stl_pair.h
115 is_constructible<_T2, _U2&&>>::value; 122 is_convertible<_U2&&, _T2>>::value; 129 is_convertible<_U2&&, _T2>>; 134 is_constructible<_T2, _U2&&>, 325 constexpr pair(const _T1& __x, _U2&& __y) 341 constexpr pair(_U1&& __x, _U2&& __y) 342 : first(std::forward<_U1>(__x)), second(std::forward<_U2>(__y)) { }usr/include/c++/7.4.0/type_traits
1629 { typedef _Tp type; }; 1659 { typedef _Tp&& type; };