OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:LabelStmt
(Results
1 - 25
of
36
) sorted by relevancy
1
2
/src/external/apache2/llvm/dist/clang/lib/CodeGen/
VarBypassDetector.cpp
119
else if (const
LabelStmt
*LS = dyn_cast<
LabelStmt
>(SubStmt))
141
if (const
LabelStmt
*LS = GS->getLabel()->getStmt())
CodeGenPGO.cpp
92
LabelStmt
= 1,
276
return PGOHash::
LabelStmt
;
463
void VisitLabelStmt(const
LabelStmt
*S) {
CGStmt.cpp
406
EmitLabelStmt(cast<
LabelStmt
>(*S));
466
if (const auto *LS = dyn_cast<
LabelStmt
>(ExprResult)) {
647
void CodeGenFunction::EmitLabelStmt(const
LabelStmt
&S) {
CoverageMappingGen.cpp
1038
void VisitLabelStmt(const
LabelStmt
*S) {
/src/external/apache2/llvm/dist/clang/tools/libclang/
CXCursor.h
31
class
LabelStmt
;
207
CXCursor MakeCursorLabelRef(
LabelStmt
*Label, SourceLocation Loc,
212
std::pair<const
LabelStmt
*, SourceLocation> getCursorLabelRef(CXCursor C);
CXCursor.cpp
1041
CXCursor cxcursor::MakeCursorLabelRef(
LabelStmt
*Label, SourceLocation Loc,
1050
std::pair<const
LabelStmt
*, SourceLocation>
1053
return std::make_pair(static_cast<const
LabelStmt
*>(C.data[0]),
CIndex.cpp
3189
if (
LabelStmt
*stmt = LS->getStmt()) {
4675
const
LabelStmt
*Label = getCursorLabelRef(C).first;
4734
if (const
LabelStmt
*Label = dyn_cast_or_null<
LabelStmt
>(S))
4793
if (const
LabelStmt
*Label = dyn_cast_or_null<
LabelStmt
>(S)) {
5374
return cxstring::createRef("
LabelStmt
");
6034
std::pair<const
LabelStmt
*, SourceLocation> P = getCursorLabelRef(C);
6327
if (
LabelStmt
*labelS = label->getStmt())
/src/external/apache2/llvm/dist/clang/lib/Sema/
JumpDiagnostics.cpp
631
else if (
LabelStmt
*LS = dyn_cast<
LabelStmt
>(SubStmt))
968
assert(isa<
LabelStmt
>(To));
969
LabelStmt
*Label = cast<
LabelStmt
>(To);
AnalysisBasedWarnings.cpp
1113
const
LabelStmt
*L = dyn_cast_or_null<
LabelStmt
>(P->getLabel());
SemaStmt.cpp
220
if (const
LabelStmt
*Label = dyn_cast_or_null<
LabelStmt
>(S))
552
LabelStmt
*LS = new (Context)
LabelStmt
(IdentLoc, TheDecl, SubStmt);
/src/external/apache2/llvm/dist/clang/lib/ARCMigrate/
TransProtectedScope.cpp
90
while (Parent && (isa<SwitchCase>(Parent) || isa<
LabelStmt
>(Parent)))
Transforms.cpp
290
while (auto *Label = dyn_cast<
LabelStmt
>(S))
/src/external/apache2/llvm/dist/clang/include/clang/AST/
JSONNodeDumper.h
312
void VisitLabelStmt(const
LabelStmt
*LS);
TextNodeDumper.h
243
void VisitLabelStmt(const
LabelStmt
*Node);
Decl.h
64
class
LabelStmt
;
466
/// corresponding
LabelStmt
, which indicates the position that the label was
471
LabelStmt
*TheStmt;
481
LabelStmt
*S, SourceLocation StartL)
494
LabelStmt
*getStmt() const { return TheStmt; }
495
void setStmt(
LabelStmt
*T) { TheStmt = T; }
Stmt.h
137
friend class
LabelStmt
;
1796
///
LabelStmt
- Represents a label, which has a substatement. For example:
1798
class
LabelStmt
: public ValueStmt {
1805
LabelStmt
(SourceLocation IL, LabelDecl *D, Stmt *substmt)
1811
explicit
LabelStmt
(EmptyShell Empty) : ValueStmt(LabelStmtClass, Empty) {}
/src/external/apache2/llvm/dist/clang/lib/AST/
Stmt.cpp
220
if (const auto *LS = dyn_cast<
LabelStmt
>(S))
401
if (const auto *LS = dyn_cast<
LabelStmt
>(S))
412
const char *
LabelStmt
::getName() const {
JSONNodeDumper.cpp
1451
void JSONNodeDumper::VisitLabelStmt(const
LabelStmt
*LS) {
ASTImporter.cpp
547
ExpectedStmt VisitLabelStmt(
LabelStmt
*S);
2642
Expected<
LabelStmt
*> ToStmtOrErr = import(D->getStmt());
6169
ExpectedStmt ASTNodeImporter::VisitLabelStmt(
LabelStmt
*S) {
6178
return new (Importer.getToContext())
LabelStmt
(
StmtPrinter.cpp
224
void StmtPrinter::VisitLabelStmt(
LabelStmt
*Node) {
/src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
CoreEngine.h
501
return cast<
LabelStmt
>((*I)->getLabel())->getDecl();
/src/external/apache2/llvm/dist/clang/lib/Analysis/
CFG.cpp
580
CFGBlock *VisitLabelStmt(
LabelStmt
*L);
2259
return VisitLabelStmt(cast<
LabelStmt
>(S));
3234
CFGBlock *CFGBuilder::VisitLabelStmt(
LabelStmt
*L) {
5645
if (
LabelStmt
*L = dyn_cast<
LabelStmt
>(Label))
/src/external/apache2/llvm/dist/clang/include/clang/ASTMatchers/
ASTMatchersInternal.h
1148
/// Extracts the declaration of a
LabelStmt
and returns whether the
1150
bool matchesSpecialized(const
LabelStmt
&Node, ASTMatchFinder *Finder,
1220
ElaboratedType, InjectedClassNameType,
LabelStmt
, AddrLabelExpr,
/src/external/apache2/llvm/dist/clang/lib/ASTMatchers/
ASTMatchersInternal.cpp
890
const internal::VariadicDynCastAllOfMatcher<Stmt,
LabelStmt
>
labelStmt
;
/src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTReaderStmt.cpp
186
void ASTStmtReader::VisitLabelStmt(
LabelStmt
*S) {
2723
S = new (Context)
LabelStmt
(Empty);
Completed in 120 milliseconds
1
2
Indexes created Tue Jun 09 00:24:00 UTC 2026