HomeSort by relevance Sort by last modified time
    Searched refs:document_root (Results 1 - 25 of 28) sorted by null

1 2

  /external/chromium_org/net/test/spawned_test_server/
remote_test_server.h 21 // |document_root| must be a relative path under the root tree.
24 const base::FilePath& document_root);
27 // |document_root| must be a relative path under the root tree.
30 const base::FilePath& document_root);
48 // on the Android device, otherwise document_root() function is used to get
53 bool Init(const base::FilePath& document_root);
remote_test_server.cc 69 const base::FilePath& document_root)
72 if (!Init(document_root))
78 const base::FilePath& document_root)
81 if (!Init(document_root))
160 return src_dir.Append(document_root());
163 bool RemoteTestServer::Init(const base::FilePath& document_root) {
164 if (document_root.IsAbsolute())
195 SetResourcePath(document_root, base::FilePath().AppendASCII("net")
local_test_server.h 27 // |document_root| must be a relative path under the root tree.
30 const base::FilePath& document_root);
33 // |document_root| must be a relative path under the root tree.
36 const base::FilePath& document_root);
81 base::FilePath GetDocumentRoot() const { return document_root(); };
84 bool Init(const base::FilePath& document_root);
local_test_server.cc 62 const base::FilePath& document_root)
64 if (!Init(document_root))
70 const base::FilePath& document_root)
72 if (!Init(document_root))
148 bool LocalTestServer::Init(const base::FilePath& document_root) {
149 if (document_root.IsAbsolute())
162 SetResourcePath(src_dir.Append(document_root),
base_test_server.h 183 const base::FilePath& document_root() const { return document_root_; } function in class:net::BaseTestServer
225 void SetResourcePath(const base::FilePath& document_root,
base_test_server.cc 259 void BaseTestServer::SetResourcePath(const base::FilePath& document_root,
263 document_root_ = document_root;
  /external/chromium_org/tools/python/google/
httpd_utils.py 61 def StartServer(document_root=None, output_dir=None, apache2=False):
65 document_root: If present, specifies the document root for the server;
78 if not document_root:
79 document_root = platform_util.GetFilesystemRoot()
89 document_root,
185 print ("Usage: %s -k {start|stop} [-r document_root] [--apache2]" %
189 document_root = None
191 document_root = options.root
194 StartServer(document_root, apache2=options.apache2)
platform_utils_win.py 92 document_root=None, apache2=False):
101 document_root: full path to the DocumentRoot. If None, the DocumentRoot
104 you're using that one, be sure to specify a document_root here.
109 if document_root:
110 document_root = GetCygwinPath(document_root)
123 "document_root" : document_root,
162 if document_root:
163 httpd_cmd_string += ' -C \'DocumentRoot "%(document_root)s"\'
    [all...]
platform_utils_linux.py 60 document_root=None, apache2=False):
69 document_root: full path to the DocumentRoot. If None, the DocumentRoot
72 you're using that one, be sure to specify a document_root here.
90 "document_root" : document_root,
120 if document_root:
121 httpd_cmd_string += ' -C \'DocumentRoot "%(document_root)s"\''
platform_utils_mac.py 60 document_root=None, apache2=False):
69 document_root: full path to the DocumentRoot. If None, the DocumentRoot
72 you're using that one, be sure to specify a document_root here.
90 "document_root" : document_root,
118 if document_root:
119 httpd_cmd_string += ' -C \'DocumentRoot "%(document_root)s"\''
  /external/chromium_org/chrome/test/nacl/
nacl_browsertest_util.cc 172 base::FilePath* document_root) {
173 if (!ui_test_utils::GetRelativeBuildDirectory(document_root))
175 *document_root = document_root->Append(FILE_PATH_LITERAL("nacl_test_data"));
176 *document_root = document_root->Append(variant);
217 bool NaClBrowserTestBase::GetDocumentRoot(base::FilePath* document_root) {
218 return GetNaClVariantRoot(Variant(), document_root);
279 base::FilePath document_root; local
280 if (!GetDocumentRoot(&document_root))
    [all...]
nacl_browsertest_util.h 75 virtual bool GetDocumentRoot(base::FilePath* document_root);
143 virtual bool GetDocumentRoot(base::FilePath* document_root) OVERRIDE;
  /external/chromium/net/test/
test_server.h 103 TestServer(Type type, const FilePath& document_root);
107 const FilePath& document_root);
116 const FilePath& document_root() const { return document_root_; } function in class:net::TestServer
137 void Init(const FilePath& document_root);
test_server.cc 88 TestServer::TestServer(Type type, const FilePath& document_root)
91 Init(document_root);
95 const FilePath& document_root)
99 Init(document_root);
260 void TestServer::Init(const FilePath& document_root) {
271 document_root_ = src_dir.Append(document_root);
  /external/chromium/net/tools/testserver/
run_testserver.cc 66 if (!file_util::DirectoryExists(test_server.document_root())) {
68 UTF16ToUTF8(test_server.document_root().LossyDisplayName()).c_str());
  /external/chromium_org/chrome/test/pyautolib/
pyautolib.i 197 const base::FilePath& document_root);
201 const base::FilePath& document_root);
209 %feature("docstring", "Get FilePath to the document root") document_root;
210 const base::FilePath& document_root() const;
  /external/chromium_org/net/url_request/
url_request_context_builder_unittest.cc 29 explicit LocalHttpTestServer(const base::FilePath& document_root)
32 document_root) {}
  /external/chromium_org/net/tools/testserver/
run_testserver.cc 114 if (!base::DirectoryExists(test_server->document_root())) {
116 UTF16ToUTF8(test_server->document_root().LossyDisplayName()).c_str());
  /external/chromium_org/build/android/
lighttpd_server.py 32 document_root: Path to root of this server's hosted files.
45 def __init__(self, document_root, port=None,
50 self.document_root = os.path.abspath(document_root)
235 server.document-root = "%(document_root)s"
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/servers/
apache_http_server.py 69 document_root = self._filesystem.join(test_dir, "http", "tests")
76 '-C', "\'DocumentRoot \"%s\"\'" % document_root,
  /external/chromium_org/chrome/test/ppapi/
ppapi_test.h 94 // The result is placed in |document_root|. False is returned upon failure.
95 bool GetHTTPDocumentRoot(base::FilePath* document_root);
ppapi_test.cc 179 base::FilePath document_root; local
180 ASSERT_TRUE(ui_test_utils::GetRelativeBuildDirectory(&document_root));
185 document_root);
  /external/chromium_org/build/android/pylib/base/
base_test_runner.py 106 def LaunchTestHttpServer(self, document_root, port=None,
111 document_root: Document root of the HTTP server.
116 document_root, port=port, extra_config_contents=extra_config_contents)
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/
test_endtoend.py 169 self.document_root = os.path.join(self.top_dir, 'example')
198 '-d', self.document_root]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/
standalone.py 44 [-d <document_root>]
48 <document_root> is the path to the root directory of HTML files.
51 If not specified, <document_root> will be used. See __init__.py (or
    [all...]

Completed in 1136 milliseconds

1 2