Home
last modified time | relevance | path

Searched refs:PairType (Results 1 – 20 of 20) sorted by relevance

/external/llvm-project/llvm/utils/TableGen/
DInfoByHwMode.cpp34 for (const HwModeSelect::PairType &P : MS.Items) { in ValueTypeByHwMode()
88 std::vector<const PairType*> Pairs; in writeToStream()
91 llvm::sort(Pairs, deref<std::less<PairType>>()); in writeToStream()
95 const PairType *P = Pairs[i]; in writeToStream()
147 for (const HwModeSelect::PairType &P : MS.Items) { in RegSizeInfoByHwMode()
179 typedef typename decltype(Map)::value_type PairType; in writeToStream() typedef
180 std::vector<const PairType*> Pairs; in writeToStream()
183 llvm::sort(Pairs, deref<std::less<PairType>>()); in writeToStream()
187 const PairType *P = Pairs[i]; in writeToStream()
197 for (const HwModeSelect::PairType &P : MS.Items) { in EncodingInfoByHwMode()
DCodeGenHwModes.h37 typedef std::pair<unsigned, Record*> PairType; typedef
38 std::vector<PairType> Items;
DCodeGenHwModes.cpp49 for (const PairType &P : Items) in dump()
DInfoByHwMode.h63 typedef typename MapType::value_type PairType; typedef
/external/webrtc/modules/audio_processing/agc2/rnn_vad/
Dsymmetric_matrix_buffer_unittest.cc29 using PairType = std::pair<int, int>; typedef
35 const SymmetricMatrixBuffer<PairType, S>* sym_matrix_buf, in CheckPairsWithValueExist() argument
59 SymmetricMatrixBuffer<PairType, kRingBufSize> sym_matrix_buf; in TEST()
68 std::array<PairType, kRingBufSize - 1> new_comparions; in TEST()
/external/llvm/utils/TableGen/
DSearchableTableEmitter.cpp182 std::string PairType = "std::pair<" + FieldType + ", int>"; in emitLookupFunction() local
192 OS << " " << PairType << " Val = {CanonicalVal, 0};\n"; in emitLookupFunction()
196 OS << " " << PairType << " Val = {CanonicalVal.data(), 0};\n"; in emitLookupFunction()
199 OS << " ArrayRef<" << PairType << "> Table(" << Name << "sBy" << Field in emitLookupFunction()
207 OS << "[](const " << PairType << " &LHS, const " << PairType in emitLookupFunction()
/external/llvm-project/llvm/unittests/ADT/
DSTLExtrasTest.cpp93 typedef std::pair<std::size_t, int> PairType; in TEST() typedef
94 std::vector<PairType> Results; in TEST()
103 EXPECT_EQ(PairType(0u, 1), Results[0]); in TEST()
104 EXPECT_EQ(PairType(1u, 2), Results[1]); in TEST()
105 EXPECT_EQ(PairType(2u, 3), Results[2]); in TEST()
112 typedef std::pair<std::size_t, char> PairType; in TEST() typedef
113 std::vector<PairType> Results; in TEST()
121 EXPECT_EQ(PairType(0u, '2'), Results[0]); in TEST()
122 EXPECT_EQ(PairType(1u, '3'), Results[1]); in TEST()
123 EXPECT_EQ(PairType(2u, '4'), Results[2]); in TEST()
/external/llvm-project/clang/lib/Analysis/
DConsumed.cpp461 using PairType= std::pair<const Stmt *, PropagationInfo>; typedef in clang::consumed::ConsumedStmtVisitor
484 PropagationMap.insert(PairType(E->IgnoreParens(), PI)); in insertInfo()
677 PropagationMap.insert(PairType(Call, in handleCall()
697 PropagationMap.insert(PairType(Call, PropagationInfo(ReturnState))); in propagateReturnType()
725 PropagationMap.insert(PairType(BinOp, PropagationInfo(BinOp, in VisitBinaryOperator()
767 PropagationMap.insert(PairType(Temp, PropagationInfo(Temp))); in VisitCXXBindTemporaryExpr()
783 PropagationMap.insert(PairType(Call, PropagationInfo(RetState))); in VisitCXXConstructExpr()
785 PropagationMap.insert(PairType(Call, in VisitCXXConstructExpr()
798 PropagationMap.insert(PairType(Call, PropagationInfo(RetState))); in VisitCXXConstructExpr()
835 PropagationMap.insert(PairType(DeclRef, PropagationInfo(Var))); in VisitDeclRefExpr()
[all …]
/external/clang/lib/Analysis/
DConsumed.cpp459 typedef std::pair<const Stmt *, PropagationInfo> PairType; typedef in clang::consumed::ConsumedStmtVisitor
481 PropagationMap.insert(PairType(E->IgnoreParens(), PI)); in insertInfo()
680 PropagationMap.insert(PairType(Call, in handleCall()
701 PropagationMap.insert(PairType(Call, PropagationInfo(ReturnState))); in propagateReturnType()
732 PropagationMap.insert(PairType(BinOp, PropagationInfo(BinOp, in VisitBinaryOperator()
776 PropagationMap.insert(PairType(Temp, PropagationInfo(Temp))); in VisitCXXBindTemporaryExpr()
793 PropagationMap.insert(PairType(Call, PropagationInfo(RetState))); in VisitCXXConstructExpr()
795 PropagationMap.insert(PairType(Call, in VisitCXXConstructExpr()
808 PropagationMap.insert(PairType(Call, PropagationInfo(RetState))); in VisitCXXConstructExpr()
849 PropagationMap.insert(PairType(DeclRef, PropagationInfo(Var))); in VisitDeclRefExpr()
[all …]
/external/llvm-project/llvm/utils/unittest/googlemock/include/gmock/
Dgmock-matchers.h2943 template <typename PairType>
2944 class KeyMatcherImpl : public MatcherInterface<PairType> {
2946 typedef GTEST_REMOVE_REFERENCE_AND_CONST_(PairType) RawPairType;
2956 virtual bool MatchAndExplain(PairType key_value,
2992 template <typename PairType>
2993 operator Matcher<PairType>() const {
2994 return MakeMatcher(new KeyMatcherImpl<PairType>(matcher_for_key_));
3005 template <typename PairType>
3006 class PairMatcherImpl : public MatcherInterface<PairType> {
3008 typedef GTEST_REMOVE_REFERENCE_AND_CONST_(PairType) RawPairType;
[all …]
/external/googletest/googlemock/include/gmock/
Dgmock-matchers.h2774 template <typename PairType>
2775 class KeyMatcherImpl : public MatcherInterface<PairType> {
2777 typedef GTEST_REMOVE_REFERENCE_AND_CONST_(PairType) RawPairType;
2788 bool MatchAndExplain(PairType key_value,
2822 template <typename PairType>
2823 operator Matcher<PairType>() const {
2824 return Matcher<PairType>(
2825 new KeyMatcherImpl<const PairType&>(matcher_for_key_));
2877 template <typename PairType>
2878 class PairMatcherImpl : public MatcherInterface<PairType> {
[all …]
/external/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
DClangASTSource.cpp1432 typedef typename MapType::value_type PairType; in ImportOffsetMap() typedef
1433 std::vector<PairType> sorted_items; in ImportOffsetMap()
1437 [](const PairType &lhs, const PairType &rhs) { in ImportOffsetMap()
/external/libchrome/base/containers/
Dflat_tree_unittest.cc142 template <class PairType>
144 bool operator()(const PairType& lhs, const PairType& rhs) const { in operator ()()
/external/skqp/third_party/vulkanmemoryallocator/include/
Dvk_mem_alloc.h3657 typedef VmaPair<KeyT, ValueT> PairType;
3658 typedef PairType* iterator;
3660 VmaMap(const VmaStlAllocator<PairType>& allocator) : m_Vector(allocator) { }
3665 void insert(const PairType& pair);
3670 VmaVector< PairType, VmaStlAllocator<PairType> > m_Vector;
3689 void VmaMap<KeyT, ValueT>::insert(const PairType& pair)
3702 PairType* it = VmaBinaryFindFirstNotLess(
/external/fmtlib/test/gmock/
Dgmock.h7354 template <typename PairType>
7355 class KeyMatcherImpl : public MatcherInterface<PairType> {
7357 typedef GTEST_REMOVE_REFERENCE_AND_CONST_(PairType) RawPairType;
7367 virtual bool MatchAndExplain(PairType key_value,
7403 template <typename PairType>
7404 operator Matcher<PairType>() const {
7405 return MakeMatcher(new KeyMatcherImpl<PairType>(matcher_for_key_));
7416 template <typename PairType>
7417 class PairMatcherImpl : public MatcherInterface<PairType> {
7419 typedef GTEST_REMOVE_REFERENCE_AND_CONST_(PairType) RawPairType;
[all …]
/external/rust/crates/grpcio-sys/grpc/third_party/cares/cares/test/gmock-1.8.0/gmock/
Dgmock.h7757 template <typename PairType>
7758 class KeyMatcherImpl : public MatcherInterface<PairType> {
7760 typedef GTEST_REMOVE_REFERENCE_AND_CONST_(PairType) RawPairType;
7770 virtual bool MatchAndExplain(PairType key_value,
7806 template <typename PairType>
7807 operator Matcher<PairType>() const {
7808 return MakeMatcher(new KeyMatcherImpl<PairType>(matcher_for_key_));
7819 template <typename PairType>
7820 class PairMatcherImpl : public MatcherInterface<PairType> {
7822 typedef GTEST_REMOVE_REFERENCE_AND_CONST_(PairType) RawPairType;
[all …]
/external/vulkan-validation-layers/layers/
Dvk_mem_alloc.h4838 typedef VmaPair<KeyT, ValueT> PairType;
4839 typedef PairType* iterator;
4841 VmaMap(const VmaStlAllocator<PairType>& allocator) : m_Vector(allocator) { }
4846 void insert(const PairType& pair);
4851 VmaVector< PairType, VmaStlAllocator<PairType> > m_Vector;
4870 void VmaMap<KeyT, ValueT>::insert(const PairType& pair)
4883 PairType* it = VmaBinaryFindFirstNotLess(
/external/angle/third_party/vulkan_memory_allocator/src/
Dvk_mem_alloc.h5841 typedef VmaPair<KeyT, ValueT> PairType;
5842 typedef PairType* iterator;
5844 VmaMap(const VmaStlAllocator<PairType>& allocator) : m_Vector(allocator) { }
5849 void insert(const PairType& pair);
5854 VmaVector< PairType, VmaStlAllocator<PairType> > m_Vector;
5873 void VmaMap<KeyT, ValueT>::insert(const PairType& pair)
5886 PairType* it = VmaBinaryFindFirstNotLess(
/external/skia/third_party/vulkanmemoryallocator/include/
Dvk_mem_alloc.h5822 typedef VmaPair<KeyT, ValueT> PairType;
5823 typedef PairType* iterator;
5825 VmaMap(const VmaStlAllocator<PairType>& allocator) : m_Vector(allocator) { }
5830 void insert(const PairType& pair);
5835 VmaVector< PairType, VmaStlAllocator<PairType> > m_Vector;
5854 void VmaMap<KeyT, ValueT>::insert(const PairType& pair)
5867 PairType* it = VmaBinaryFindFirstNotLess(
/external/protobuf/src/google/protobuf/
Ddescriptor.cc409 template <typename PairType>
411 size_t operator()(const PairType& p) const { in operator ()()
423 inline bool operator()(const PairType& a, const PairType& b) const { in operator ()()