OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:begin_index
(Results
1 - 3
of
3
) sorted by null
/external/ceres-solver/internal/ceres/
split.cc
96
string::size_type
begin_index
, end_index;
local
97
begin_index
= full.find_first_not_of(delim);
98
while (
begin_index
!= string::npos) {
99
end_index = full.find_first_of(delim,
begin_index
);
101
*result++ = full.substr(
begin_index
);
104
*result++ = full.substr(
begin_index
, (end_index -
begin_index
));
105
begin_index
= full.find_first_not_of(delim, end_index);
/external/libchrome/base/strings/
string_split.cc
143
for (size_type
begin_index
= 0, end_index = 0; end_index != Piece::npos;
144
begin_index
= end_index + delimiter.size()) {
145
end_index = input.find(delimiter,
begin_index
);
147
? input.substr(
begin_index
)
148
: input.substr(
begin_index
, end_index -
begin_index
);
/external/protobuf/src/google/protobuf/stubs/
strutil.cc
172
string::size_type
begin_index
, end_index;
local
173
begin_index
= full.find_first_not_of(delim);
174
while (
begin_index
!= string::npos) {
175
end_index = full.find_first_of(delim,
begin_index
);
177
*result++ = full.substr(
begin_index
);
180
*result++ = full.substr(
begin_index
, (end_index -
begin_index
));
181
begin_index
= full.find_first_not_of(delim, end_index);
209
string::size_type
begin_index
, end_index;
local
210
begin_index
= 0
[
all
...]
Completed in 188 milliseconds