Searched refs:autoType (Results 1 – 13 of 13) sorted by relevance
/external/llvm-project/clang-tools-extra/clang-tidy/readability/ |
D | QualifiedAutoCheck.cpp | 130 ExplicitSingleVarDecl(hasType(autoType(hasDeducedType( in registerMatchers() 137 allOf(hasType(autoType(hasDeducedType(pointerType( in registerMatchers() 149 hasType(pointerType(pointee(autoType()))), "auto_ptr"), in registerMatchers() 152 ExplicitSingleVarDecl(hasType(lValueReferenceType(pointee(autoType()))), in registerMatchers()
|
/external/llvm-project/clang-tools-extra/clang-tidy/cppcoreguidelines/ |
D | ProBoundsPointerArithmeticCheck.cpp | 24 hasType(pointerType()), hasType(autoType(hasDeducedType(pointerType()))), in registerMatchers()
|
D | OwningMemoryCheck.cpp | 144 hasType(autoType().bind("deduced_type"))))) in registerMatchers()
|
/external/llvm-project/clang-tools-extra/clang-tidy/modernize/ |
D | ReturnBracedInitListCheck.cpp | 37 returns(unless(anyOf(builtinType(), autoType()))), in registerMatchers()
|
D | UseAutoCheck.cpp | 265 unless(has(varDecl(anyOf(hasType(autoType()), in makeCombinedMatcher() 266 hasType(qualType(hasDescendant(autoType()))))))), in makeCombinedMatcher()
|
/external/llvm-project/clang-tools-extra/clang-tidy/misc/ |
D | UnconventionalAssignOperatorCheck.cpp | 23 anyOf(autoType(), hasDeclaration(equalsBoundNode("class"))))))); in registerMatchers()
|
/external/clang/lib/ASTMatchers/Dynamic/ |
D | Registry.cpp | 110 REGISTER_MATCHER(autoType); in RegistryMaps()
|
/external/clang/unittests/ASTMatchers/ |
D | ASTMatchersNodeTest.cpp | 1149 EXPECT_TRUE(matches("auto i = 2;", autoType())); in TEST() 1151 autoType())); in TEST()
|
/external/llvm-project/clang/lib/ASTMatchers/Dynamic/ |
D | Registry.cpp | 144 REGISTER_MATCHER(autoType); in RegistryMaps()
|
/external/llvm-project/clang/unittests/ASTMatchers/ |
D | ASTMatchersNodeTest.cpp | 1576 EXPECT_TRUE(matches("auto i = 2;", autoType())); in TEST_P() 1578 autoType())); in TEST_P()
|
/external/llvm-project/clang/lib/ASTMatchers/ |
D | ASTMatchersInternal.cpp | 1003 const AstTypeMatcher<AutoType> autoType; variable
|
/external/clang/include/clang/ASTMatchers/ |
D | ASTMatchers.h | 4564 AST_TYPE_MATCHER(AutoType, autoType);
|
/external/llvm-project/clang/include/clang/ASTMatchers/ |
D | ASTMatchers.h | 6256 extern const AstTypeMatcher<AutoType> autoType;
|