OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:nul_pos
(Results
1 - 2
of
2
) sorted by null
/external/autotest/client/deps/glbench/src/
filepath.cc
64
std::string::size_type
nul_pos
= component.find(kStringTerminator);
local
65
if (
nul_pos
!= std::string::npos) {
66
// without_nuls = component.substr(0,
nul_pos
);
/external/libchrome/base/files/
file_path.cc
179
StringType::size_type
nul_pos
= path_.find(kStringTerminator);
local
180
if (
nul_pos
!= StringType::npos)
181
path_.erase(
nul_pos
, StringType::npos);
481
StringType::size_type
nul_pos
= component.find(kStringTerminator);
local
482
if (
nul_pos
!= StringPieceType::npos) {
483
component.substr(0,
nul_pos
).CopyToString(&without_nuls);
[
all
...]
Completed in 636 milliseconds