HomeSort by relevance Sort by last modified time
    Searched refs:binaryOperator (Results 1 - 6 of 6) sorted by null

  /external/clang/unittests/ASTMatchers/
ASTMatchersTraversalTest.cpp 727 StatementMatcher OperatorOr = binaryOperator(hasOperatorName("||"));
735 binaryOperator(hasLHS(cxxBoolLiteral(equals(true))),
750 binaryOperator(hasEitherOperand(cxxBoolLiteral(equals(false))));
762 matches("void x() { 3, 4; }", binaryOperator(hasOperatorName(","))));
765 binaryOperator(hasOperatorName("="))));
767 matches("bool b = 1 != 2;", binaryOperator(hasOperatorName("!="))));
769 matches("bool b = 1 == 2;", binaryOperator(hasOperatorName("=="))));
770 EXPECT_TRUE(matches("bool b = 1 < 2;", binaryOperator(hasOperatorName("<"))));
772 matches("bool b = 1 <= 2;", binaryOperator(hasOperatorName("<="))));
774 matches("int i = 1 << 2;", binaryOperator(hasOperatorName("<<"))))
    [all...]
ASTMatchersNarrowingTest.cpp 316 StatementMatcher MixedTypes = stmt(anyOf(ifStmt(), binaryOperator()));
572 binaryOperator(hasOperatorName("+"),
575 binaryOperator(hasOperatorName("+"),
    [all...]
ASTMatchersNodeTest.cpp     [all...]
  /external/v8/tools/clang/traffic_annotation_extractor/
traffic_annotation_extractor.cpp 380 hasParent(binaryOperator(hasOperatorName("="))),
  /external/clang/lib/ASTMatchers/Dynamic/
Registry.cpp 111 REGISTER_MATCHER(binaryOperator);
  /external/clang/include/clang/ASTMatchers/
ASTMatchers.h     [all...]

Completed in 413 milliseconds