HomeSort by relevance Sort by last modified time
    Searched refs:key_value_pairs (Results 1 - 16 of 16) sorted by null

  /external/chromium_org/remoting/client/
server_log_entry_client_unittest.cc 27 std::map<std::string, std::string> key_value_pairs; local
28 key_value_pairs["role"] = "client";
29 key_value_pairs["event-name"] = "session-state";
30 key_value_pairs["session-state"] = "connected";
32 ASSERT_TRUE(VerifyStanza(key_value_pairs, keys, stanza.get(), &error))
41 std::map<std::string, std::string> key_value_pairs; local
42 key_value_pairs["role"] = "client";
43 key_value_pairs["event-name"] = "session-state";
44 key_value_pairs["session-state"] = "connection-failed";
45 key_value_pairs["connection-error"] = "host-is-offline"
56 std::map<std::string, std::string> key_value_pairs; local
74 std::map<std::string, std::string> key_value_pairs; local
96 std::map<std::string, std::string> key_value_pairs; local
115 std::map<std::string, std::string> key_value_pairs; local
    [all...]
  /external/chromium_org/remoting/host/
server_log_entry_host_unittest.cc 22 std::map<std::string, std::string> key_value_pairs; local
23 key_value_pairs["role"] = "host";
24 key_value_pairs["event-name"] = "session-state";
25 key_value_pairs["session-state"] = "connected";
27 ASSERT_TRUE(VerifyStanza(key_value_pairs, keys, stanza.get(), &error))
35 std::map<std::string, std::string> key_value_pairs; local
36 key_value_pairs["role"] = "host";
37 key_value_pairs["event-name"] = "heartbeat";
39 ASSERT_TRUE(VerifyStanza(key_value_pairs, keys, stanza.get(), &error))
48 std::map<std::string, std::string> key_value_pairs; local
76 std::map<std::string, std::string> key_value_pairs; local
91 std::map<std::string, std::string> key_value_pairs; local
    [all...]
  /external/chromium_org/remoting/signaling/
server_log_entry_unittest.cc 57 const std::map<std::string, std::string>& key_value_pairs,
72 key_value_pairs.find(key);
73 if (iter == key_value_pairs.end()) {
86 int attr_count_expected = key_value_pairs.size() + keys.size();
server_log_entry_unittest.h 31 const std::map<std::string, std::string>& key_value_pairs,
  /external/chromium_org/base/process/
internal_linux.cc 110 std::vector<StringPair> key_value_pairs; local
111 SplitStringIntoKeyValuePairs(contents, ' ', '\n', &key_value_pairs);
112 for (size_t i = 0; i < key_value_pairs.size(); ++i) {
113 const StringPair& key_value_pair = key_value_pairs[i];
  /external/chromium_org/base/strings/
string_split.h 39 // only if each pair has a non-empty key and value. |key_value_pairs| will
44 StringPairs* key_value_pairs);
string_split.cc 150 StringPairs* key_value_pairs) {
151 key_value_pairs->clear();
169 key_value_pairs->push_back(make_pair(key, value));
  /external/chromium_org/third_party/cython/src/Cython/Compiler/
Interpreter.py 58 for item in optdict.key_value_pairs:
AnalysedTreeTransforms.py 45 rhs=DictNode(pos, key_value_pairs=self.tests))
ParseTreeTransforms.py     [all...]
ExprNodes.py     [all...]
Parsing.py 487 pos, key_value_pairs = keyword_args)
963 return ExprNodes.DictNode(pos, key_value_pairs = [])
1009 return ExprNodes.DictNode(pos, key_value_pairs=items)
1013 return ExprNodes.DictNode(pos, key_value_pairs = [])
    [all...]
Nodes.py     [all...]
Optimize.py     [all...]
  /external/lldb/examples/python/
gdbremote.py 439 key_value_pairs = string.split(self.str, ';')
440 for key_value_pair in key_value_pairs:
479 key_value_pairs = packet.get_key_value_pairs()
480 for key_value_pair in key_value_pairs:
529 key_value_pairs = packet.get_key_value_pairs()
530 for key_value_pair in key_value_pairs:
    [all...]
  /external/chromium_org/third_party/cython/src/Cython/
CodeWriter.py 152 self.comma_separated_list(node.positional_args + node.keyword_args.key_value_pairs)

Completed in 3836 milliseconds