Searched refs:IsDefinition (Results 1 - 19 of 19) 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/llvm/lib/IR/
H A DLLVMContextImpl.h469 bool IsDefinition; member in struct:llvm::MDNodeKeyImpl
482 bool IsLocalToUnit, bool IsDefinition, unsigned ScopeLine,
489 IsDefinition(IsDefinition), ScopeLine(ScopeLine),
498 IsLocalToUnit(N->isLocalToUnit()), IsDefinition(N->isDefinition()),
510 IsDefinition == RHS->isDefinition() &&
522 IsLocalToUnit, IsDefinition, ScopeLine, ContainingType,
660 bool IsDefinition; member in struct:llvm::MDNodeKeyImpl
666 bool IsLocalToUnit, bool IsDefinition, Metadata *Variable,
670 IsDefinition(IsDefinitio
480 MDNodeKeyImpl(Metadata *Scope, StringRef Name, StringRef LinkageName, Metadata *File, unsigned Line, Metadata *Type, bool IsLocalToUnit, bool IsDefinition, unsigned ScopeLine, Metadata *ContainingType, unsigned Virtuality, unsigned VirtualIndex, unsigned Flags, bool IsOptimized, Metadata *TemplateParams, Metadata *Declaration, Metadata *Variables) argument
664 MDNodeKeyImpl(Metadata *Scope, StringRef Name, StringRef LinkageName, Metadata *File, unsigned Line, Metadata *Type, bool IsLocalToUnit, bool IsDefinition, Metadata *Variable, Metadata *StaticDataMemberDeclaration) argument
[all...]
H A DDebugInfoMetadata.cpp343 bool IsLocalToUnit, bool IsDefinition, unsigned ScopeLine,
352 Line, Type, IsLocalToUnit, IsDefinition, ScopeLine,
360 IsLocalToUnit, IsDefinition, IsOptimized),
443 Metadata *Type, bool IsLocalToUnit, bool IsDefinition,
451 Line, Type, IsLocalToUnit, IsDefinition, Variable,
455 DEFINE_GETIMPL_STORE(DIGlobalVariable, (Line, IsLocalToUnit, IsDefinition),
340 getImpl( LLVMContext &Context, Metadata *Scope, MDString *Name, MDString *LinkageName, Metadata *File, unsigned Line, Metadata *Type, bool IsLocalToUnit, bool IsDefinition, unsigned ScopeLine, Metadata *ContainingType, unsigned Virtuality, unsigned VirtualIndex, unsigned Flags, bool IsOptimized, Metadata *TemplateParams, Metadata *Declaration, Metadata *Variables, StorageType Storage, bool ShouldCreate) argument
441 getImpl(LLVMContext &Context, Metadata *Scope, MDString *Name, MDString *LinkageName, Metadata *File, unsigned Line, Metadata *Type, bool IsLocalToUnit, bool IsDefinition, Metadata *Variable, Metadata *StaticDataMemberDeclaration, StorageType Storage, bool ShouldCreate) argument
/external/llvm/include/llvm/IR/
H A DDebugInfoMetadata.h1230 bool IsDefinition; member in class:llvm::DISubprogram
1235 unsigned Flags, bool IsLocalToUnit, bool IsDefinition,
1241 IsDefinition(IsDefinition), IsOptimized(IsOptimized) {}
1247 DISubroutineType *Type, bool IsLocalToUnit, bool IsDefinition,
1255 IsLocalToUnit, IsDefinition, ScopeLine, ContainingType,
1263 bool IsLocalToUnit, bool IsDefinition, unsigned ScopeLine,
1281 bool IsLocalToUnit, bool IsDefinition, unsigned ScopeLine,
1288 IsDefinition, ScopeLine, ContainingType, Virtuality,
1294 unsigned Line, Metadata *Type, bool IsLocalToUnit, bool IsDefinition,
1233 DISubprogram(LLVMContext &C, StorageType Storage, unsigned Line, unsigned ScopeLine, unsigned Virtuality, unsigned VirtualIndex, unsigned Flags, bool IsLocalToUnit, bool IsDefinition, bool IsOptimized, ArrayRef<Metadata *> Ops) argument
1245 getImpl(LLVMContext &Context, DIScopeRef Scope, StringRef Name, StringRef LinkageName, DIFile *File, unsigned Line, DISubroutineType *Type, bool IsLocalToUnit, bool IsDefinition, unsigned ScopeLine, DITypeRef ContainingType, unsigned Virtuality, unsigned VirtualIndex, unsigned Flags, bool IsOptimized, DITemplateParameterArray TemplateParams, DISubprogram *Declaration, DILocalVariableArray Variables, StorageType Storage, bool ShouldCreate = true) argument
1773 bool IsDefinition; member in class:llvm::DILexicalBlock::DIGlobalVariable
1775 DIGlobalVariable(LLVMContext &C, StorageType Storage, unsigned Line, bool IsLocalToUnit, bool IsDefinition, ArrayRef<Metadata *> Ops) argument
1783 getImpl(LLVMContext &Context, DIScope *Scope, StringRef Name, StringRef LinkageName, DIFile *File, unsigned Line, DITypeRef Type, bool IsLocalToUnit, bool IsDefinition, Constant *Variable, DIDerivedType *StaticDataMemberDeclaration, StorageType Storage, bool ShouldCreate = true) argument
[all...]
/external/llvm/unittests/IR/
H A DMetadataTest.cpp1413 bool IsDefinition = true; local
1426 IsDefinition, ScopeLine, ContainingType, Virtuality, VirtualIndex, Flags,
1437 EXPECT_EQ(IsDefinition, N->isDefinition());
1448 Type, IsLocalToUnit, IsDefinition, ScopeLine,
1454 File, Line, Type, IsLocalToUnit, IsDefinition,
1459 Line, Type, IsLocalToUnit, IsDefinition,
1464 Type, IsLocalToUnit, IsDefinition, ScopeLine,
1469 Line, Type, IsLocalToUnit, IsDefinition,
1474 Line + 1, Type, IsLocalToUnit, IsDefinition,
1480 IsDefinition, ScopeLin
1742 bool IsDefinition = true; local
[all...]
/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/bindings/go/llvm/
H A DDIBuilderBindings.h57 LLVMMetadataRef CompositeType, int IsLocalToUnit, int IsDefinition,
H A DDIBuilderBindings.cpp76 LLVMMetadataRef CompositeType, int IsLocalToUnit, int IsDefinition,
82 IsLocalToUnit, IsDefinition, ScopeLine, Flags,
73 LLVMDIBuilderCreateFunction( LLVMDIBuilderRef Dref, LLVMMetadataRef Scope, const char *Name, const char *LinkageName, LLVMMetadataRef File, unsigned Line, LLVMMetadataRef CompositeType, int IsLocalToUnit, int IsDefinition, unsigned ScopeLine, unsigned Flags, int IsOptimized) argument
/external/clang/lib/AST/
H A DDeclBase.cpp512 bool Decl::canBeWeakImported(bool &IsDefinition) const {
513 IsDefinition = false;
518 IsDefinition = true;
526 IsDefinition = true;
543 bool IsDefinition; local
544 if (!canBeWeakImported(IsDefinition))
/external/google-breakpad/src/testing/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/include/llvm/CodeGen/
H A DAsmPrinter.h537 bool IsDefinition = true) const;
/external/clang/lib/Parse/
H A DParser.cpp1863 void Parser::CodeCompleteMacroName(bool IsDefinition) { argument
1864 Actions.CodeCompletePreprocessorMacroName(IsDefinition);
/external/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinter.cpp2464 bool IsDefinition) const {
2470 if (IsDefinition)
/external/clang/include/clang/AST/
H A DDeclBase.h624 /// \param IsDefinition Set to \c true to indicate that this
626 bool canBeWeakImported(bool &IsDefinition) const;
/external/clang/lib/Sema/
H A DSemaCodeComplete.cpp7433 void Sema::CodeCompletePreprocessorMacroName(bool IsDefinition) { argument
7436 IsDefinition? CodeCompletionContext::CCC_MacroName
7438 if (!IsDefinition && (!CodeCompleter || CodeCompleter->includeMacros())) {
7453 } else if (IsDefinition) {
H A DSemaDecl.cpp6889 bool IsDefinition = ExtraArgs.D.isFunctionDefinition(); local
6974 << Name << NewDC << IsDefinition);
6987 << Name << NewDC << IsDefinition << NewFD->getLocation();
/external/clang/include/clang/Parse/
H A DParser.h2584 void CodeCompleteMacroName(bool IsDefinition) override;
/external/clang/unittests/ASTMatchers/
H A DASTMatchersTest.cpp2687 TEST(Matcher, IsDefinition) {
/external/clang/include/clang/Sema/
H A DSema.h8928 void CodeCompletePreprocessorMacroName(bool IsDefinition);

Completed in 353 milliseconds