OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:IsAccessValid
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/content/browser/fileapi/
sandbox_file_system_backend_delegate_unittest.cc
47
TEST_F(SandboxFileSystemBackendDelegateTest,
IsAccessValid
) {
49
EXPECT_TRUE(delegate_->
IsAccessValid
(CreateFileSystemURL("a")));
52
EXPECT_FALSE(delegate_->
IsAccessValid
(CreateFileSystemURL("a/../b")));
55
EXPECT_FALSE(delegate_->
IsAccessValid
(
61
EXPECT_FALSE(delegate_->
IsAccessValid
(CreateFileSystemURL(".")));
62
EXPECT_FALSE(delegate_->
IsAccessValid
(CreateFileSystemURL("..")));
65
EXPECT_FALSE(delegate_->
IsAccessValid
(CreateFileSystemURL("...")));
69
EXPECT_FALSE(delegate_->
IsAccessValid
(CreateFileSystemURL(" ..")));
70
EXPECT_FALSE(delegate_->
IsAccessValid
(CreateFileSystemURL(".. ")));
73
EXPECT_TRUE(delegate_->
IsAccessValid
(CreateFileSystemURL(" .")))
[
all
...]
/external/chromium_org/webkit/browser/fileapi/
sandbox_file_system_backend_delegate.h
196
FRIEND_TEST_ALL_PREFIXES(SandboxFileSystemBackendDelegateTest,
IsAccessValid
);
200
bool
IsAccessValid
(const FileSystemURL& url) const;
sandbox_file_system_backend_delegate.cc
280
if (!
IsAccessValid
(url)) {
304
if (!
IsAccessValid
(url))
317
if (!
IsAccessValid
(url))
512
bool SandboxFileSystemBackendDelegate::
IsAccessValid
(
Completed in 388 milliseconds