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

  /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);
local_test_server.h 30 // |document_root| must be a relative path under the root tree.
33 const base::FilePath& document_root);
36 // |document_root| must be a relative path under the root tree.
39 const base::FilePath& document_root);
84 base::FilePath GetDocumentRoot() const { return document_root(); };
87 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())
197 base::FilePath fixed_root = 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))
143 bool LocalTestServer::Init(const base::FilePath& document_root) {
144 if (document_root.IsAbsolute())
157 SetResourcePath(src_dir.Append(document_root),
base_test_server.h 226 const base::FilePath& document_root() const { return document_root_; } function in class:net::BaseTestServer
274 void SetResourcePath(const base::FilePath& document_root,
base_test_server.cc 307 void BaseTestServer::SetResourcePath(const base::FilePath& document_root,
311 document_root_ = document_root;
  /external/chromium_org/chrome/test/nacl/
nacl_browsertest_util.cc 174 base::FilePath* document_root) {
175 if (!ui_test_utils::GetRelativeBuildDirectory(document_root))
177 *document_root = document_root->Append(FILE_PATH_LITERAL("nacl_test_data"));
178 *document_root = document_root->Append(variant);
205 bool NaClBrowserTestBase::GetDocumentRoot(base::FilePath* document_root) {
206 return GetNaClVariantRoot(Variant(), document_root);
261 base::FilePath document_root; local
262 if (!GetDocumentRoot(&document_root))
326 base::FilePath document_root; local
344 base::FilePath document_root; local
    [all...]
nacl_browsertest_util.h 75 virtual bool GetDocumentRoot(base::FilePath* document_root);
143 virtual bool GetDocumentRoot(base::FilePath* document_root) OVERRIDE;
  /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/net/tools/testserver/
run_testserver.cc 114 if (!base::DirectoryExists(test_server->document_root())) {
117 test_server->document_root().LossyDisplayName()).c_str());
  /external/chromium_org/net/url_request/
url_request_context_builder_unittest.cc 32 explicit LocalHttpTestServer(const base::FilePath& document_root)
35 document_root) {}
url_request_unittest.cc     [all...]
  /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)
238 server.document-root = "%(document_root)s"
  /external/chromium_org/build/android/pylib/base/
base_test_runner.py 102 def LaunchTestHttpServer(self, document_root, port=None,
107 document_root: Document root of the HTTP server.
112 document_root, port=port, extra_config_contents=extra_config_contents)
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/servers/
apache_http.py 59 document_root = self._filesystem.join(test_dir, "http", "tests")
73 '-C', 'DocumentRoot "%s"' % document_root,
  /external/chromium_org/chrome/test/ppapi/
ppapi_test.cc 176 base::FilePath document_root; local
177 ASSERT_TRUE(ui_test_utils::GetRelativeBuildDirectory(&document_root));
182 document_root);
  /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 45 [-d <document_root>]
49 <document_root> is the path to the root directory of HTML files.
52 If not specified, <document_root> will be used. See __init__.py (or
    [all...]
  /external/chromium-trace/trace-viewer/examples/stream_server/
standalone.py 42 [-d <document_root>]
48 <document_root> is the path to the root directory of HTML files.
52 handlers. If this path is relative, <document_root> is used as the base.
742 parser.add_option('-d', '--document-root', '--document_root',
743 dest='document_root', default='.',
747 help=('CGI paths relative to document_root.'
749 'Files under document_root/cgi_path are handled '
    [all...]
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/
standalone.py 42 [-d <document_root>]
48 <document_root> is the path to the root directory of HTML files.
52 handlers. If this path is relative, <document_root> is used as the base.
738 parser.add_option('-d', '--document-root', '--document_root',
739 dest='document_root', default='.',
743 help=('CGI paths relative to document_root.'
745 'Files under document_root/cgi_path are handled '
    [all...]

Completed in 540 milliseconds