Home
last modified time | relevance | path

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

/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/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/google-breakpad/src/testing/include/gmock/
Dgmock-matchers.h2349 template <typename PairType>
2350 class KeyMatcherImpl : public MatcherInterface<PairType> {
2352 typedef GTEST_REMOVE_REFERENCE_AND_CONST_(PairType) RawPairType;
2362 virtual bool MatchAndExplain(PairType key_value,
2398 template <typename PairType>
2399 operator Matcher<PairType>() const {
2400 return MakeMatcher(new KeyMatcherImpl<PairType>(matcher_for_key_));
2411 template <typename PairType>
2412 class PairMatcherImpl : public MatcherInterface<PairType> {
2414 typedef GTEST_REMOVE_REFERENCE_AND_CONST_(PairType) RawPairType;
[all …]
/external/v8/testing/gmock/include/gmock/
Dgmock-matchers.h2938 template <typename PairType>
2939 class KeyMatcherImpl : public MatcherInterface<PairType> {
2941 typedef GTEST_REMOVE_REFERENCE_AND_CONST_(PairType) RawPairType;
2951 virtual bool MatchAndExplain(PairType key_value,
2987 template <typename PairType>
2988 operator Matcher<PairType>() const {
2989 return MakeMatcher(new KeyMatcherImpl<PairType>(matcher_for_key_));
3000 template <typename PairType>
3001 class PairMatcherImpl : public MatcherInterface<PairType> {
3003 typedef GTEST_REMOVE_REFERENCE_AND_CONST_(PairType) RawPairType;
[all …]
/external/googletest/googlemock/include/gmock/
Dgmock-matchers.h2938 template <typename PairType>
2939 class KeyMatcherImpl : public MatcherInterface<PairType> {
2941 typedef GTEST_REMOVE_REFERENCE_AND_CONST_(PairType) RawPairType;
2951 virtual bool MatchAndExplain(PairType key_value,
2987 template <typename PairType>
2988 operator Matcher<PairType>() const {
2989 return MakeMatcher(new KeyMatcherImpl<PairType>(matcher_for_key_));
3000 template <typename PairType>
3001 class PairMatcherImpl : public MatcherInterface<PairType> {
3003 typedef GTEST_REMOVE_REFERENCE_AND_CONST_(PairType) RawPairType;
[all …]
/external/swiftshader/third_party/LLVM/lib/TableGen/
DRecord.cpp1586 typedef std::pair<Init*, std::string> PairType; in get() typedef
1591 for (std::vector<PairType>::const_iterator i = args.begin(), in get()
/external/fmtlib/test/gmock/
Dgmock.h7353 template <typename PairType>
7354 class KeyMatcherImpl : public MatcherInterface<PairType> {
7356 typedef GTEST_REMOVE_REFERENCE_AND_CONST_(PairType) RawPairType;
7366 virtual bool MatchAndExplain(PairType key_value,
7402 template <typename PairType>
7403 operator Matcher<PairType>() const {
7404 return MakeMatcher(new KeyMatcherImpl<PairType>(matcher_for_key_));
7415 template <typename PairType>
7416 class PairMatcherImpl : public MatcherInterface<PairType> {
7418 typedef GTEST_REMOVE_REFERENCE_AND_CONST_(PairType) RawPairType;
[all …]
/external/protobuf/src/google/protobuf/
Ddescriptor.cc219 template<typename PairType>
221 size_t operator()(const PairType& p) const { in operator ()()
232 inline bool operator()(const PairType& a, const PairType& b) const { in operator ()()