OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:gotostmt
(Results
1 - 25
of
28
) sorted by null
1
2
/external/clang/unittests/ASTMatchers/Dynamic/
VariantValueTest.cpp
71
EXPECT_FALSE(Value.hasTypedMatcher<
GotoStmt
>());
/external/clang/include/clang/Basic/
StmtNodes.td
21
def
GotoStmt
: Stmt;
/external/clang/lib/ASTMatchers/Dynamic/
Registry.cpp
263
REGISTER_MATCHER(
gotoStmt
);
/external/clang/include/clang/AST/
Stmt.h
[
all
...]
RecursiveASTVisitor.h
[
all
...]
/external/chromium_org/v8/tools/gcmole/
gcmole.cc
893
VISIT(
GotoStmt
);
921
IGNORE_STMT(
GotoStmt
);
[
all
...]
/external/clang/lib/Sema/
JumpDiagnostics.cpp
497
if (
GotoStmt
*GS = dyn_cast<
GotoStmt
>(Jump)) {
SemaStmt.cpp
[
all
...]
/external/v8/tools/gcmole/
gcmole.cc
895
VISIT(
GotoStmt
);
923
IGNORE_STMT(
GotoStmt
);
[
all
...]
/external/clang/lib/Analysis/
CFG.cpp
378
CFGBlock *VisitGotoStmt(
GotoStmt
*G);
678
const
GotoStmt
*G = cast<
GotoStmt
>(B->getTerminator());
[
all
...]
/external/clang/lib/AST/
ASTDumper.cpp
251
void VisitGotoStmt(const
GotoStmt
*Node);
[
all
...]
StmtProfile.cpp
140
void StmtProfiler::VisitGotoStmt(const
GotoStmt
*S) {
[
all
...]
StmtPrinter.cpp
352
void StmtPrinter::VisitGotoStmt(
GotoStmt
*Node) {
[
all
...]
/external/clang/lib/CodeGen/
CGStmt.cpp
184
case Stmt::GotoStmtClass: EmitGotoStmt(cast<
GotoStmt
>(*S)); break;
394
void CodeGenFunction::EmitGotoStmt(const
GotoStmt
&S) {
[
all
...]
CodeGenFunction.h
[
all
...]
/external/clang/include/clang/ASTMatchers/
ASTMatchers.h
930
///
gotoStmt
()
932
const internal::VariadicDynCastAllOfMatcher<Stmt,
GotoStmt
>
gotoStmt
;
[
all
...]
/external/clang/tools/libclang/
CIndex.cpp
[
all
...]
RecursiveASTVisitor.h
[
all
...]
/external/clang/include/clang/Serialization/
ASTBitCodes.h
[
all
...]
ASTReader.h
73
class
GotoStmt
;
[
all
...]
/external/clang/lib/Serialization/
ASTReaderStmt.cpp
249
void ASTStmtReader::VisitGotoStmt(
GotoStmt
*S) {
[
all
...]
ASTWriterStmt.cpp
176
void ASTStmtWriter::VisitGotoStmt(
GotoStmt
*S) {
[
all
...]
/external/clang/docs/
LibASTMatchersReference.html
[
all
...]
/external/clang/lib/StaticAnalyzer/Core/
BugReporter.cpp
[
all
...]
/external/clang/unittests/ASTMatchers/
ASTMatchersTest.cpp
[
all
...]
Completed in 1938 milliseconds
1
2