OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:FilePath
(Results
1 - 20
of
20
) sorted by relevancy
/src/external/apache2/llvm/dist/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-filepath.h
30
// Google Test
filepath
utilities
51
//
FilePath
- a class for file and directory pathname manipulation which
56
// A
FilePath
with a value ending in a path separator ("like/this/") represents
62
class GTEST_API_
FilePath
{
64
FilePath
() : pathname_("") { }
65
FilePath
(const
FilePath
& rhs) : pathname_(rhs.pathname_) { }
67
explicit
FilePath
(const std::string& pathname) : pathname_(pathname) {
71
FilePath
& operator=(const
FilePath
& rhs)
[
all
...]
/src/external/apache2/llvm/dist/clang/include/clang/Tooling/
ReplacementsYaml.h
34
:
FilePath
(""), Offset(0), Length(0), ReplacementText("") {}
37
:
FilePath
(R.getFilePath()), Offset(R.getOffset()),
41
return clang::tooling::Replacement(
FilePath
, Offset, Length,
45
std::string
FilePath
;
54
Io.mapRequired("
FilePath
", Keys->
FilePath
);
/src/external/apache2/llvm/dist/clang/include/clang/Tooling/Core/
Diagnostic.h
35
std::string
FilePath
;
55
std::string
FilePath
;
Replacement.h
89
///
FilePath
with ReplacementText.
91
/// \param
FilePath
A source file accessible via a SourceManager.
94
Replacement(StringRef
FilePath
, unsigned Offset, unsigned Length,
120
StringRef getFilePath() const { return
FilePath
; }
140
std::string
FilePath
;
226
/// different from the
filepath
of existing replacements. Callers must
/src/external/apache2/llvm/dist/clang/include/clang/Tooling/Refactoring/
AtomicChange.h
48
/// Creates an atomic change for \p
FilePath
with a customized key.
49
AtomicChange(llvm::StringRef
FilePath
, llvm::StringRef Key)
50
: Key(Key),
FilePath
(
FilePath
) {}
71
const std::string &getFilePath() const { return
FilePath
; }
132
AtomicChange(std::string Key, std::string
FilePath
, std::string Error,
139
std::string
FilePath
;
175
/// \p
FilePath
, i.e. callers are responsible for ensuring all changes are for
183
applyAtomicChanges(llvm::StringRef
FilePath
, llvm::StringRef Code,
/src/external/apache2/llvm/dist/clang/lib/Tooling/
Refactoring.cpp
78
const std::string &
FilePath
= FileAndReplaces.first;
82
if (auto File = Files.getFile(
FilePath
))
88
auto CurStyle = format::getStyle(Style,
FilePath
, "LLVM");
/src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/PDB/Native/
PDBFile.h
125
std::string
FilePath
;
/src/external/apache2/llvm/dist/clang/include/clang/Frontend/
PrecompiledPreamble.h
147
TempPCHFile(std::string
FilePath
);
163
llvm::Optional<std::string>
FilePath
;
/src/external/apache2/llvm/dist/clang/include/clang/IndexSerialization/
SerializablePathCollection.h
61
struct
FilePath
{
65
FilePath
(const DirPath &Dir, const StringPool::StringOffsetSize &Filename)
76
llvm::ArrayRef<
FilePath
> getFilePaths() const;
82
std::vector<
FilePath
> FilePaths;
108
ArrayRef<PathPool::
FilePath
> getFilePaths() const {
/src/external/apache2/llvm/dist/clang/lib/Tooling/Refactoring/
AtomicChange.cpp
30
: Key(E.getKey()),
FilePath
(E.getFilePath()), Error(E.getError()),
41
std::string
FilePath
;
57
Io.mapRequired("
FilePath
", Doc.
FilePath
);
72
Io.mapRequired("
FilePath
", Keys->
FilePath
);
144
createReplacementsForHeaders(llvm::StringRef
FilePath
, llvm::StringRef Code,
160
tooling::Replacement(
FilePath
, UINT_MAX, 0, ReplacementText));
168
HeaderReplacements.add(Replacement(
FilePath
, UINT_MAX, 1, Header));
181
// file path in all replacements and replaces them with \p
FilePath
[
all
...]
/src/external/apache2/llvm/dist/llvm/tools/llvm-objdump/
SourcePrinter.cpp
409
SmallString<128>
FilePath
;
410
sys::path::append(
FilePath
, Prefix, LineInfo.FileName);
412
LineInfo.FileName = std::string(
FilePath
);
/src/external/apache2/llvm/dist/clang/lib/Driver/ToolChains/
Cuda.cpp
236
std::string
FilePath
= LibDevicePath + "/libdevice.10.bc";
237
if (FS.exists(
FilePath
)) {
244
LibDeviceMap[GpuArchName] =
FilePath
;
252
StringRef
FilePath
= LI->path();
253
StringRef FileName = llvm::sys::path::filename(
FilePath
);
261
LibDeviceMap[GpuArch] =
FilePath
.str();
266
LibDeviceMap["sm_20"] = std::string(
FilePath
);
267
LibDeviceMap["sm_21"] = std::string(
FilePath
);
268
LibDeviceMap["sm_32"] = std::string(
FilePath
);
270
LibDeviceMap["sm_30"] = std::string(
FilePath
);
[
all
...]
AMDGPU.cpp
83
StringRef
FilePath
= LI->path();
84
StringRef FileName = llvm::sys::path::filename(
FilePath
);
95
OCML =
FilePath
;
97
OCKL =
FilePath
;
99
OpenCL =
FilePath
;
101
HIP =
FilePath
;
103
AsanRTL =
FilePath
;
105
FiniteOnly.Off =
FilePath
;
107
FiniteOnly.On =
FilePath
;
109
DenormalsAreZero.On =
FilePath
;
[
all
...]
/src/external/apache2/llvm/dist/clang/lib/Tooling/Core/
Replacement.cpp
45
Replacement::Replacement() :
FilePath
(InvalidLocation) {}
47
Replacement::Replacement(StringRef
FilePath
, unsigned Offset, unsigned Length,
49
:
FilePath
(std::string(
FilePath
)), ReplacementRange(Offset, Length),
65
return
FilePath
!= InvalidLocation;
70
auto Entry = SM.getFileManager().getFile(
FilePath
);
90
Stream <<
FilePath
<< ": " << ReplacementRange.getOffset() << ":+"
126
this->
FilePath
= std::string(Entry ? Entry->getName() : InvalidLocation);
369
: MergeSecond(MergeSecond), Delta(D),
FilePath
(R.getFilePath()),
419
Replacement asReplacement() const { return {
FilePath
, Offset, Length, Text};
[
all
...]
/src/sys/external/bsd/gnu-efi/dist/lib/
dpath.c
248
FILEPATH_DEVICE_PATH *
FilePath
;
252
FilePath
= AllocateZeroPool (Size + SIZE_OF_FILEPATH_DEVICE_PATH + sizeof(EFI_DEVICE_PATH));
255
if (
FilePath
) {
261
FilePath
->Header.Type = MEDIA_DEVICE_PATH;
262
FilePath
->Header.SubType = MEDIA_FILEPATH_DP;
263
SetDevicePathNodeLength (&
FilePath
->Header, Size + SIZE_OF_FILEPATH_DEVICE_PATH);
264
CopyMem (
FilePath
->PathName, FileName, Size);
265
Eop = NextDevicePathNode(&
FilePath
->Header);
272
DevicePath = (EFI_DEVICE_PATH *)
FilePath
;
279
FreePool(
FilePath
);
[
all
...]
/src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
NullabilityChecker.cpp
808
StringRef
FilePath
= SM.getFilename(SM.getSpellingLoc(Decl->getBeginLoc()));
809
if (llvm::sys::path::filename(
FilePath
).startswith("CG")) {
/src/external/apache2/llvm/dist/llvm/lib/DebugInfo/DWARF/
DWARFDebugLine.cpp
1367
SmallString<16>
FilePath
;
1387
sys::path::append(
FilePath
, Style, CompDir);
1394
sys::path::append(
FilePath
, Style, IncludeDir, FileName);
1395
Result = std::string(
FilePath
.str());
/src/sys/external/bsd/gnu-efi/dist/inc/
efidevp.h
498
FILEPATH_DEVICE_PATH
FilePath
;
532
FILEPATH_DEVICE_PATH *
FilePath
;
efiprot.h
552
IN EFI_DEVICE_PATH *
FilePath
,
1235
EFI_DEVICE_PATH *
FilePath
;
/src/sys/external/bsd/acpica/dist/include/platform/
acefiex.h
464
ACPI_EFI_DEVICE_PATH *
FilePath
,
510
ACPI_EFI_DEVICE_PATH *
FilePath
;
Completed in 27 milliseconds
Indexes created Mon Apr 20 00:23:12 UTC 2026