OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:config_file_path
(Results
1 - 7
of
7
) sorted by null
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/
checksvnconfigfile.py
39
cfg_file_path =
config_file_path
(host, fs)
52
def
config_file_path
(host, fs):
function
54
config_file_path
= fs.join(os.environ['APPDATA'], "Subversion", "config")
56
config_file_path
= fs.join(fs.expanduser("~"), ".subversion", "config")
57
return
config_file_path
60
def errorstr_autoprop(
config_file_path
):
61
return 'Have to enable auto props in the subversion config file (%s "enable-auto-props = yes"). ' %
config_file_path
64
def errorstr_png(
config_file_path
):
65
return 'Have to set the svn:mime-type in the subversion config file (%s "*.png = svn:mime-type=image/png").' %
config_file_path
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/
png.py
49
config_file_path
= ""
59
config_file_path
= checksvnconfigfile.
config_file_path
(self._host, self._fs)
62
self._handle_style_error(0, 'image/png', 5, "There is no SVN config file. (%s)" %
config_file_path
)
64
self._handle_style_error(0, 'image/png', 5, checksvnconfigfile.errorstr_autoprop(
config_file_path
) + checksvnconfigfile.errorstr_png(
config_file_path
))
66
self._handle_style_error(0, 'image/png', 5, checksvnconfigfile.errorstr_autoprop(
config_file_path
))
68
self._handle_style_error(0, 'image/png', 5, checksvnconfigfile.errorstr_png(
config_file_path
))
/external/chromium_org/remoting/host/
usage_stats_consent_mac.cc
26
base::FilePath
config_file_path
=
local
28
JsonHostConfig host_config(
config_file_path
);
/hardware/intel/common/wrs_omxil_core/core/src/
wrs_omxcore.cpp
47
char
config_file_path
[256];
local
50
strncpy(
config_file_path
, "/etc/", 256);
51
strncat(
config_file_path
, config_file_name, 256);
52
config_file = fopen(
config_file_path
, "r");
54
strncpy(
config_file_path
, "./", 256);
55
strncat(
config_file_path
, config_file_name, 256);
56
config_file = fopen(
config_file_path
, "r");
/external/chromium_org/components/policy/core/common/
config_dir_policy_loader.cc
124
for (base::FilePath
config_file_path
= file_enumerator.Next();
125
!
config_file_path
.empty();
config_file_path
= file_enumerator.Next())
126
files.insert(
config_file_path
);
/external/chromium_org/remoting/host/policy_hack/
policy_watcher_linux.cc
135
for (base::FilePath
config_file_path
= file_enumerator.Next();
136
!
config_file_path
.empty();
config_file_path
= file_enumerator.Next())
137
files.insert(
config_file_path
);
/external/chromium_org/remoting/host/setup/
daemon_controller_delegate_mac.mm
87
base::FilePath
config_file_path
(kHostConfigFilePath);
88
JsonHostConfig config_file(
config_file_path
);
145
base::FilePath
config_file_path
(kHostConfigFilePath);
146
JsonHostConfig host_config(
config_file_path
);
Completed in 1412 milliseconds