OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:xdg_data_dirs
(Results
1 - 4
of
4
) sorted by null
/external/chromium/chrome/browser/
shell_integration_linux.cc
307
std::string
xdg_data_dirs
;
local
308
if (env->GetVar("
XDG_DATA_DIRS
", &
xdg_data_dirs
) &&
309
!
xdg_data_dirs
.empty()) {
310
StringTokenizer tokenizer(
xdg_data_dirs
, ":");
318
// Add some fallback paths for systems which don't have
XDG_DATA_DIRS
or have
/external/chromium/base/
mime_util_xdg.cc
427
env = getenv("
XDG_DATA_DIRS
");
432
std::string
xdg_data_dirs
= env;
local
434
while ((epos =
xdg_data_dirs
.find(':', pos)) != std::string::npos) {
435
AddXDGDataDir(FilePath(
xdg_data_dirs
.substr(pos, epos - pos)));
438
AddXDGDataDir(FilePath(
xdg_data_dirs
.substr(pos)));
/external/chromium_org/base/nix/
mime_util_xdg.cc
432
env = getenv("
XDG_DATA_DIRS
");
437
std::string
xdg_data_dirs
= env;
local
439
while ((epos =
xdg_data_dirs
.find(':', pos)) != std::string::npos) {
440
AddXDGDataDir(FilePath(
xdg_data_dirs
.substr(pos, epos - pos)));
443
AddXDGDataDir(FilePath(
xdg_data_dirs
.substr(pos)));
/external/chromium_org/chrome/browser/
shell_integration_linux.cc
536
std::string
xdg_data_dirs
;
local
537
if (env->GetVar("
XDG_DATA_DIRS
", &
xdg_data_dirs
) && !
xdg_data_dirs
.empty()) {
538
base::StringTokenizer tokenizer(
xdg_data_dirs
, ":");
[
all
...]
Completed in 1075 milliseconds