OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:where_str
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/chrome/browser/extensions/activity_log/
fullstream_ui_policy.cc
139
std::string
where_str
= "";
local
142
where_str
+= "extension_id=?";
146
where_str
+= where_next + "api_name=?";
150
where_str
+= where_next + "action_type=?";
154
where_str
+= where_next + "page_url LIKE ?";
158
where_str
+= where_next + "arg_url LIKE ?";
161
where_str
+= where_next + "time BETWEEN ? AND ?";
166
where_str
.empty() ? "" : "WHERE",
167
where_str
.c_str());
counting_policy.cc
432
std::string
where_str
= "";
435
where_str
+= "extension_id=?";
439
where_str
+= where_next + "api_name=?";
443
where_str
+= where_next + "action_type=?";
447
where_str
+= where_next + "page_url LIKE ?";
451
where_str
+= where_next + "arg_url LIKE ?";
455
where_str
+= where_next + "time BETWEEN ? AND ?";
462
where_str
.empty() ? "" : "WHERE",
463
where_str
.c_str());
Completed in 117 milliseconds