Searched defs:IsDefinition (Results 1 - 7 of 7) sorted by relevance

/external/clang/include/clang/Lex/
H A DCodeCompletionHandler.h45 /// \param IsDefinition Whether this is the definition of a macro, e.g.,
47 virtual void CodeCompleteMacroName(bool IsDefinition) { } argument
/external/clang/unittests/ASTMatchers/Dynamic/
H A DRegistryTest.cpp231 const VariantMatcher IsDefinition = constructMatcher("isDefinition"); local
233 constructMatcher("varDecl", IsDefinition).getTypedMatcher<Decl>();
235 constructMatcher("recordDecl", IsDefinition).getTypedMatcher<Decl>();
237 constructMatcher("functionDecl", IsDefinition).getTypedMatcher<Decl>();
/external/llvm/lib/Transforms/Instrumentation/
H A DDebugIR.cpp214 bool IsDefinition = !F.isDeclaration(); local
221 Sig, Local, IsDefinition, ScopeLine, FuncFlags, IsOptimized, &F);
/external/clang/lib/Parse/
H A DParser.cpp1776 void Parser::CodeCompleteMacroName(bool IsDefinition) { argument
1777 Actions.CodeCompletePreprocessorMacroName(IsDefinition);
/external/clang/lib/AST/
H A DDeclBase.cpp454 bool Decl::canBeWeakImported(bool &IsDefinition) const {
455 IsDefinition = false;
460 IsDefinition = true;
468 IsDefinition = true;
485 bool IsDefinition; local
486 if (!canBeWeakImported(IsDefinition))
/external/clang/lib/Sema/
H A DSemaCodeComplete.cpp7190 void Sema::CodeCompletePreprocessorMacroName(bool IsDefinition) { argument
7193 IsDefinition? CodeCompletionContext::CCC_MacroName
7195 if (!IsDefinition && (!CodeCompleter || CodeCompleter->includeMacros())) {
7210 } else if (IsDefinition) {
H A DSemaDecl.cpp6290 bool IsDefinition = ExtraArgs.D.isFunctionDefinition(); local
6375 << Name << NewDC << IsDefinition);
6388 << Name << NewDC << IsDefinition << NewFD->getLocation();

Completed in 178 milliseconds