OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:expansionloc
(Results
1 - 9
of
9
) sorted by null
/external/clang/include/clang/Edit/
EditedSource.h
86
SourceLocation &
ExpansionLoc
,
/external/clang/tools/libclang/
CXSourceLocation.cpp
253
SourceLocation
ExpansionLoc
= SM.getExpansionLoc(Loc);
257
FileID fileID = SM.getFileID(
ExpansionLoc
);
268
*line = SM.getExpansionLineNumber(
ExpansionLoc
);
270
*column = SM.getExpansionColumnNumber(
ExpansionLoc
);
272
*offset = SM.getDecomposedLoc(
ExpansionLoc
).second;
/external/clang/include/clang/Basic/
SourceManager.h
367
///
ExpansionLoc
specifies the expansion location (where the macro is
371
/// (where the characters from the token come from).
ExpansionLoc
and
381
/// SpellingLoc pointing at '\c 42' and an
ExpansionLoc
pointing at its
384
SourceLocation
ExpansionLoc
) {
388
return create(SpellingLoc,
ExpansionLoc
, SourceLocation());
803
///
ExpansionLoc
, and that it represents the expansion of a macro argument
806
SourceLocation
ExpansionLoc
,
811
///
ExpansionLoc
.
[
all
...]
/external/clang/lib/Edit/
EditedSource.cpp
27
SourceLocation &
ExpansionLoc
,
31
ExpansionLoc
= SourceMgr.getImmediateExpansionRange(DefArgLoc).first;
/external/clang/lib/Lex/
Lexer.cpp
787
SourceLocation
expansionLoc
;
788
if (!SM.isAtStartOfImmediateMacroExpansion(loc, &
expansionLoc
))
791
if (
expansionLoc
.isFileID()) {
794
*MacroBegin =
expansionLoc
;
798
return isAtStartOfMacroExpansion(
expansionLoc
, SM, LangOpts, MacroBegin);
815
SourceLocation
expansionLoc
;
816
if (!SM.isAtEndOfImmediateMacroExpansion(afterLoc, &
expansionLoc
))
819
if (
expansionLoc
.isFileID()) {
822
*MacroEnd =
expansionLoc
;
826
return isAtEndOfMacroExpansion(
expansionLoc
, SM, LangOpts, MacroEnd)
[
all
...]
TokenLexer.cpp
465
//
ExpansionLoc
. Pull this information together into a new SourceLocation
[
all
...]
ModuleMap.cpp
[
all
...]
/external/clang/lib/Basic/
SourceManager.cpp
592
SourceLocation
ExpansionLoc
,
595
ExpansionLoc
);
[
all
...]
/external/clang/include/clang/ASTMatchers/
ASTMatchers.h
209
auto
ExpansionLoc
= SourceManager.getExpansionLoc(Node.getLocStart());
210
if (
ExpansionLoc
.isInvalid()) {
213
return SourceManager.isInSystemHeader(
ExpansionLoc
);
235
auto
ExpansionLoc
= SourceManager.getExpansionLoc(Node.getLocStart());
236
if (
ExpansionLoc
.isInvalid()) {
240
SourceManager.getFileEntryForID(SourceManager.getFileID(
ExpansionLoc
));
[
all
...]
Completed in 288 milliseconds