OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Directory
(Results
1 - 13
of
13
) sorted by relevancy
/src/external/apache2/llvm/dist/clang/include/clang/Tooling/
CompilationDatabase.h
18
// To create a CompilationDatabase from a build
directory
one can call
43
/// Specifies the working
directory
and command of a compilation.
46
CompileCommand(const Twine &
Directory
, const Twine &Filename,
48
:
Directory
(
Directory
.str()), Filename(Filename.str()),
51
/// The working
directory
the command was executed from.
52
std::string
Directory
;
69
return LHS.
Directory
== RHS.
Directory
&& LHS.Filename == RHS.Filename &&
91
/// Loads a compilation database from a build
directory
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/Analysis/
ModuleDebugInfoPrinter.cpp
61
static void printFile(raw_ostream &O, StringRef Filename, StringRef
Directory
,
67
if (!
Directory
.empty())
68
O <<
Directory
<< "/";
/src/external/apache2/llvm/dist/llvm/lib/Support/
FileCollector.cpp
60
StringRef
Directory
= sys::path::parent_path(SrcPath);
62
// Use real_path to fix any symbolic link component present in the
directory
66
auto DirWithSymlink = CachedDirs.find(
Directory
);
70
if (sys::fs::real_path(
Directory
, RealPath))
72
CachedDirs[
Directory
] = std::string(RealPath.str());
185
// Get the status of the original file/
directory
.
197
// Create
directory
tree.
206
// Construct a
directory
when it's just a
directory
entry.
/src/external/apache2/llvm/dist/clang/lib/Tooling/
CompilationDatabase.cpp
80
findCompilationDatabaseFromDirectory(StringRef
Directory
,
84
while (!
Directory
.empty()) {
88
CompilationDatabase::loadFromDirectory(
Directory
, LoadErrorMessage))
92
ErrorStream << "No compilation database found in " <<
Directory
.str()
93
<< " or any parent
directory
\n" << LoadErrorMessage;
97
Directory
= llvm::sys::path::parent_path(
Directory
);
107
StringRef
Directory
= llvm::sys::path::parent_path(AbsolutePath);
110
findCompilationDatabaseFromDirectory(
Directory
, ErrorMessage);
127
ErrorMessage = ("Could not auto-detect compilation database from
directory
\""
[
all
...]
JSONCompilationDatabase.cpp
166
loadFromDirectory(StringRef
Directory
, std::string &ErrorMessage) override {
167
SmallString<1024> JSONDatabasePath(
Directory
);
354
llvm::yaml::ScalarNode *
Directory
= nullptr;
392
if (KeyValue == "
directory
") {
393
Directory
= ValueString;
416
if (!
Directory
) {
417
ErrorMessage = "Missing key: \"
directory
\".";
426
Directory
->getValue(DirectoryStorage));
433
auto Cmd = CompileCommandRef(
Directory
, File, *Command, Output);
/src/external/apache2/llvm/dist/clang/include/clang/Lex/
HeaderSearch.h
147
/// The
directory
entry which should be used for the cached framework.
148
const DirectoryEntry *
Directory
;
152
///
directory
).
168
///
directory
of the \#including file first, then each
directory
in SearchDirs
170
///
directory
in SearchDirs, starting at AngledDirIdx, consecutively. If
172
///
directory
is suppressed.
221
/// name like "Carbon" to the Carbon.framework
directory
.
237
/// Describes whether a given
directory
has a module map in it.
276
"
Directory
indices are unordered")
[
all
...]
/src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
HTMLDiagnostics.cpp
62
std::string
Directory
;
72
: DiagOpts(std::move(DiagOpts)),
Directory
(OutputDir), PP(pp),
143
//
directory
isn't specified, it acts like if it was in the minimal text
213
// Create the HTML
directory
if it is missing.
216
if (std::error_code ec = llvm::sys::fs::create_directories(
Directory
)) {
217
llvm::errs() << "warning: could not create
directory
'"
218
<<
Directory
<< "': " << ec.message() << '\n';
271
llvm::sys::path::append(Model,
Directory
, "report-%%%%%%.html");
280
llvm::errs() << "warning: could not create file in '" <<
Directory
297
llvm::sys::path::append(Model,
Directory
,
[
all
...]
/src/external/apache2/llvm/dist/clang/include/clang/Basic/
Module.h
126
/// The build
directory
of this module. This is the
directory
in
129
const DirectoryEntry *
Directory
= nullptr;
135
/// The umbrella header or
directory
.
144
// The path to the umbrella entry relative to the root module's \c
Directory
.
200
/// Information about a
directory
name as found in the module map
545
/// Retrieve the
directory
for which this module serves as the
558
/// Determine whether this module has an umbrella
directory
that is
/src/external/apache2/llvm/dist/llvm/bindings/ocaml/debuginfo/
debuginfo_ocaml.c
244
value
Directory
) {
247
String_val(
Directory
),
248
caml_string_length(
Directory
));
349
const char *
Directory
= LLVMDIFileGetDirectory(File, &Len);
350
return cstr_to_string(
Directory
, Len);
/src/external/apache2/llvm/dist/llvm/include/llvm/BinaryFormat/
Minidump.h
31
/// file as a minidump file, and gives the location of the stream
directory
.
118
/// minidump stream
directory
is an array of entries of this type, with its size
120
struct
Directory
{
124
static_assert(sizeof(
Directory
) == 12, "");
/src/external/apache2/llvm/dist/llvm/lib/IR/
LLVMContextImpl.h
650
MDString *
Directory
;
654
MDNodeKeyImpl(MDString *Filename, MDString *
Directory
,
657
: Filename(Filename),
Directory
(
Directory
), Checksum(Checksum),
660
: Filename(N->getRawFilename()),
Directory
(N->getRawDirectory()),
665
Directory
== RHS->getRawDirectory() &&
672
Filename,
Directory
, Checksum ? Checksum->Kind : 0,
/src/external/apache2/llvm/dist/clang/lib/Lex/
ModuleMap.cpp
177
// Search for the header file within the module's home
directory
.
178
auto *
Directory
= M->
Directory
;
179
SmallString<128> FullPathName(
Directory
->getName());
232
if (!NormalHdrFile &&
Directory
->getName().endswith(".framework")) {
236
FullPathName.assign(
Directory
->getName());
295
!BuiltinIncludeDir || BuiltinIncludeDir == Mod->
Directory
||
415
assert(Dir && "file in no
directory
");
423
// Keep walking up the
directory
hierarchy, looking for a
directory
wit
[
all
...]
/src/external/mit/libuv/dist/src/win/
winapi.h
4319
BOOLEAN
Directory
;
Completed in 25 milliseconds
Indexes created Tue Apr 21 00:23:25 UTC 2026