Home
last modified time | relevance | path

Searched defs:IntParam (Results 1 – 3 of 3) sorted by relevance

/external/clang/unittests/ASTMatchers/
DASTMatchersTraversalTest.cpp364 DeclarationMatcher IntParam = parmVarDecl(hasType(isInteger())).bind("param"); in TEST() local
377 DeclarationMatcher IntParam = parmVarDecl(hasType(isInteger())).bind("param"); in TEST() local
406 DeclarationMatcher IntParam = parmVarDecl(hasType(isInteger())).bind("param"); in TEST() local
430 DeclarationMatcher IntParam = parmVarDecl(hasType(isInteger())).bind("param"); in TEST() local
/external/clang/test/SemaCXX/
Dconstructor-initializer.cpp134 int IntParam(int i) { return 0; }; in IntParam() function
Dconstant-expression-cxx11.cpp90 template<int n> struct IntParam {}; struct