Searched refs:IsDefinition (Results 1 - 13 of 13) 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.cpp152 const MatcherList IsDefinition = constructMatcher("isDefinition"); local
154 constructMatcher("varDecl", IsDefinition).getTypedMatcher<Decl>();
156 constructMatcher("recordDecl", IsDefinition).getTypedMatcher<Decl>();
158 constructMatcher("functionDecl", IsDefinition).getTypedMatcher<Decl>();
/external/clang/lib/AST/
H A DDeclBase.cpp433 bool Decl::canBeWeakImported(bool &IsDefinition) const {
434 IsDefinition = false;
439 IsDefinition = true;
447 IsDefinition = true;
464 bool IsDefinition; local
465 if (!canBeWeakImported(IsDefinition))
/external/llvm/include/llvm/CodeGen/
H A DAsmPrinter.h478 bool IsDefinition = true) const;
/external/chromium/testing/gmock/scripts/generator/cpp/
H A Dast.py119 def IsDefinition(self): member in class:Node
277 def IsDefinition(self): member in class:Typedef
301 def IsDefinition(self): member in class:_NestedType
330 def IsDefinition(self): member in class:Class
373 def IsDefinition(self): member in class:Function
450 def IsDefinition(self): member in class:Type
/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.cpp1759 void Parser::CodeCompleteMacroName(bool IsDefinition) { argument
1760 Actions.CodeCompletePreprocessorMacroName(IsDefinition);
/external/clang/include/clang/AST/
H A DDeclBase.h594 /// \param IsDefinition Set to \c true to indicate that this
596 bool canBeWeakImported(bool &IsDefinition) const;
/external/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinter.cpp2132 bool IsDefinition) const {
2138 if (IsDefinition)
/external/clang/include/clang/Parse/
H A DParser.h2272 virtual void CodeCompleteMacroName(bool IsDefinition);
/external/clang/lib/Sema/
H A DSemaCodeComplete.cpp7272 void Sema::CodeCompletePreprocessorMacroName(bool IsDefinition) { argument
7275 IsDefinition? CodeCompletionContext::CCC_MacroName
7277 if (!IsDefinition && (!CodeCompleter || CodeCompleter->includeMacros())) {
7292 } else if (IsDefinition) {
/external/clang/unittests/ASTMatchers/
H A DASTMatchersTest.cpp2173 TEST(Matcher, IsDefinition) {
/external/clang/include/clang/Sema/
H A DSema.h7578 void CodeCompletePreprocessorMacroName(bool IsDefinition);

Completed in 5329 milliseconds