Home
last modified time | relevance | path

Searched refs:IsDefinition (Results 1 – 20 of 20) sorted by relevance

/external/llvm/unittests/IR/
DMetadataTest.cpp1429 bool IsDefinition = true; in TEST_F() local
1443 IsDefinition, ScopeLine, ContainingType, Virtuality, VirtualIndex, Flags, in TEST_F()
1454 EXPECT_EQ(IsDefinition, N->isDefinition()); in TEST_F()
1466 Type, IsLocalToUnit, IsDefinition, ScopeLine, in TEST_F()
1472 File, Line, Type, IsLocalToUnit, IsDefinition, in TEST_F()
1477 Line, Type, IsLocalToUnit, IsDefinition, in TEST_F()
1482 Type, IsLocalToUnit, IsDefinition, ScopeLine, in TEST_F()
1487 Line, Type, IsLocalToUnit, IsDefinition, in TEST_F()
1492 Line + 1, Type, IsLocalToUnit, IsDefinition, in TEST_F()
1498 getSubroutineType(), IsLocalToUnit, IsDefinition, ScopeLine, in TEST_F()
[all …]
/external/llvm/include/llvm/IR/
DDebugInfoMetadata.h1253 bool IsDefinition;
1258 unsigned Flags, bool IsLocalToUnit, bool IsDefinition,
1264 IsDefinition(IsDefinition), IsOptimized(IsOptimized) {}
1270 MDSubroutineType *Type, bool IsLocalToUnit, bool IsDefinition,
1278 IsLocalToUnit, IsDefinition, ScopeLine, ContainingType,
1287 bool IsLocalToUnit, bool IsDefinition, unsigned ScopeLine,
1306 bool IsLocalToUnit, bool IsDefinition, unsigned ScopeLine,
1314 IsDefinition, ScopeLine, ContainingType, Virtuality,
1320 unsigned Line, Metadata *Type, bool IsLocalToUnit, bool IsDefinition,
1325 (Scope, Name, LinkageName, File, Line, Type, IsLocalToUnit, IsDefinition,
[all …]
/external/llvm/lib/IR/
DLLVMContextImpl.h528 bool IsDefinition;
542 bool IsLocalToUnit, bool IsDefinition, unsigned ScopeLine,
549 IsDefinition(IsDefinition), ScopeLine(ScopeLine),
558 IsLocalToUnit(N->isLocalToUnit()), IsDefinition(N->isDefinition()),
571 IsDefinition == RHS->isDefinition() &&
584 IsLocalToUnit, IsDefinition, ScopeLine, ContainingType,
693 bool IsDefinition;
699 bool IsLocalToUnit, bool IsDefinition, Metadata *Variable,
703 IsDefinition(IsDefinition), Variable(Variable),
709 IsLocalToUnit(N->isLocalToUnit()), IsDefinition(N->isDefinition()),
[all …]
DDebugInfoMetadata.cpp341 bool IsLocalToUnit, bool IsDefinition, unsigned ScopeLine, in getImpl() argument
350 Line, Type, IsLocalToUnit, IsDefinition, ScopeLine, in getImpl()
359 IsLocalToUnit, IsDefinition, IsOptimized), in getImpl()
437 Metadata *Type, bool IsLocalToUnit, bool IsDefinition, in getImpl() argument
445 Line, Type, IsLocalToUnit, IsDefinition, Variable, in getImpl()
449 DEFINE_GETIMPL_STORE(MDGlobalVariable, (Line, IsLocalToUnit, IsDefinition), in getImpl()
/external/clang/include/clang/Lex/
DCodeCompletionHandler.h47 virtual void CodeCompleteMacroName(bool IsDefinition) { } in CodeCompleteMacroName() argument
/external/clang/unittests/ASTMatchers/Dynamic/
DRegistryTest.cpp231 const VariantMatcher IsDefinition = constructMatcher("isDefinition"); in TEST_F() local
233 constructMatcher("varDecl", IsDefinition).getTypedMatcher<Decl>(); in TEST_F()
235 constructMatcher("recordDecl", IsDefinition).getTypedMatcher<Decl>(); in TEST_F()
237 constructMatcher("functionDecl", IsDefinition).getTypedMatcher<Decl>(); in TEST_F()
/external/clang/lib/AST/
DDeclBase.cpp474 bool Decl::canBeWeakImported(bool &IsDefinition) const { in canBeWeakImported()
475 IsDefinition = false; in canBeWeakImported()
480 IsDefinition = true; in canBeWeakImported()
488 IsDefinition = true; in canBeWeakImported()
505 bool IsDefinition; in isWeakImported() local
506 if (!canBeWeakImported(IsDefinition)) in isWeakImported()
/external/llvm/bindings/go/llvm/
DDIBuilderBindings.cpp79 LLVMMetadataRef CompositeType, int IsLocalToUnit, int IsDefinition, in LLVMDIBuilderCreateFunction() argument
85 unwrap<MDSubroutineType>(CompositeType), IsLocalToUnit, IsDefinition, in LLVMDIBuilderCreateFunction()
DDIBuilderBindings.h57 LLVMMetadataRef CompositeType, int IsLocalToUnit, int IsDefinition,
Ddibuilder.go188 IsDefinition bool member
210 boolToCInt(f.IsDefinition),
/external/google-breakpad/src/testing/scripts/generator/cpp/
Dast.py119 def IsDefinition(self): member in Node
277 def IsDefinition(self): member in Typedef
301 def IsDefinition(self): member in _NestedType
330 def IsDefinition(self): member in Class
373 def IsDefinition(self): member in Function
450 def IsDefinition(self): member in Type
/external/llvm/include/llvm/CodeGen/
DAsmPrinter.h515 bool IsDefinition = true) const;
/external/clang/lib/Parse/
DParser.cpp1757 void Parser::CodeCompleteMacroName(bool IsDefinition) { in CodeCompleteMacroName() argument
1758 Actions.CodeCompletePreprocessorMacroName(IsDefinition); in CodeCompleteMacroName()
/external/llvm/lib/CodeGen/AsmPrinter/
DAsmPrinter.cpp2437 bool IsDefinition) const { in EmitVisibility()
2443 if (IsDefinition) in EmitVisibility()
/external/clang/include/clang/AST/
DDeclBase.h615 bool canBeWeakImported(bool &IsDefinition) const;
/external/clang/lib/Sema/
DSemaCodeComplete.cpp7342 void Sema::CodeCompletePreprocessorMacroName(bool IsDefinition) { in CodeCompletePreprocessorMacroName() argument
7345 IsDefinition? CodeCompletionContext::CCC_MacroName in CodeCompletePreprocessorMacroName()
7347 if (!IsDefinition && (!CodeCompleter || CodeCompleter->includeMacros())) { in CodeCompletePreprocessorMacroName()
7362 } else if (IsDefinition) { in CodeCompletePreprocessorMacroName()
DSemaDecl.cpp6553 bool IsDefinition = ExtraArgs.D.isFunctionDefinition(); in DiagnoseInvalidRedeclaration() local
6638 << Name << NewDC << IsDefinition); in DiagnoseInvalidRedeclaration()
6651 << Name << NewDC << IsDefinition << NewFD->getLocation(); in DiagnoseInvalidRedeclaration()
/external/clang/include/clang/Parse/
DParser.h2479 void CodeCompleteMacroName(bool IsDefinition) override;
/external/clang/unittests/ASTMatchers/
DASTMatchersTest.cpp2448 TEST(Matcher, IsDefinition) { in TEST() argument
/external/clang/include/clang/Sema/
DSema.h8409 void CodeCompletePreprocessorMacroName(bool IsDefinition);