/external/llvm/lib/IR/ |
D | LLVMContextImpl.h | 526 bool IsDefinition; 541 bool IsLocalToUnit, bool IsDefinition, unsigned ScopeLine, 548 IsDefinition(IsDefinition), ScopeLine(ScopeLine), 558 IsLocalToUnit(N->isLocalToUnit()), IsDefinition(N->isDefinition()), 571 IsDefinition == RHS->isDefinition() && 587 if (!IsDefinition && LinkageName) 603 return isDeclarationOfODRMember(LHS.IsDefinition, LHS.Scope, 613 static bool isDeclarationOfODRMember(bool IsDefinition, const Metadata *Scope, 617 if (IsDefinition || !Scope || !LinkageName) 625 return IsDefinition == RHS->isDefinition() && Scope == RHS->getRawScope() && [all …]
|
D | DebugInfoMetadata.cpp | 413 bool IsLocalToUnit, bool IsDefinition, unsigned ScopeLine, in getImpl() argument 422 (Scope, Name, LinkageName, File, Line, Type, IsLocalToUnit, IsDefinition, in getImpl() 430 IsDefinition, IsOptimized), in getImpl() 511 Metadata *Type, bool IsLocalToUnit, bool IsDefinition, in getImpl() argument 519 IsLocalToUnit, IsDefinition, Variable, in getImpl() 523 DEFINE_GETIMPL_STORE(DIGlobalVariable, (Line, IsLocalToUnit, IsDefinition), in getImpl()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/ |
D | LLVMContextImpl.h | 611 bool IsDefinition; 627 bool IsLocalToUnit, bool IsDefinition, unsigned ScopeLine, 635 IsDefinition(IsDefinition), ScopeLine(ScopeLine), 645 IsLocalToUnit(N->isLocalToUnit()), IsDefinition(N->isDefinition()), 659 IsDefinition == RHS->isDefinition() && 677 if (!IsDefinition && LinkageName) 694 return isDeclarationOfODRMember(LHS.IsDefinition, LHS.Scope, 706 static bool isDeclarationOfODRMember(bool IsDefinition, const Metadata *Scope, 711 if (IsDefinition || !Scope || !LinkageName) 724 return IsDefinition == RHS->isDefinition() && Scope == RHS->getRawScope() && [all …]
|
D | DebugInfoMetadata.cpp | 502 bool IsLocalToUnit, bool IsDefinition, unsigned ScopeLine, in getImpl() argument 511 IsDefinition, ScopeLine, ContainingType, Virtuality, in getImpl() 527 ThisAdjustment, Flags, IsLocalToUnit, IsDefinition, in getImpl() 610 Metadata *Type, bool IsLocalToUnit, bool IsDefinition, in getImpl() argument 618 IsLocalToUnit, IsDefinition, in getImpl() 623 (Line, IsLocalToUnit, IsDefinition, AlignInBits), in getImpl()
|
D | DebugInfo.cpp | 802 LLVMBool IsLocalToUnit, LLVMBool IsDefinition, in LLVMDIBuilderCreateFunction() argument 807 IsLocalToUnit, IsDefinition, ScopeLine, map_from_llvmDIFlags(Flags), in LLVMDIBuilderCreateFunction()
|
/external/llvm/unittests/IR/ |
D | MetadataTest.cpp | 1420 bool IsDefinition = true; in TEST_F() local 1435 Type, IsLocalToUnit, IsDefinition, ScopeLine, in TEST_F() 1448 EXPECT_EQ(IsDefinition, N->isDefinition()); in TEST_F() 1461 Type, IsLocalToUnit, IsDefinition, ScopeLine, in TEST_F() 1468 Type, IsLocalToUnit, IsDefinition, ScopeLine, ContainingType, in TEST_F() 1473 IsLocalToUnit, IsDefinition, ScopeLine, ContainingType, in TEST_F() 1477 Type, IsLocalToUnit, IsDefinition, ScopeLine, in TEST_F() 1483 IsLocalToUnit, IsDefinition, ScopeLine, ContainingType, in TEST_F() 1488 IsLocalToUnit, IsDefinition, ScopeLine, ContainingType, in TEST_F() 1493 getSubroutineType(), IsLocalToUnit, IsDefinition, in TEST_F() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/IPO/ |
D | LowerTypeTests.cpp | 257 bool IsDefinition; member in __anondb9e6fc60111::GlobalTypeMember 267 bool IsDefinition, bool IsExported, in create() argument 273 GTM->IsDefinition = IsDefinition; in create() 285 return IsDefinition; in isDefinition() 425 void replaceWeakDeclarationWithJumpTablePtr(Function *F, Constant *JT, bool IsDefinition); 437 void replaceCfiUses(Function *Old, Value *New, bool IsDefinition); 1225 Function *F, Constant *JT, bool IsDefinition) { in replaceWeakDeclarationWithJumpTablePtr() argument 1238 replaceCfiUses(F, PlaceholderFn, IsDefinition); in replaceWeakDeclarationWithJumpTablePtr() 1439 bool IsDefinition = Functions[I]->isDefinition(); in buildBitSetsFromFunctionsNative() local 1448 if (IsDefinition) { in buildBitSetsFromFunctionsNative() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/IR/ |
D | MetadataTest.cpp | 1587 bool IsDefinition = true; in TEST_F() local 1603 IsDefinition, ScopeLine, ContainingType, Virtuality, VirtualIndex, in TEST_F() 1615 EXPECT_EQ(IsDefinition, N->isDefinition()); in TEST_F() 1630 IsLocalToUnit, IsDefinition, ScopeLine, ContainingType, in TEST_F() 1636 Type, IsLocalToUnit, IsDefinition, ScopeLine, ContainingType, in TEST_F() 1641 IsLocalToUnit, IsDefinition, ScopeLine, ContainingType, in TEST_F() 1646 IsLocalToUnit, IsDefinition, ScopeLine, ContainingType, in TEST_F() 1651 IsLocalToUnit, IsDefinition, ScopeLine, ContainingType, in TEST_F() 1656 IsLocalToUnit, IsDefinition, ScopeLine, ContainingType, in TEST_F() 1661 IsDefinition, ScopeLine, ContainingType, in TEST_F() [all …]
|
/external/llvm/include/llvm/IR/ |
D | DebugInfoMetadata.h | 1299 unsigned IsDefinition : 1; 1305 bool IsDefinition, bool IsOptimized, ArrayRef<Metadata *> Ops) 1310 IsLocalToUnit(IsLocalToUnit), IsDefinition(IsDefinition), 1321 DISubroutineType *Type, bool IsLocalToUnit, bool IsDefinition, 1330 IsLocalToUnit, IsDefinition, ScopeLine, ContainingType, 1338 bool IsLocalToUnit, bool IsDefinition, unsigned ScopeLine, 1357 bool IsLocalToUnit, bool IsDefinition, unsigned ScopeLine, 1365 IsDefinition, ScopeLine, ContainingType, Virtuality, 1371 unsigned Line, Metadata *Type, bool IsLocalToUnit, bool IsDefinition, 1376 (Scope, Name, LinkageName, File, Line, Type, IsLocalToUnit, IsDefinition, [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/ |
D | DebugInfoMetadata.h | 1600 unsigned IsDefinition : 1; 1610 bool IsDefinition, bool IsOptimized, ArrayRef<Metadata *> Ops) 1615 IsLocalToUnit(IsLocalToUnit), IsDefinition(IsDefinition), 1625 DISubroutineType *Type, bool IsLocalToUnit, bool IsDefinition, 1634 IsLocalToUnit, IsDefinition, ScopeLine, ContainingType, 1642 bool IsLocalToUnit, bool IsDefinition, unsigned ScopeLine, 1662 bool IsLocalToUnit, bool IsDefinition, unsigned ScopeLine, 1671 IsDefinition, ScopeLine, ContainingType, Virtuality, 1677 unsigned Line, Metadata *Type, bool IsLocalToUnit, bool IsDefinition, 1683 (Scope, Name, LinkageName, File, Line, Type, IsLocalToUnit, IsDefinition, [all …]
|
/external/clang/include/clang/Lex/ |
D | CodeCompletionHandler.h | 47 virtual void CodeCompleteMacroName(bool IsDefinition) { } in CodeCompleteMacroName() argument
|
/external/clang/unittests/ASTMatchers/Dynamic/ |
D | RegistryTest.cpp | 231 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/ |
D | DeclBase.cpp | 543 bool Decl::canBeWeakImported(bool &IsDefinition) const { in canBeWeakImported() 544 IsDefinition = false; in canBeWeakImported() 549 IsDefinition = true; in canBeWeakImported() 557 IsDefinition = true; in canBeWeakImported() 574 bool IsDefinition; in isWeakImported() local 575 if (!canBeWeakImported(IsDefinition)) in isWeakImported()
|
/external/llvm/bindings/go/llvm/ |
D | DIBuilderBindings.cpp | 76 LLVMMetadataRef CompositeType, int IsLocalToUnit, int IsDefinition, in LLVMDIBuilderCreateFunction() argument 82 IsLocalToUnit, IsDefinition, ScopeLine, Flags, in LLVMDIBuilderCreateFunction()
|
D | DIBuilderBindings.h | 57 LLVMMetadataRef CompositeType, int IsLocalToUnit, int IsDefinition,
|
D | dibuilder.go | 188 IsDefinition bool member 209 boolToCInt(f.IsDefinition),
|
/external/swiftshader/third_party/llvm-7.0/llvm/bindings/go/llvm/ |
D | ir_test.go | 127 IsDefinition: true,
|
D | dibuilder.go | 195 IsDefinition bool member 216 C.LLVMBool(boolToCInt(f.IsDefinition)),
|
/external/googletest/googlemock/scripts/generator/cpp/ |
D | ast.py | 120 def IsDefinition(self): member in Node 278 def IsDefinition(self): member in Typedef 302 def IsDefinition(self): member in _NestedType 331 def IsDefinition(self): member in Class 374 def IsDefinition(self): member in Function 451 def IsDefinition(self): member in Type
|
/external/google-breakpad/src/testing/scripts/generator/cpp/ |
D | ast.py | 119 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/swiftshader/third_party/LLVM/include/llvm/CodeGen/ |
D | AsmPrinter.h | 461 bool IsDefinition = true) const;
|
/external/llvm/include/llvm/CodeGen/ |
D | AsmPrinter.h | 540 bool IsDefinition = true) const;
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/ |
D | AsmPrinter.h | 641 bool IsDefinition = true) const;
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm-c/ |
D | DebugInfo.h | 281 LLVMBool IsLocalToUnit, LLVMBool IsDefinition,
|
/external/clang/lib/Parse/ |
D | Parser.cpp | 1885 void Parser::CodeCompleteMacroName(bool IsDefinition) { in CodeCompleteMacroName() argument 1886 Actions.CodeCompletePreprocessorMacroName(IsDefinition); in CodeCompleteMacroName()
|