OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:FileLoc
(Results
1 - 9
of
9
) sorted by null
/external/clang/tools/libclang/
CXSourceLocation.cpp
373
SourceLocation
FileLoc
= SM.getFileLoc(Loc);
374
std::pair<FileID, unsigned> LocInfo = SM.getDecomposedLoc(
FileLoc
);
IndexingContext.cpp
716
SourceLocation
FileLoc
= SM.getFileLoc(Loc);
717
FileID FID = SM.getFileID(
FileLoc
);
[
all
...]
/external/clang/include/clang/Lex/
Lexer.h
53
SourceLocation
FileLoc
; // Location for start of file.
108
Lexer(SourceLocation
FileLoc
, const LangOptions &LangOpts,
134
SourceLocation getFileLoc() const { return
FileLoc
; }
/external/clang/lib/Rewrite/
DeltaTree.cpp
40
unsigned
FileLoc
;
45
Delta.
FileLoc
= Loc;
186
while (i != e && FileIndex > getValue(i).
FileLoc
)
191
if (i != e && getValue(i).
FileLoc
== FileIndex) {
218
if (InsertRes->Split.
FileLoc
> FileIndex)
261
if (SubSplit.
FileLoc
< InsertRes->Split.
FileLoc
)
269
// Find the insertion point, the first delta whose index is >SubSplit.
FileLoc
.
271
while (i != e && SubSplit.
FileLoc
> InsertSide->getValue(i).
FileLoc
)
[
all
...]
/external/clang/include/clang/AST/
CommentLexer.h
237
SourceLocation
FileLoc
;
309
return
FileLoc
.getLocWithOffset(CharNo);
348
SourceLocation
FileLoc
,
/external/llvm/tools/sancov/
sancov.cc
143
struct
FileLoc
{
144
bool operator<(const
FileLoc
&RHS) const {
157
FileLoc
Loc;
170
// Compute [
FileLoc
-> FunctionName] map for given addresses.
171
static std::map<
FileLoc
, std::string>
173
std::map<
FileLoc
, std::string> Fns;
188
FileLoc
Loc = {FileName.str(), FrameInfo.Line};
199
std::map<
FileLoc
, std::string> Fns = computeFunctionsMap(Addrs);
/external/clang/include/clang/Frontend/
ASTUnit.h
217
SourceLocation
FileLoc
= SM.getLocForStartOfFile(SM.getPreambleFileID());
218
return SourceRange(
FileLoc
,
FileLoc
.getLocWithOffset(size()-1));
[
all
...]
/external/clang/lib/Frontend/
ASTUnit.cpp
[
all
...]
/external/clang/lib/Lex/
Lexer.cpp
111
FileLoc
(PP.getSourceManager().getLocForStartOfFile(FID)),
131
Lexer::Lexer(SourceLocation
fileloc
, const LangOptions &langOpts,
133
:
FileLoc
(
fileloc
), LangOpts(langOpts) {
186
L->
FileLoc
= SM.createExpansionLoc(SM.getLocForStartOfFile(SpellingFID),
518
SourceLocation
FileLoc
= SM.getSpellingLoc(Loc);
519
SourceLocation BeginFileLoc = getBeginningOfFileToken(
FileLoc
, SM, LangOpts);
520
std::pair<FileID, unsigned> FileLocInfo = SM.getDecomposedLoc(
FileLoc
);
544
SourceLocation
FileLoc
= SourceLocation::getFromRawEncoding(StartOffset);
545
Lexer TheLexer(
FileLoc
, LangOpts, Buffer.begin(), Buffer.begin()
[
all
...]
Completed in 183 milliseconds