OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:FileSystemOptions
(Results
1 - 25
of
42
) sorted by null
1
2
/external/chromium_org/webkit/browser/fileapi/
mock_file_system_options.h
13
FileSystemOptions
CreateIncognitoFileSystemOptions();
16
FileSystemOptions
CreateAllowFileAccessOptions();
19
FileSystemOptions
CreateDisallowFileAccessOptions();
file_system_options.cc
9
FileSystemOptions
::
FileSystemOptions
(
16
FileSystemOptions
::~
FileSystemOptions
() {
mock_file_system_options.cc
12
FileSystemOptions
CreateIncognitoFileSystemOptions() {
17
return
FileSystemOptions
(
FileSystemOptions
::PROFILE_MODE_INCOGNITO,
21
FileSystemOptions
CreateAllowFileAccessOptions() {
27
return
FileSystemOptions
(
FileSystemOptions
::PROFILE_MODE_NORMAL,
31
FileSystemOptions
CreateDisallowFileAccessOptions() {
36
return
FileSystemOptions
(
FileSystemOptions
::PROFILE_MODE_NORMAL,
file_system_options.h
17
class WEBKIT_STORAGE_BROWSER_EXPORT
FileSystemOptions
{
29
FileSystemOptions
(
33
~
FileSystemOptions
();
sandbox_context.h
68
const
FileSystemOptions
& file_system_options);
141
FileSystemOptions
file_system_options() { return file_system_options_; }
173
FileSystemOptions
file_system_options_;
file_system_context.h
56
class
FileSystemOptions
;
103
const
FileSystemOptions
& options);
sandbox_file_system_backend_unittest.cc
91
void SetUpNewSandboxContext(const
FileSystemOptions
& options) {
100
void SetUpNewBackend(const
FileSystemOptions
& options) {
/external/clang/include/clang/Basic/
FileSystemOptions.h
1
//===---
FileSystemOptions
.h - File System Options --------------*- C++ -*-===//
11
/// \brief Defines the clang::
FileSystemOptions
interface.
23
class
FileSystemOptions
{
FileManager.h
18
#include "clang/Basic/
FileSystemOptions
.h"
122
FileSystemOptions
FileSystemOpts;
182
FileManager(const
FileSystemOptions
&FileSystemOpts);
227
const
FileSystemOptions
&getFileSystemOptions() { return FileSystemOpts; }
247
/// FileManager's
FileSystemOptions
.
254
/// \brief If path is not absolute and
FileSystemOptions
set the working
/external/chromium_org/content/browser/fileapi/
browser_file_system_helper.cc
32
using fileapi::
FileSystemOptions
;
34
FileSystemOptions
CreateBrowserFileSystemOptions(bool is_incognito) {
35
FileSystemOptions
::ProfileMode profile_mode =
36
is_incognito ?
FileSystemOptions
::PROFILE_MODE_INCOGNITO
37
:
FileSystemOptions
::PROFILE_MODE_NORMAL;
45
return
FileSystemOptions
(profile_mode, additional_allowed_schemes);
/external/clang/include/clang/Frontend/
CompilerInvocation.h
14
#include "clang/Basic/
FileSystemOptions
.h"
113
FileSystemOptions
FileSystemOpts;
187
FileSystemOptions
&getFileSystemOpts() { return FileSystemOpts; }
188
const
FileSystemOptions
&getFileSystemOpts() const {
ASTUnit.h
20
#include "clang/Basic/
FileSystemOptions
.h"
83
FileSystemOptions
FileSystemOpts;
469
const
FileSystemOptions
&getFileSystemOpts() const { return FileSystemOpts; }
671
const
FileSystemOptions
&FileSystemOpts,
[
all
...]
CompilerInstance.h
234
const
FileSystemOptions
&getFileSystemOpts() const {
/external/clang/tools/libclang/
SimpleFormatContext.h
40
Files((
FileSystemOptions
())),
CXLoadedDiagnostic.cpp
45
FileSystemOptions
FO;
252
FileSystemOptions
FO;
/frameworks/compile/slang/
slang.h
51
class
FileSystemOptions
;
103
llvm::OwningPtr<clang::
FileSystemOptions
> mFileSysOpt;
/external/clang/unittests/Tooling/
RewriterTestContext.h
42
Files((
FileSystemOptions
())),
ToolingTest.cpp
122
clang::FileManager Files((clang::
FileSystemOptions
()));
/external/clang/unittests/Lex/
PPConditionalDirectiveRecordTest.cpp
45
FileSystemOptions
FileMgrOpts;
PPCallbacksTest.cpp
94
FileSystemOptions
FileMgrOpts;
/external/clang/lib/Tooling/
Tooling.cpp
117
FileManager Files((
FileSystemOptions
()));
241
: Files((
FileSystemOptions
())) {
Refactoring.cpp
141
FileManager Files((
FileSystemOptions
()));
/external/clang/unittests/Basic/
FileManagerTest.cpp
11
#include "clang/Basic/
FileSystemOptions
.h"
67
FileSystemOptions
options;
/external/chromium_org/chrome/browser/sync_file_system/local/
canned_syncable_file_system.cc
231
fileapi::
FileSystemOptions
options(
232
fileapi::
FileSystemOptions
::PROFILE_MODE_NORMAL,
/external/clang/lib/ARCMigrate/
FileRemapper.cpp
24
FileMgr.reset(new FileManager(
FileSystemOptions
()));
Completed in 449 milliseconds
1
2