Lines Matching refs:keys

56         std::map<std::string, std::string> &keys) const;
57 void SendParcelTest(const std::shared_ptr<Want> &want, std::map<std::string, std::string> &keys) const;
58 void AddBoolParams(Want &want, std::map<std::string, std::string> &keys, int loop, unsigned int flag) const;
59 void AddByteParams(Want &want, std::map<std::string, std::string> &keys, int loop, unsigned int flag) const;
60 void AddCharParams(Want &want, std::map<std::string, std::string> &keys, int loop, unsigned int flag) const;
61 void AddShortParams(Want &want, std::map<std::string, std::string> &keys, int loop, unsigned int flag) const;
62 void AddIntParams(Want &want, std::map<std::string, std::string> &keys, int loop, unsigned int flag) const;
63 void AddLongParams(Want &want, std::map<std::string, std::string> &keys, int loop, unsigned int flag) const;
64 void AddFloatParams(Want &want, std::map<std::string, std::string> &keys, int loop, unsigned int flag) const;
65 void AddDoubleParams(Want &want, std::map<std::string, std::string> &keys, int loop, unsigned int flag) const;
66 void AddStringParams(Want &want, std::map<std::string, std::string> &keys, int loop, unsigned int flag) const;
639 std::map<std::string, std::string> &keys) const
661 for (auto it = keys.begin(); it != keys.end(); it++) {
751 void WantBaseTest::SendParcelTest(const std::shared_ptr<Want> &want, std::map<std::string, std::string> &keys) const
768 result = CompareWant(want, wantNew, keys);
774 Want &want, std::map<std::string, std::string> &keys, int loop, unsigned int flag) const
782 keys[boolKey + std::to_string(i)] = boolType;
788 keys[key] = boolArrayType;
795 Want &want, std::map<std::string, std::string> &keys, int loop, unsigned int flag) const
804 keys[key] = byteType;
811 keys[key] = byteArrayType;
818 Want &want, std::map<std::string, std::string> &keys, int loop, unsigned int flag) const
827 keys[key] = charType;
834 keys[key] = charArrayType;
841 Want &want, std::map<std::string, std::string> &keys, int loop, unsigned int flag) const
850 keys[key] = shortType;
857 keys[key] = shortArrayType;
863 void WantBaseTest::AddIntParams(Want &want, std::map<std::string, std::string> &keys, int loop, unsigned int flag) const
872 keys[key] = intType;
879 keys[key] = intArrayType;
886 Want &want, std::map<std::string, std::string> &keys, int loop, unsigned int flag) const
895 keys[key] = longType;
902 keys[key] = longArrayType;
909 Want &want, std::map<std::string, std::string> &keys, int loop, unsigned int flag) const
918 keys[key] = floatType;
925 keys[key] = floatArrayType;
932 Want &want, std::map<std::string, std::string> &keys, int loop, unsigned int flag) const
941 keys[key] = doubleType;
948 keys[key] = doubleArrayType;
955 Want &want, std::map<std::string, std::string> &keys, int loop, unsigned int flag) const
964 keys[key] = stringType;
971 keys[key] = stringArrayType;
996 std::map<std::string, std::string> keys;
998 SendParcelTest(want, keys);
1022 std::map<std::string, std::string> keys;
1024 AddByteParams(*(want.get()), keys, loop, FLAG_TEST_BOTH);
1025 AddCharParams(*(want.get()), keys, loop, FLAG_TEST_BOTH);
1026 AddShortParams(*(want.get()), keys, loop, FLAG_TEST_BOTH);
1027 AddIntParams(*(want.get()), keys, loop, FLAG_TEST_BOTH);
1028 AddLongParams(*(want.get()), keys, loop, FLAG_TEST_BOTH);
1029 AddFloatParams(*(want.get()), keys, loop, FLAG_TEST_BOTH);
1030 AddDoubleParams(*(want.get()), keys, loop, FLAG_TEST_BOTH);
1031 AddStringParams(*(want.get()), keys, loop, FLAG_TEST_BOTH);
1033 SendParcelTest(want, keys);
1055 std::map<std::string, std::string> keys;
1057 SendParcelTest(want, keys);