OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ExpansionLoc
(Results
1 - 4
of
4
) sorted by null
/external/clang/tools/libclang/
CXSourceLocation.cpp
232
SourceLocation
ExpansionLoc
= SM.getExpansionLoc(Loc);
236
FileID fileID = SM.getFileID(
ExpansionLoc
);
247
*line = SM.getExpansionLineNumber(
ExpansionLoc
);
249
*column = SM.getExpansionColumnNumber(
ExpansionLoc
);
251
*offset = SM.getDecomposedLoc(
ExpansionLoc
).second;
/external/clang/include/clang/Basic/
SourceManager.h
360
///
ExpansionLoc
specifies the expansion location (where the macro is
364
/// (where the characters from the token come from).
ExpansionLoc
and
374
/// SpellingLoc pointing at '\c 42' and an
ExpansionLoc
pointing at its
377
SourceLocation
ExpansionLoc
) {
381
return create(SpellingLoc,
ExpansionLoc
, SourceLocation());
806
///
ExpansionLoc
, and that it represents the expansion of a macro argument
809
SourceLocation
ExpansionLoc
,
814
///
ExpansionLoc
.
[
all
...]
/external/clang/lib/Basic/
SourceManager.cpp
616
SourceLocation
ExpansionLoc
,
619
ExpansionLoc
);
[
all
...]
/external/clang/lib/Lex/
ModuleMap.cpp
682
FullSourceLoc
ExpansionLoc
= Loc.getExpansionLoc();
683
if (!
ExpansionLoc
.isFileID())
688
FileID ExpansionFileID =
ExpansionLoc
.getFileID();
[
all
...]
Completed in 384 milliseconds