OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:colon_pos
(Results
1 - 10
of
10
) sorted by null
/external/chromium_org/ash/system/date/
date_view.cc
242
size_t
colon_pos
= current_time.find(base::ASCIIToUTF16(":"));
local
243
base::string16 hour = current_time.substr(0,
colon_pos
);
244
base::string16 minute = current_time.substr(
colon_pos
+ 1);
/external/chromium_org/base/test/launcher/
test_results_tracker.cc
119
size_t
colon_pos
= flag.find(':');
local
121
if (
colon_pos
!= std::string::npos) {
125
path = FilePath(path_string.substr(
colon_pos
+ 1));
/external/chromium_org/chrome/browser/extensions/
extension_apitest.cc
114
size_t
colon_pos
= header.find(':');
local
115
if (
colon_pos
== std::string::npos)
118
std::string header_name = header.substr(0,
colon_pos
);
120
std::string header_value = header.substr(
colon_pos
+ 2);
/external/chromium_org/chrome/browser/history/
scored_history_match.cc
324
const size_t
colon_pos
= url.find(':');
local
332
const size_t end_of_hostname_pos = (
colon_pos
!= std::string::npos) ?
333
url.find('/',
colon_pos
+ 3) : url.find('/');
344
if (
colon_pos
!= std::string::npos) {
348
word_starts.url_word_starts_, 0,
colon_pos
);
371
} else if ((
colon_pos
== std::string::npos) ||
372
(iter->offset >
colon_pos
)) {
/external/chromium_org/chrome/common/net/
x509_certificate_model_nss.cc
78
size_t
colon_pos
= name.find(':');
local
79
if (
colon_pos
!= std::string::npos)
80
name = name.substr(
colon_pos
+ 1);
/external/chromium_org/chromeos/network/
network_cert_migrator.cc
39
size_t
colon_pos
= name.find(':');
local
40
if (
colon_pos
!= std::string::npos)
41
name = name.substr(
colon_pos
+ 1);
/external/oprofile/libpp/
format_output.cpp
78
string::size_type
colon_pos
= info.find(":");
local
80
if (
colon_pos
== string::npos)
83
file = info.substr(0,
colon_pos
);
84
istringstream is_info(info.substr(
colon_pos
+1));
/external/protobuf/src/google/protobuf/compiler/
command_line_interface.cc
1027
string::size_type
colon_pos
= value.find_first_of(':');
local
[
all
...]
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/
port.cc
483
size_t
colon_pos
= username_attr_str.find(":");
local
487
*remote_protocol_type = (
colon_pos
!= std::string::npos) ?
493
if (
colon_pos
!= std::string::npos) { // RFRAG:LFRAG
494
*local_ufrag = username_attr_str.substr(0,
colon_pos
);
496
colon_pos
+ 1, username_attr_str.size());
[
all
...]
/external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/
command_line_interface.cc
1101
string::size_type
colon_pos
= value.find_first_of(':');
local
[
all
...]
Completed in 642 milliseconds