OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:colon_index
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/net/base/
sdch_manager.cc
538
size_t
colon_index
= dictionary_text.find(':', line_start);
local
539
if (std::string::npos ==
colon_index
) {
544
if (
colon_index
> line_end)
548
colon_index
+ 1);
552
std::string name(dictionary_text, line_start,
colon_index
- line_start);
/external/chromium_org/extensions/common/
extension_api.cc
188
size_t
colon_index
= full_name.find(':');
local
189
if (
colon_index
== std::string::npos) {
196
*feature_type = full_name.substr(0,
colon_index
);
197
*feature_name = full_name.substr(
colon_index
+ 1);
/external/chromium_org/chrome/browser/safe_browsing/
safe_browsing_blocking_page.cc
350
size_t
colon_index
= command.find(':');
local
351
if (
colon_index
!= std::string::npos) {
352
DCHECK(
colon_index
< command.size() - 1);
355
colon_index
+ 1,
358
command = command.substr(0,
colon_index
);
Completed in 1347 milliseconds