Home
last modified time | relevance | path

Searched refs:boolLiteral (Results 1 – 4 of 4) sorted by relevance

/external/clang/unittests/Tooling/
DRefactoringCallbacksTest.cpp74 hasCondition(boolLiteral(equals(false))), in TEST()
95 id("id", ifStmt(hasCondition(boolLiteral(equals(false))))), in TEST()
/external/clang/unittests/ASTMatchers/
DASTMatchersTest.cpp2146 StatementMatcher Condition = ifStmt(hasCondition(boolLiteral(equals(true)))); in TEST()
2157 ifStmt(hasThen(boolLiteral(equals(true)))))); in TEST()
2159 ifStmt(hasThen(boolLiteral(equals(true)))))); in TEST()
2161 ifStmt(hasElse(boolLiteral(equals(true)))))); in TEST()
2163 ifStmt(hasElse(boolLiteral(equals(true)))))); in TEST()
2175 binaryOperator(hasLHS(boolLiteral(equals(true))), in TEST()
2176 hasRHS(boolLiteral(equals(false)))); in TEST()
2185 binaryOperator(hasEitherOperand(boolLiteral(equals(false)))); in TEST()
2302 unaryOperator(hasUnaryOperand(boolLiteral(equals(false)))); in TEST()
2345 hasCondition(boolLiteral(equals(true))), in TEST()
[all …]
/external/clang/lib/ASTMatchers/Dynamic/
DRegistry.cpp111 REGISTER_MATCHER(boolLiteral); in RegistryMaps()
/external/clang/include/clang/ASTMatchers/
DASTMatchers.h1369 CXXBoolLiteralExpr> boolLiteral; variable